/curl/src/ |
H A D | tool_setopt.h | 105 SETOPT_CHECK(tool_setopt(x, FALSE, global, config, #y, y, z), y) 108 SETOPT_CHECK(tool_setopt(x, TRUE, global, config, #y, y, z), y) 111 SETOPT_CHECK(tool_setopt_enum(x, global, #y, y, setopt_nv_ ## y, z), y) 114 SETOPT_CHECK(tool_setopt_SSLVERSION(x, global, #y, y, z), y) 117 SETOPT_CHECK(tool_setopt_bitmask(x, global, #y, y, setopt_nv_ ## y, z), y) 120 SETOPT_CHECK(tool_setopt_mimepost(x, global, #y, y, z), y) 123 SETOPT_CHECK(tool_setopt_slist(x, global, #y, y, z), y) 125 #define res_setopt(x,y,z) tool_setopt(x, FALSE, global, config, #y, y, z) argument 127 #define res_setopt_str(x,y,z) tool_setopt(x, TRUE, global, config, #y, y, z) argument 134 SETOPT_CHECK(curl_easy_setopt(x, y, z), y) [all …]
|
H A D | tool_setup.h | 53 # define main(x,y) curl_main(x,y) argument
|
/curl/lib/ |
H A D | connect.h | 99 #define streamclose(x,y) Curl_conncontrol(x, CONNCTRL_STREAM, y) argument 100 #define connclose(x,y) Curl_conncontrol(x, CONNCTRL_CONNECTION, y) argument 101 #define connkeep(x,y) Curl_conncontrol(x, CONNCTRL_KEEP, y) argument 103 #define streamclose(x,y) Curl_conncontrol(x, CONNCTRL_STREAM) argument 104 #define connclose(x,y) Curl_conncontrol(x, CONNCTRL_CONNECTION) argument 105 #define connkeep(x,y) Curl_conncontrol(x, CONNCTRL_KEEP) argument
|
H A D | asyn.h | 167 #define Curl_resolver_is_resolved(x,y) CURLE_COULDNT_RESOLVE_HOST argument 168 #define Curl_resolver_wait_resolv(x,y) CURLE_COULDNT_RESOLVE_HOST argument 169 #define Curl_resolver_duphandle(x,y,z) CURLE_OK argument 170 #define Curl_resolver_init(x,y) CURLE_OK argument
|
H A D | splay.c | 46 struct Curl_tree N, *l, *r, *y; in Curl_splay() local 59 y = t->smaller; /* rotate smaller */ in Curl_splay() 60 t->smaller = y->larger; in Curl_splay() 61 y->larger = t; in Curl_splay() 62 t = y; in Curl_splay() 74 y = t->larger; /* rotate larger */ in Curl_splay() 75 t->larger = y->smaller; in Curl_splay() 76 y->smaller = t; in Curl_splay() 77 t = y; in Curl_splay()
|
H A D | curl_setup_once.h | 134 #define sread(x,y,z) (ssize_t)read((RECV_TYPE_ARG1)(x), \ argument 135 (RECV_TYPE_ARG2)(y), \ 161 #define sread(x,y,z) (ssize_t)recv((RECV_TYPE_ARG1)(x), \ argument 162 (RECV_TYPE_ARG2)(y), \ 174 #define swrite(x,y,z) (ssize_t)write((SEND_TYPE_ARG1)(x), \ argument 175 (SEND_TYPE_ARG2)(y), \ 179 #define swrite(x,y,z) (ssize_t)send((SEND_TYPE_ARG1)(x), \ argument 180 (SEND_QUAL_ARG2 SEND_TYPE_ARG2)(y), \
|
H A D | inet_pton.h | 35 #define Curl_inet_pton(x,y,z) inet_pton(x,y,z) argument
|
H A D | curl_memrchr.h | 43 #define memrchr(x,y,z) Curl_memrchr((x),(y),(z)) argument
|
H A D | hsts.h | 65 #define Curl_hsts_loadcb(x,y) CURLE_OK argument 66 #define Curl_hsts_save(x,y,z) argument
|
H A D | rand.c | 152 #define _random(x,y,z) Curl_ssl_random(x,y,z) argument 154 #define _random(x,y,z) weak_random(x,y,z) argument
|
H A D | sigpipe.h | 91 #define sigpipe_ignore(x,y) Curl_nop_stmt argument 92 #define sigpipe_apply(x,y) Curl_nop_stmt argument
|
H A D | sha256.c | 337 #define RORc(x, y) \ argument 338 (((((unsigned long)(x) & 0xFFFFFFFFUL) >> (unsigned long)((y) & 31)) | \ 339 ((unsigned long)(x) << (unsigned long)(32 - ((y) & 31)))) & 0xFFFFFFFFUL) 340 #define Sha256_Ch(x,y,z) (z ^ (x & (y ^ z))) argument 341 #define Sha256_Maj(x,y,z) (((x | y) & z) | (x & y)) argument
|
H A D | url.h | 62 #define Curl_verboseconnect(x,y,z) Curl_nop_stmt argument 94 #define Curl_data_priority_add_child(x, y, z) CURLE_NOT_BUILT_IN argument
|
H A D | cookie.h | 129 #define Curl_cookie_init(x,y,z,w) NULL argument 131 #define Curl_flush_cookies(x,y) Curl_nop_stmt argument
|
H A D | curl_setup.h | 653 # define ioctl(x,y,z) ioctlsocket(x,y,(char *)(z)) argument 908 #define CURLMAX(x,y) ((x)>(y)?(x):(y)) argument 909 #define CURLMIN(x,y) ((x)<(y)?(x):(y)) argument
|
H A D | md5.c | 310 #define MD5_F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument 311 #define MD5_G(x, y, z) ((y) ^ ((z) & ((x) ^ (y)))) argument 312 #define MD5_H(x, y, z) (((x) ^ (y)) ^ (z)) argument 313 #define MD5_H2(x, y, z) ((x) ^ ((y) ^ (z))) argument 314 #define MD5_I(x, y, z) ((y) ^ ((x) | ~(z))) argument
|
H A D | rtsp.h | 38 #define Curl_rtsp_parseheader(x,y) CURLE_NOT_BUILT_IN argument
|
H A D | headers.h | 58 #define Curl_headers_push(x,y,z) CURLE_OK argument
|
/curl/include/curl/ |
H A D | curlver.h | 75 #define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|(z)) argument 76 #define CURL_AT_LEAST_VERSION(x,y,z) \ argument 77 (LIBCURL_VERSION_NUM >= CURL_VERSION_BITS(x, y, z))
|
/curl/tests/unit/ |
H A D | unit1303.c | 56 #define NOW(x,y) now.tv_sec = x; now.tv_usec = y argument 58 #define TIMEOUTS(x,y) testdata->set.timeout = x; \ argument 59 testdata->set.connecttimeout = y
|
/curl/tests/data/ |
H A D | test645 | 95 y 118 y 168 y 191 y
|
H A D | test2309 | 52 password $y$j9T$WUVjiVvDbRAWafDLs6cab1$01NX.oaZKf5lw8MR2Nk9Yaxv4CqbE0IaDF.GpGxPul1 60 Authorization: Basic %b64[daniel:$y$j9T$WUVjiVvDbRAWafDLs6cab1$01NX.oaZKf5lw8MR2Nk9Yaxv4CqbE0IaDF.G…
|
H A D | test1015 | 31 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --data-urlencode "my name is moo[]" --data-urlencode "y e s=s_… 49 my+name+is+moo%5B%5D&y e s=s_i_r&v_alue=content+to+_%3F%21%23%24%27%7C%3C%3E%0A&content+to+_%3F%21%…
|
/curl/lib/vtls/ |
H A D | vtls.h | 265 #define Curl_ssl_set_engine(x,y) CURLE_NOT_BUILT_IN argument 268 #define Curl_ssl_initsessions(x,y) CURLE_OK argument 271 #define Curl_ssl_random(x,y,z) ((void)x, CURLE_NOT_BUILT_IN) argument
|
/curl/tests/certs/ |
H A D | Server-localhost0h-sv.csr | 8 gkrT31RaRgDesKIuZVREQJxk0+g/6KzjDPs2CsV5N6mi7wYUQ6yeIN4w0up5fe/y
|