/curl/lib/ |
H A D | curl_ctype.h | 33 #define ISLOWPRINT(x) (((x) >= 9) && ((x) <= 0x0d)) argument 35 #define ISPRINT(x) (ISLOWPRINT(x) || (((x) >= ' ') && ((x) <= 0x7e))) argument 36 #define ISGRAPH(x) (ISLOWPRINT(x) || (((x) > ' ') && ((x) <= 0x7e))) argument 37 #define ISCNTRL(x) (ISLOWCNTRL(x) || IS7F(x)) argument 38 #define ISALPHA(x) (ISLOWER(x) || ISUPPER(x)) argument 39 #define ISXDIGIT(x) (ISDIGIT(x) || ISLOWHEXALHA(x) || ISUPHEXALHA(x)) argument 40 #define ISALNUM(x) (ISDIGIT(x) || ISLOWER(x) || ISUPPER(x)) argument 41 #define ISUPPER(x) (((x) >= 'A') && ((x) <= 'Z')) argument 42 #define ISLOWER(x) (((x) >= 'a') && ((x) <= 'z')) argument 45 #define ISSPACE(x) (ISBLANK(x) || (((x) >= 0xa) && ((x) <= 0x0d))) argument [all …]
|
H A D | curl_setup_once.h | 195 # define sclose(x) closesocket((x)) argument 197 # define sclose(x) CloseSocket((x)) argument 199 # define sclose(x) close_s((x)) argument 201 # define sclose(x) lwip_close((x)) argument 203 # define sclose(x) close((x)) argument 254 #define BIT(x) bool x argument 257 #define BIT(x) bit x:1 argument 282 #define DEBUGF(x) x argument 294 #define DEBUGASSERT(x) assert(x) argument 307 #define SET_SOCKERRNO(x) (WSASetLastError((int)(x))) argument [all …]
|
H A D | arpa_telnet.h | 59 #define CURL_TELOPT(x) telnetoptions[x] argument 61 #define CURL_TELOPT(x) "" argument 66 #define CURL_TELOPT_OK(x) ((x) <= CURL_TELOPT_MAXIMUM) argument 106 #define CURL_TELCMD_OK(x) ( ((unsigned int)(x) >= CURL_TELCMD_MINIMUM) && \ argument 107 ((unsigned int)(x) <= CURL_TELCMD_MAXIMUM) ) 110 #define CURL_TELCMD(x) telnetcmds[(x)-CURL_TELCMD_MINIMUM] argument 112 #define CURL_TELCMD(x) "" argument
|
H A D | sigpipe.h | 37 #define SIGPIPE_VARIABLE(x) struct sigpipe_ignore x argument 38 #define SIGPIPE_MEMBER(x) struct sigpipe_ignore x argument 91 #define sigpipe_ignore(x,y) Curl_nop_stmt argument 92 #define sigpipe_apply(x,y) Curl_nop_stmt argument 93 #define sigpipe_init(x) Curl_nop_stmt argument 94 #define sigpipe_restore(x) Curl_nop_stmt argument 95 #define SIGPIPE_VARIABLE(x) argument 96 #define SIGPIPE_MEMBER(x) bool x argument
|
H A D | splay.c | 161 struct Curl_tree *x; in Curl_splaygetbest() local 178 x = t->samen; in Curl_splaygetbest() 179 if(x != t) { in Curl_splaygetbest() 184 x->key = t->key; in Curl_splaygetbest() 195 x = t->larger; in Curl_splaygetbest() 198 return x; in Curl_splaygetbest() 259 x = t->samen; in Curl_splayremove() 260 if(x != t) { in Curl_splayremove() 264 x->key = t->key; in Curl_splayremove() 273 x = t->larger; in Curl_splayremove() [all …]
|
H A D | curl_ntlm_core.h | 32 #define SHORTPAIR(x) ((int)((x) & 0xff)), ((int)(((x) >> 8) & 0xff)) argument 33 #define LONGQUARTET(x) ((int)((x) & 0xff)), ((int)(((x) >> 8) & 0xff)), \ argument 34 ((int)(((x) >> 16) & 0xff)), ((int)(((x) >> 24) & 0xff))
|
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 | select.h | 79 #define SOCKET_READABLE(x,z) \ argument 80 Curl_socket_check(x, CURL_SOCKET_BAD, CURL_SOCKET_BAD, z) 81 #define SOCKET_WRITABLE(x,z) \ argument 82 Curl_socket_check(CURL_SOCKET_BAD, CURL_SOCKET_BAD, x, z) 93 #define FDSET_SOCK(x) 1 argument 94 #define VERIFY_SOCK(x) do { \ argument 95 if(!VALID_SOCK(x)) { \ 106 #define VERIFY_SOCK(x) do { \ argument 107 if(!VALID_SOCK(x) || !FDSET_SOCK(x)) { \
|
H A D | asyn.h | 165 #define Curl_resolver_cancel(x) Curl_nop_stmt argument 166 #define Curl_resolver_kill(x) Curl_nop_stmt argument 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 173 #define Curl_resolver_cleanup(x) Curl_nop_stmt argument
|
H A D | base64.c | 134 unsigned int x = 0; in Curl_base64_decode() local 141 x = (x << 6) | val; in Curl_base64_decode() 143 pos[2] = x & 0xff; in Curl_base64_decode() 144 pos[1] = (x >> 8) & 0xff; in Curl_base64_decode() 145 pos[0] = (x >> 16) & 0xff; in Curl_base64_decode() 151 unsigned int x = 0; in Curl_base64_decode() local 156 x <<= 6; in Curl_base64_decode() 166 x = (x << 6) | val; in Curl_base64_decode() 170 pos[1] = (x >> 8) & 0xff; in Curl_base64_decode() 171 pos[0] = (x >> 16) & 0xff; in Curl_base64_decode()
|
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 342 #define Sha256_S(x, n) RORc((x), (n)) argument 343 #define Sha256_R(x, n) (((x)&0xFFFFFFFFUL)>>(n)) argument 344 #define Sigma0(x) (Sha256_S(x, 2) ^ Sha256_S(x, 13) ^ Sha256_S(x, 22)) argument 345 #define Sigma1(x) (Sha256_S(x, 6) ^ Sha256_S(x, 11) ^ Sha256_S(x, 25)) argument 346 #define Gamma0(x) (Sha256_S(x, 7) ^ Sha256_S(x, 18) ^ Sha256_R(x, 3)) argument [all …]
|
H A D | multiif.h | 58 #define GETSOCK_WRITESOCK(x) (1 << (GETSOCK_WRITEBITSTART + (x))) argument 61 #define GETSOCK_READSOCK(x) (1 << (x)) argument 64 #define GETSOCK_MASK_RW(x) (GETSOCK_READSOCK(x)|GETSOCK_WRITESOCK(x)) argument
|
/curl/src/ |
H A D | tool_setopt.h | 104 #define my_setopt(x,y,z) \ argument 107 #define my_setopt_str(x,y,z) \ argument 110 #define my_setopt_enum(x,y,z) \ argument 122 #define my_setopt_slist(x,y,z) \ argument 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 133 #define my_setopt(x,y,z) \ argument 136 #define my_setopt_str(x,y,z) \ argument 139 #define my_setopt_enum(x,y,z) \ argument 154 #define res_setopt(x,y,z) curl_easy_setopt(x,y,z) argument [all …]
|
/curl/tests/data/ |
H A D | test553 | 48 Header0: %repeat[5000 x A]% 49 Header1: %repeat[5000 x A]% 50 Header2: %repeat[5000 x A]% 51 Header3: %repeat[5000 x A]% 52 Header4: %repeat[5000 x A]% 53 Header5: %repeat[5000 x A]% 54 Header6: %repeat[5000 x A]% 55 Header7: %repeat[5000 x A]% 57 Content-Type: application/x-www-form-urlencoded 59 %repeat[40960 x A]%
|
H A D | test373 | 20 %repeat[255 x %00]% 23 %repeat[255 x %00]% 26 %repeat[255 x %00]% 29 %repeat[255 x %00]% 43 %repeat[255 x %00]% 44 %repeat[255 x %00]% 45 %repeat[255 x %00]% 46 %repeat[255 x %00]%
|
H A D | test521 | 14 drwxr-xr-x 8 98 98 512 Oct 22 13:06 . 15 drwxr-xr-x 8 98 98 512 Oct 22 13:06 .. 16 drwxr-xr-x 2 98 98 512 May 2 1996 .NeXT 19 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 21 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 23 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
|
H A D | test1047 | 16 drwxr-xr-x 8 98 98 512 Oct 22 13:06 . 17 drwxr-xr-x 8 98 98 512 Oct 22 13:06 .. 18 drwxr-xr-x 2 98 98 512 May 2 1996 .NeXT 21 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 23 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 25 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
|
H A D | test350 | 14 drwxr-xr-x 8 98 98 512 Oct 22 13:06 . 15 drwxr-xr-x 8 98 98 512 Oct 22 13:06 .. 16 drwxr-xr-x 2 98 98 512 May 2 1996 .NeXT 19 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 21 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 23 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
|
H A D | test352 | 14 drwxr-xr-x 8 98 98 512 Oct 22 13:06 . 15 drwxr-xr-x 8 98 98 512 Oct 22 13:06 .. 16 drwxr-xr-x 2 98 98 512 May 2 1996 .NeXT 19 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 21 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 23 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
|
H A D | test353 | 14 drwxr-xr-x 8 98 98 512 Oct 22 13:06 . 15 drwxr-xr-x 8 98 98 512 Oct 22 13:06 .. 16 drwxr-xr-x 2 98 98 512 May 2 1996 .NeXT 19 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 21 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 23 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
|
H A D | test100 | 14 drwxr-xr-x 8 98 98 512 Oct 22 13:06 . 15 drwxr-xr-x 8 98 98 512 Oct 22 13:06 .. 16 drwxr-xr-x 2 98 98 512 May 2 1996 curl-releases 19 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 21 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 23 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
|
H A D | test252 | 15 drwxr-xr-x 8 98 98 512 Oct 22 13:06 . 16 drwxr-xr-x 8 98 98 512 Oct 22 13:06 .. 17 drwxr-xr-x 2 98 98 512 May 2 1996 .NeXT 20 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 22 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 24 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
|
H A D | test351 | 14 drwxr-xr-x 8 98 98 512 Oct 22 13:06 . 15 drwxr-xr-x 8 98 98 512 Oct 22 13:06 .. 16 drwxr-xr-x 2 98 98 512 May 2 1996 .NeXT 19 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 21 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 23 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
|
H A D | test1316 | 24 drwxr-xr-x 8 98 98 512 Oct 22 13:06 . 25 drwxr-xr-x 8 98 98 512 Oct 22 13:06 .. 26 drwxr-xr-x 2 98 98 512 May 2 1996 .NeXT 29 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev 31 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc 33 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr 56 ftp://ftp.%TESTNUMBER:%FTPPORT/ -p -x %HOSTIP:%PROXYPORT
|
/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))
|