HomeSort by relevance Sort by last modified time
    Searched full:easy (Results 1 - 25 of 4644) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/701-easy-div-rem/
info.txt 1 Simple tests for checking easy division/reminder for int and longs.
  /frameworks/base/sax/java/android/sax/
package.html 3 A framework that makes it easy to write efficient and robust SAX handlers.
  /external/curl/tests/libtest/
lib536.c 81 CURL *easy = NULL; local
90 easy_init(easy);
94 easy_setopt(easy, CURLOPT_WRITEFUNCTION, fwrite);
95 easy_setopt(easy, CURLOPT_FAILONERROR, 1L);
96 easy_setopt(easy, CURLOPT_URL, URL);
98 res_multi_add_handle(multi, easy);
110 curl_multi_remove_handle(multi, easy);
112 curl_easy_reset(easy);
114 easy_setopt(easy, CURLOPT_FAILONERROR, 1L);
115 easy_setopt(easy, CURLOPT_URL, libtest_arg2)
    [all...]
lib1502.c 42 CURL *easy = NULL; local
69 easy_init(easy);
71 easy_setopt(easy, CURLOPT_URL, URL);
72 easy_setopt(easy, CURLOPT_HEADER, 1L);
73 easy_setopt(easy, CURLOPT_RESOLVE, dns_cache_list);
77 multi_add_handle(multi, easy);
114 curl_easy_cleanup(easy);
120 curl_multi_remove_handle(multi, easy);
122 curl_easy_cleanup(easy);
128 curl_easy_cleanup(easy);
    [all...]
libntlmconnect.c 35 static CURL *easy[MAX_EASY_HANDLES]; variable
41 ssize_t idx = ((CURL **) data) - easy;
50 /* Get socket being used for this easy handle, otherwise CURL_SOCKET_BAD */
51 code = curl_easy_getinfo(easy[idx], CURLINFO_LASTSOCKET, &longdata);
65 /* Track relationship between this easy handle and the socket. */
67 /* An easy handle without previous socket, record the socket. */
71 /* An easy handle with a socket different to previously
106 easy[i] = NULL;
135 easy_init(easy[num_handles]);
139 easy_setopt(easy[num_handles], CURLOPT_HTTPAUTH, CURLAUTH_NTLM)
    [all...]
lib543.c 35 CURL *easy; local
42 easy = curl_easy_init();
43 if(!easy) {
50 s = curl_easy_escape(easy, (const char *)a, asize);
58 curl_easy_cleanup(easy);
lib597.c 51 CURL *easy = NULL; local
63 easy_init(easy);
69 easy_setopt(easy, CURLOPT_VERBOSE, 1L);
72 easy_setopt(easy, CURLOPT_URL, URL);
76 easy_setopt(easy, CURLOPT_CONNECT_ONLY, 1L);
80 easy_setopt(easy, CURLOPT_CONNECT_ONLY, 0L);
81 easy_setopt(easy, CURLOPT_NOBODY, 1L);
82 easy_setopt(easy, CURLOPT_FORBID_REUSE, 1L);
85 multi_add_handle(multi, easy);
134 multi_remove_handle(multi, easy);
    [all...]
lib591.c 38 CURL *easy = NULL; local
62 easy_init(easy);
65 easy_setopt(easy, CURLOPT_VERBOSE, 1L);
68 easy_setopt(easy, CURLOPT_URL, URL);
71 easy_setopt(easy, CURLOPT_UPLOAD, 1L);
74 easy_setopt(easy, CURLOPT_READDATA, upload);
77 easy_setopt(easy, CURLOPT_FTPPORT, "-");
80 easy_setopt(easy, CURLOPT_ACCEPTTIMEOUT_MS,
85 multi_add_handle(multi, easy);
138 curl_easy_cleanup(easy);
    [all...]
lib654.c 72 CURL *easy = NULL; local
83 * easy handle.
91 easy = curl_easy_init();
94 test_setopt(easy, CURLOPT_URL, URL);
97 test_setopt(easy, CURLOPT_VERBOSE, 1L);
100 test_setopt(easy, CURLOPT_HEADER, 1L);
108 mime = curl_mime_init(easy);
122 /* Bind mime data to its easy handle. */
123 test_setopt(easy, CURLOPT_MIMEPOST, mime);
126 easy2 = curl_easy_duphandle(easy);
    [all...]
  /external/curl/tests/unit/
