Home
last modified time | relevance | path

Searched full:easy (Results 1 – 25 of 9596) sorted by relevance

12345678910>>...384

/aosp_15_r20/external/skia/resources/skottie/
H A Dskottie-levels-effect.json122 "mn": "ADBE Easy Levels2",
129 "mn": "ADBE Easy Levels2-0001",
137 "mn": "ADBE Easy Levels2-0003",
144 "mn": "ADBE Easy Levels2-0004",
151 "mn": "ADBE Easy Levels2-0005",
158 "mn": "ADBE Easy Levels2-0006",
165 "mn": "ADBE Easy Levels2-0007",
172 "mn": "ADBE Easy Levels2-0008",
179 "mn": "ADBE Easy Levels2-0009",
213 "mn": "ADBE Easy Levels2",
[all …]
/aosp_15_r20/packages/modules/Wifi/framework/java/android/net/wifi/
DEasyConnectStatusCallback.java34 * Easy Connect (DPP) Status Callback. Use this callback to get status updates (success, failure,
35 * progress) from the Easy Connect operations.
39 * Easy Connect R1 Success event: Configuration sent (Configurator mode). This is the last
40 * and final Easy Connect event when either the local device or remote device implement R1.
49 * Easy Connect R2 Success event: Configuration applied by Enrollee (Configurator mode).
50 * This is the last and final Easy Connect event when both the local device and remote device
68 * Easy Connect Progress event: Initial authentication with peer succeeded.
75 * Easy Connect Progress event: Peer requires more time to process bootstrapping.
82 * Easy Connect R2 Progress event: Configuration sent to Enrollee, waiting for response
89 * Easy Connect R2 Progress event: Configuration accepted by Enrollee, waiting for response
[all …]
/aosp_15_r20/external/curl/docs/examples/
H A Dghiper.c41 of URL's and creates some new easy handles to fetch each URL via the
79 /* Information associated with a specific easy handle */
81 CURL *easy; member
90 CURL *easy; member
118 /* Check for completed transfers, and remove their easy handles */
125 CURL *easy; in check_multi_info() local
131 easy = msg->easy_handle; in check_multi_info()
133 curl_easy_getinfo(easy, CURLINFO_PRIVATE, &conn); in check_multi_info()
134 curl_easy_getinfo(easy, CURLINFO_EFFECTIVE_URL, &eff_url); in check_multi_info()
136 curl_multi_remove_handle(g->multi, easy); in check_multi_info()
[all …]
H A Devhiperfifo.c44 of URL's and creates some new easy handles to fetch each URL via the
95 /* Information associated with a specific easy handle */
98 CURL *easy; member
109 CURL *easy; member
173 /* Check for completed transfers, and remove their easy handles */
180 CURL *easy; in check_multi_info() local
186 easy = msg->easy_handle; in check_multi_info()
188 curl_easy_getinfo(easy, CURLINFO_PRIVATE, &conn); in check_multi_info()
189 curl_easy_getinfo(easy, CURLINFO_EFFECTIVE_URL, &eff_url); in check_multi_info()
191 curl_multi_remove_handle(g->multi, easy); in check_multi_info()
[all …]
H A Dhiperfifo.c41 of URL's and creates some new easy handles to fetch each URL via the
93 /* Information associated with a specific easy handle */
96 CURL *easy; member
107 CURL *easy; member
165 /* Check for completed transfers, and remove their easy handles */
172 CURL *easy; in check_multi_info() local
178 easy = msg->easy_handle; in check_multi_info()
180 curl_easy_getinfo(easy, CURLINFO_PRIVATE, &conn); in check_multi_info()
181 curl_easy_getinfo(easy, CURLINFO_EFFECTIVE_URL, &eff_url); in check_multi_info()
183 curl_multi_remove_handle(g->multi, easy); in check_multi_info()
[all …]
H A Dephiperfifo.c41 of URL's and creates some new easy handles to fetch each URL via the
93 /* Information associated with a specific easy handle */
96 CURL *easy; member
107 CURL *easy; member
174 /* Check for completed transfers, and remove their easy handles */
181 CURL *easy; in check_multi_info() local
187 easy = msg->easy_handle; in check_multi_info()
189 curl_easy_getinfo(easy, CURLINFO_PRIVATE, &conn); in check_multi_info()
190 curl_easy_getinfo(easy, CURLINFO_EFFECTIVE_URL, &eff_url); in check_multi_info()
192 curl_multi_remove_handle(g->multi, easy); in check_multi_info()
[all …]
/aosp_15_r20/external/curl/docs/libcurl/
H A Dlibcurl-multi.md9 - libcurl-easy (3)
25 tutorial to programming with libcurl and the libcurl-easy(3) man page
26 for an overview of the libcurl easy interface.
32 The multi interface offers several abilities that the easy interface does not.
47 # ONE MULTI HANDLE MANY EASY HANDLES
54 transfers in parallel. Each single transfer is built up around an easy
55 handle. You create all the easy handles you need, and setup the appropriate
56 options for each easy handle using curl_easy_setopt(3).
63 When an easy handle is setup and ready for transfer, then instead of using
64 curl_easy_perform(3) like when using the easy interface for transfers,
[all …]
H A Dcurl_multi_add_handle.md20 curl_multi_add_handle - add an easy handle to a multi session
32 Adds the *easy handle* to the *multi_handle*.
34 While an easy handle is added to a multi stack, you cannot and you must not
35 use curl_easy_perform(3) on that handle. After having removed the easy
37 easy interface again.
39 If the easy handle is not set to use a shared (CURLOPT_SHARE(3)) cache,
40 it is made to use a DNS cache that is shared between all easy handles within
43 When an easy interface is added to a multi handle, it is set to use a shared
44 connection cache owned by the multi handle. Removing and adding new easy
54 The easy handle remains added to the multi handle until you remove it again
[all …]
H A Dlibcurl-tutorial.md8 - libcurl-easy (3)
152 libcurl first introduced the so called easy interface. All operations in the
153 easy interface are prefixed with 'curl_easy'. The easy interface lets you do
159 understand the easy interface first, so please continue reading for better
162 # Handle the Easy libcurl
164 To use the easy interface, you must first create yourself an easy handle. You
165 need one handle for each easy session you want to perform. Basically, you
169 Get an easy handle with
173 It returns an easy handle. Using that you proceed to the next step: setting
184 single easy handle, you can call curl_easy_reset(3) and you can also
[all …]
/aosp_15_r20/external/llvm/test/CodeGen/SystemZ/
H A Dcond-load-02.ll8 define i64 @f1(i64 %easy, i64 *%ptr, i64 %limit) {
15 %res = select i1 %cond, i64 %easy, i64 %other
20 define i64 @f2(i64 %easy, i64 *%ptr, i64 %limit) {
27 %res = select i1 %cond, i64 %other, i64 %easy
32 define i64 @f3(i64 %easy, i64 *%base, i64 %limit) {
40 %res = select i1 %cond, i64 %easy, i64 %other
45 define i64 @f4(i64 %easy, i64 *%base, i64 %limit) {
54 %res = select i1 %cond, i64 %easy, i64 %other
59 define i64 @f5(i64 %easy, i64 *%base, i64 %limit) {
67 %res = select i1 %cond, i64 %easy, i64 %other
[all …]
H A Dcond-load-01.ll8 define i32 @f1(i32 %easy, i32 *%ptr, i32 %limit) {
15 %res = select i1 %cond, i32 %easy, i32 %other
20 define i32 @f2(i32 %easy, i32 *%ptr, i32 %limit) {
27 %res = select i1 %cond, i32 %other, i32 %easy
32 define i32 @f3(i32 %easy, i32 *%base, i32 %limit) {
40 %res = select i1 %cond, i32 %easy, i32 %other
45 define i32 @f4(i32 %easy, i32 *%base, i32 %limit) {
54 %res = select i1 %cond, i32 %easy, i32 %other
59 define i32 @f5(i32 %easy, i32 *%base, i32 %limit) {
67 %res = select i1 %cond, i32 %easy, i32 %other
[all …]
/aosp_15_r20/external/curl/tests/libtest/
H A Dlib670.c36 CURL *easy; member
88 curl_easy_pause(pooh->easy, CURLPAUSE_CONT); in xferinfo()
127 pooh.easy = curl_easy_init(); in test()
130 test_setopt(pooh.easy, CURLOPT_URL, URL); in test()
133 test_setopt(pooh.easy, CURLOPT_VERBOSE, 1L); in test()
136 test_setopt(pooh.easy, CURLOPT_HEADER, 1L); in test()
140 mime = curl_mime_init(pooh.easy); in test()
153 /* Bind mime data to its easy handle. */ in test()
155 test_setopt(pooh.easy, CURLOPT_MIMEPOST, mime); in test()
171 test_setopt(pooh.easy, CURLOPT_READFUNCTION, read_callback); in test()
[all …]
H A Dlib1940.c49 static void showem(CURL *easy, unsigned int type) in showem() argument
54 if(CURLHE_OK == curl_easy_header(easy, testdata[i], 0, type, in showem()
66 if(CURLHE_OK != curl_easy_header(easy, testdata[i], index, type, in showem()
88 CURL *easy = NULL; in test() local
92 easy_init(easy); in test()
93 easy_setopt(easy, CURLOPT_URL, URL); in test()
94 easy_setopt(easy, CURLOPT_VERBOSE, 1L); in test()
95 easy_setopt(easy, CURLOPT_FOLLOWLOCATION, 1L); in test()
97 easy_setopt(easy, CURLOPT_WRITEFUNCTION, write_cb); in test()
101 easy_setopt(easy, CURLOPT_PROXY, libtest_arg2); in test()
[all …]
H A Dlib1502.c44 CURL *easy = NULL; in test() local
72 easy_init(easy); in test()
74 easy_setopt(easy, CURLOPT_URL, URL); in test()
75 easy_setopt(easy, CURLOPT_HEADER, 1L); in test()
76 easy_setopt(easy, CURLOPT_RESOLVE, dns_cache_list); in test()
78 dup = curl_easy_duphandle(easy); in test()
80 curl_easy_cleanup(easy); in test()
81 easy = dup; in test()
85 curl_easy_cleanup(easy); in test()
92 multi_add_handle(multi, easy); in test()
[all …]
H A Dlib2405.c76 static CURLcode set_easy(char *URL, CURL *easy, long option) in set_easy() argument
81 easy_setopt(easy, CURLOPT_URL, URL); in set_easy()
84 easy_setopt(easy, CURLOPT_VERBOSE, 1L); in set_easy()
89 easy_setopt(easy, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); in set_easy()
94 easy_setopt(easy, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0); in set_easy()
99 easy_setopt(easy, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0); in set_easy()
100 easy_setopt(easy, CURLOPT_PIPEWAIT, 1L); in set_easy()
105 easy_setopt(easy, CURLOPT_SSL_VERIFYPEER, 0L); in set_easy()
106 easy_setopt(easy, CURLOPT_SSL_VERIFYHOST, 0L); in set_easy()
109 easy_setopt(easy, CURLOPT_HEADER, 1L); in set_easy()
[all …]
H A Dlib1945.c33 static void showem(CURL *easy, unsigned int type) in showem() argument
38 while((header = curl_easy_nextheader(easy, type, 0, prev))) { in showem()
54 CURL *easy; in test() local
59 easy_init(easy); in test()
60 curl_easy_setopt(easy, CURLOPT_URL, URL); in test()
61 curl_easy_setopt(easy, CURLOPT_VERBOSE, 1L); in test()
62 curl_easy_setopt(easy, CURLOPT_FOLLOWLOCATION, 1L); in test()
64 curl_easy_setopt(easy, CURLOPT_WRITEFUNCTION, write_cb); in test()
68 curl_easy_setopt(easy, CURLOPT_PROXY, libtest_arg2); in test()
69 curl_easy_setopt(easy, CURLOPT_HTTPPROXYTUNNEL, 1L); in test()
[all …]
H A Dlib1542.c41 CURL *easy = NULL; in test() local
46 res_easy_init(easy); in test()
48 easy_setopt(easy, CURLOPT_URL, URL); in test()
52 easy_setopt(easy, CURLOPT_DEBUGDATA, &libtest_debug_config); in test()
53 easy_setopt(easy, CURLOPT_DEBUGFUNCTION, libtest_debug_cb); in test()
54 easy_setopt(easy, CURLOPT_VERBOSE, 1L); in test()
56 res = curl_easy_perform(easy); in test()
60 res = curl_easy_perform(easy); in test()
68 res = curl_easy_perform(easy); in test()
72 easy_setopt(easy, CURLOPT_MAXLIFETIME_CONN, 1L); in test()
[all …]
H A Dlib654.c67 CURL *easy = NULL; in test() local
77 * easy handle. in test()
85 easy = curl_easy_init(); in test()
88 test_setopt(easy, CURLOPT_URL, URL); in test()
91 test_setopt(easy, CURLOPT_VERBOSE, 1L); in test()
94 test_setopt(easy, CURLOPT_HEADER, 1L); in test()
102 mime = curl_mime_init(easy); in test()
116 /* Bind mime data to its easy handle. */ in test()
117 test_setopt(easy, CURLOPT_MIMEPOST, mime); in test()
120 easy2 = curl_easy_duphandle(easy); in test()
[all …]
/aosp_15_r20/external/curl/tests/http/clients/
H A Dhx-upload.c147 CURL *easy; member
167 static struct transfer *get_transfer_for_easy(CURL *easy) in get_transfer_for_easy() argument
171 if(easy == transfers[i].easy) in get_transfer_for_easy()
463 CURL *easy = curl_easy_init(); in main() local
465 if(!easy) { in main()
466 fprintf(stderr, "failed to init easy handle\n"); in main()
471 t->easy = easy; in main()
472 if(setup(t->easy, url, t, http_version, host, share, use_earlydata, in main()
479 rc = curl_easy_perform(easy); in main()
481 t->easy = NULL; in main()
[all …]
H A Dtls-session-reuse.c145 CURL *easy; in add_transfer() local
148 easy = curl_easy_init(); in add_transfer()
149 if(!easy) { in add_transfer()
153 curl_easy_setopt(easy, CURLOPT_VERBOSE, 1L); in add_transfer()
154 curl_easy_setopt(easy, CURLOPT_DEBUGFUNCTION, debug_cb); in add_transfer()
155 curl_easy_setopt(easy, CURLOPT_URL, url); in add_transfer()
156 curl_easy_setopt(easy, CURLOPT_SHARE, share); in add_transfer()
157 curl_easy_setopt(easy, CURLOPT_NOSIGNAL, 1L); in add_transfer()
158 curl_easy_setopt(easy, CURLOPT_AUTOREFERER, 1L); in add_transfer()
159 curl_easy_setopt(easy, CURLOPT_FAILONERROR, 1L); in add_transfer()
[all …]
H A Dh2-upgrade-extreme.c144 CURL *easy; in main() local
166 easy = curl_easy_init(); in main()
167 if(!easy) { in main()
171 curl_easy_setopt(easy, CURLOPT_VERBOSE, 1L); in main()
172 curl_easy_setopt(easy, CURLOPT_DEBUGFUNCTION, debug_cb); in main()
173 curl_easy_setopt(easy, CURLOPT_URL, url); in main()
174 curl_easy_setopt(easy, CURLOPT_NOSIGNAL, 1L); in main()
175 curl_easy_setopt(easy, CURLOPT_AUTOREFERER, 1L); in main()
176 curl_easy_setopt(easy, CURLOPT_FAILONERROR, 1L); in main()
177 curl_easy_setopt(easy, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0); in main()
[all …]
H A Dhx-download.c147 CURL *easy; member
164 static struct transfer *get_transfer_for_easy(CURL *easy) in get_transfer_for_easy() argument
168 if(easy == transfers[i].easy) in get_transfer_for_easy()
407 t->easy = curl_easy_init(); in main()
408 if(!t->easy || in main()
409 setup(t->easy, url, t, http_version, host, share, use_earlydata)) { in main()
413 curl_multi_add_handle(multi_handle, t->easy); in main()
460 if(!t->done && t->paused && t->easy) { in main()
461 curl_multi_remove_handle(multi_handle, t->easy); in main()
475 curl_easy_pause(t->easy, CURLPAUSE_CONT); in main()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/combine/src/parser/
Dmod.rs100 /// may want to try wrapping your input with an [`easy::Stream`] or call [`easy_parse`]
103 /// [`easy::Stream`]: super::easy::Stream
485 /// # use combine::stream::easy;
524 /// # use combine::stream::easy;
560 /// # use combine::stream::easy;
642 /// # use combine::stream::easy;
648 /// assert_eq!(result, Err(easy::Errors {
651 /// easy::Error::Unexpected('8'.into()),
652 /// easy::Error::Expected('9'.into()),
653 /// easy::Error::Message("Not a nine".into())
[all …]
/aosp_15_r20/external/pytorch/test/
H A Dtest_tensorexpr.py40 def easy(x, y): function
44 traced = torch.jit.trace(easy, (torch.rand(1024), torch.rand(1024)))
53 def easy(x, y, z): function
59 easy, (torch.rand(1024), torch.rand(1024), torch.rand(1024))
156 def easy(x, y, z): function
171 easy, (torch.rand(1024), torch.rand(1024), torch.rand(1024))
183 def easy(x, y, z): function
199 easy, (torch.rand(shape), torch.rand(shape), torch.rand(shape))
211 def easy(x, y, z): function
222 traced = torch.jit.trace(easy, (torch.rand(N, N), torch.rand(N), torch.rand(N, N)))
[all …]
/aosp_15_r20/external/curl/docs/libcurl/opts/
H A DCURLSHOPT_SHARE.md40 Cookie data is shared across the easy handles using this shared object. Note
41 that this does not activate an easy handle's cookie handling. You can do that
48 Cached DNS hosts are shared across the easy handles using this shared
49 object. Note that when you use the multi interface, all easy handles added to
54 SSL session IDs are shared across the easy handles using this shared
56 the same server. Note SSL session IDs are reused within the same easy handle
64 Put the connection cache in the share object and make all easy handles using
71 same multi or easy handle. libcurl does not support doing multiplexed streams
77 Note that when you use the multi interface, all easy handles added to the same
83 easy handle bound to the later. Since the Public Suffix List is periodically
[all …]

12345678910>>...384