unit1606.c 27 static CURL *easy; variable
34 easy = curl_easy_init();
35 if(!easy)
42 curl_easy_cleanup(easy);
56 curl_easy_setopt(easy, CURLOPT_LOW_SPEED_LIMIT, speed_limit);
57 curl_easy_setopt(easy, CURLOPT_LOW_SPEED_TIME, time_limit);
58 Curl_speedinit(easy);
62 easy->progress.current_speed = speed;
63 result = Curl_speedcheck(easy, now);
unit1605.c 26 static CURL *easy; variable
33 easy = curl_easy_init();
34 if(!easy)
41 curl_easy_cleanup(easy);
49 esc = curl_easy_escape(easy, "", -1);
52 esc = curl_easy_unescape(easy, "%41%41%41%41", -1, &len);
unit1600.c 27 static CURL *easy; variable
34 easy = curl_easy_init();
35 if(!easy)
42 curl_easy_cleanup(easy);
52 Curl_ntlm_core_mk_nt_hash(easy, "1", output);
58 Curl_ntlm_core_mk_nt_hash(easy, "hello-you-fool", output);
65 Curl_ntlm_core_mk_nt_hash(easy, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", output);
  /art/test/002-sleep/
info.txt 2 mostly meant as an easy thing to modify in order to test other things
  /external/libexif/
libexif-uninstalled.pc.in 2 Description: Library for easy access to EXIF data
libexif.pc.in 7 Description: Library for easy access to EXIF data
  /external/curl/docs/libcurl/
curl_multi_remove_handle.3 25 curl_multi_remove_handle - remove an easy handle from a multi session
33 the specified easy handle be removed from this multi handle's control.
35 When the easy handle has been removed from a multi stack, it is again
36 perfectly legal to invoke \fIcurl_easy_perform(3)\fP on this easy handle.
38 Removing an easy handle while being used is perfectly legal and will
39 effectively halt the transfer in progress involving that easy handle. All
40 other easy handles and transfers will remain unaffected.
curl_multi_add_handle.3 25 curl_multi_add_handle - add an easy handle to a multi session
32 Adds a standard easy handle to the multi stack. This function call will make
35 While an easy handle is added to a multi stack, you cannot and you must not
36 use \fIcurl_easy_perform(3)\fP on that handle. After having removed the easy
38 easy interface again.
40 If the easy handle is not set to use a shared (\fICURLOPT_SHARE(3)\fP) or
42 use the DNS cache that is shared between all easy handles within the multi
45 When an easy interface is added to a multi handle, it will use a shared
46 connection cache owned by the multi handle. Removing and adding new easy
56 The easy handle will remain added to the multi handle until you remove i
    [all...]
libcurl-easy.3 22 .TH libcurl 3 "February 03, 2016" "libcurl 7.58.0" "libcurl easy interface"
25 libcurl-easy \- easy interface overview
27 When using libcurl's "easy" interface you init your session and get a handle
28 (often referred to as an "easy handle"), which you use as input to the easy
44 single easy handle, you can call \fIcurl_easy_reset(3)\fP and you can also
45 make a clone of an easy handle (with all its set options) using
56 the same easy handle.
curl_mime_init.3 48 CURL *easy = curl_easy_init();
53 mime = curl_mime_init(easy);
59 curl_easy_setopt(easy, CURLOPT_MIMEPOST, mime);
60 curl_easy_setopt(easy, CURLOPT_URL, "http://example.com");
61 curl_easy_perform(easy);
64 curl_easy_cleanup(easy);
  /external/llvm/test/CodeGen/SystemZ/
cond-load-01.ll 8 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 %othe
    [all...]
cond-load-02.ll 8 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 %othe
    [all...]
  /external/curl/docs/examples/
ghiper.c 39 of URL's and creates some new easy handles to fetch each URL via the
77 /* Information associated with a specific easy handle */
79 CURL *easy; member in struct:_ConnInfo
88 CURL *easy; member in struct:_SockInfo
116 /* Check for completed transfers, and remove their easy handles */
123 CURL *easy; local
129 easy = msg->easy_handle;
131 curl_easy_getinfo(easy, CURLINFO_PRIVATE, &conn);
132 curl_easy_getinfo(easy, CURLINFO_EFFECTIVE_URL, &eff_url);
134 curl_multi_remove_handle(g->multi, easy);
    [all...]
hiperfifo.c 39 of URL's and creates some new easy handles to fetch each URL via the
89 /* Information associated with a specific easy handle */
92 CURL *easy; member in struct:_ConnInfo
103 CURL *easy; member in struct:_SockInfo
160 /* Check for completed transfers, and remove their easy handles */
167 CURL *easy; local
173 easy = msg->easy_handle;
175 curl_easy_getinfo(easy, CURLINFO_PRIVATE, &conn);
176 curl_easy_getinfo(easy, CURLINFO_EFFECTIVE_URL, &eff_url);
178 curl_multi_remove_handle(g->multi, easy);
    [all...]
  /external/python/cpython3/Tools/importbench/
README 4 an easy way to measure impact of possible code changes. For a real-world
  /external/curl/lib/
easyif.h 26 * Prototypes for library-wide functions provided by easy.c
29 CURL_EXTERN CURLcode curl_easy_perform_ev(struct Curl_easy *easy);

Completed in 1255 milliseconds

1 2 3 4 5 6 7 8 91011>>