/curl/lib/ |
H A D | Makefile.inc | 38 vauth/vauth.c 60 vtls/x509asn1.c 85 vquic/vquic.c \ 86 vquic/vquic-tls.c 98 vssh/libssh.c \ 99 vssh/libssh2.c \ 100 vssh/curl_path.c \ 101 vssh/wolfssh.c 108 altsvc.c \ 115 c-hyper.c \ [all …]
|
H A D | curl_fnmatch.c | 96 if(c == ']') in parsekeyword() 133 if(ISUPPER(c)) in charclass() 135 if(ISLOWER(c)) in charclass() 137 if(ISDIGIT(c)) in charclass() 148 charset[c] = 1; in setcharorrange() 169 unsigned char c; in setcharset() local 173 c = **p; in setcharset() 174 if(!c) in setcharset() 198 else if(c == '^' || c == '!') { in setcharset() 213 if(c) in setcharset() [all …]
|
H A D | md5.c | 292 MD5_u32plus a, b, c, d; member 319 #define MD5_STEP(f, a, b, c, d, x, t, s) \ argument 320 (a) += f((b), (c), (d)) + (x) + (t); \ 356 MD5_u32plus a, b, c, d; in my_md5_body() local 362 c = ctx->c; in my_md5_body() 370 saved_c = c; in my_md5_body() 447 c += saved_c; in my_md5_body() 455 ctx->c = c; in my_md5_body() 466 ctx->c = 0x98badcfe; in my_md5_init() 552 result[8] = curlx_ultouc((ctx->c)&0xff); in my_md5_final() [all …]
|
H A D | md4.c | 267 MD4_u32plus a, b, c, d; member 290 #define MD4_STEP(f, a, b, c, d, x, s) \ argument 291 (a) += f((b), (c), (d)) + (x); \ 326 MD4_u32plus a, b, c, d; in my_md4_body() local 332 c = ctx->c; in my_md4_body() 340 saved_c = c; in my_md4_body() 399 c += saved_c; in my_md4_body() 407 ctx->c = c; in my_md4_body() 417 ctx->c = 0x98badcfe; in MD4_Init() 499 result[8] = curlx_ultouc((ctx->c)&0xff); in MD4_Final() [all …]
|
/curl/src/ |
H A D | Makefile.inc | 35 ../lib/dynbuf.c 61 slist_wc.c \ 62 terminal.c \ 64 tool_bname.c \ 81 tool_help.c \ 84 tool_ipfs.c \ 87 tool_main.c \ 88 tool_msgs.c \ 99 tool_util.c \ 100 tool_vms.c \ [all …]
|
H A D | tool_findfile.c | 73 char *c; in checkhome() local 75 c = aprintf("%s" DIR_CHAR "%c%s", home, pref[i], &fname[1]); in checkhome() 77 c = aprintf("%s" DIR_CHAR "%s", home, fname); in checkhome() 78 if(c) { in checkhome() 79 int fd = open(c, O_RDONLY); in checkhome() 81 char *path = strdup(c); in checkhome() 83 curl_free(c); in checkhome() 86 curl_free(c); in checkhome() 121 char *c = aprintf("%s%s", home, conf_list[i].append); in findfile() local 123 if(!c) in findfile() [all …]
|
/curl/tests/unit/ |
H A D | Makefile.inc | 28 ../libtest/first.c \ 47 unit1300_SOURCES = unit1300.c $(UNITFILES) 49 unit1302_SOURCES = unit1302.c $(UNITFILES) 51 unit1303_SOURCES = unit1303.c $(UNITFILES) 53 unit1304_SOURCES = unit1304.c $(UNITFILES) 55 unit1305_SOURCES = unit1305.c $(UNITFILES) 57 unit1307_SOURCES = unit1307.c $(UNITFILES) 59 unit1308_SOURCES = unit1308.c $(UNITFILES) 61 unit1309_SOURCES = unit1309.c $(UNITFILES) 63 unit1323_SOURCES = unit1323.c $(UNITFILES) [all …]
|
/curl/packages/OS400/ |
H A D | curl.inc.in | 49 d c -1 51 d c -1 174 d c 0 176 d c 1 178 d c 2 191 d c 0 193 d c 1 196 d c 0 198 d c 1 241 d c 0 [all …]
|
H A D | curlcl.c | 52 is_ifs(char c) in is_ifs() argument 54 return c == ' ' || c == '\t' || c == '\r' || c == '\n'; in is_ifs() 70 char c = *cmdargs++; in parse_command_line() local 74 if(is_ifs(c)) in parse_command_line() 85 if(quote && quote == c) { in parse_command_line() 91 if(quote != '\'' && c == '\\') { in parse_command_line() 96 c = *cmdargs++; in parse_command_line() 105 *argbuf++ = c; in parse_command_line() 141 char c = args->pgm[i]; in main() local 143 if(!c || c == '/') in main() [all …]
|
/curl/tests/libtest/ |
H A D | Makefile.inc | 25 TESTUTIL = testutil.c testutil.h 28 TSTTRACE = testtrace.c testtrace.h 38 FIRSTFILES = first.c first.h 98 lib501_SOURCES = lib501.c $(SUPPORTFILES) 111 lib506_SOURCES = lib506.c $(SUPPORTFILES) 116 lib508_SOURCES = lib508.c $(SUPPORTFILES) 118 lib509_SOURCES = lib509.c $(SUPPORTFILES) 120 lib510_SOURCES = lib510.c $(SUPPORTFILES) 122 lib511_SOURCES = lib511.c $(SUPPORTFILES) 124 lib512_SOURCES = lib512.c $(SUPPORTFILES) [all …]
|
H A D | testtrace.c | 40 size_t c; in libtest_debug_dump() local 57 for(c = 0; c < width; c++) in libtest_debug_dump() 58 if(i + c < size) in libtest_debug_dump() 64 for(c = 0; (c < width) && (i + c < size); c++) { in libtest_debug_dump() 67 (i + c + 1 < size) && (ptr[i + c] == 0x0D) && in libtest_debug_dump() 68 (ptr[i + c + 1] == 0x0A)) { in libtest_debug_dump() 69 i += (c + 2 - width); in libtest_debug_dump() 72 fprintf(stream, "%c", ((ptr[i + c] >= 0x20) && (ptr[i + c] < 0x80)) ? in libtest_debug_dump() 73 ptr[i + c] : '.'); in libtest_debug_dump() 76 (i + c + 2 < size) && (ptr[i + c + 1] == 0x0D) && in libtest_debug_dump() [all …]
|
H A D | lib503.c | 42 CURL *c = NULL; in test() local 51 easy_init(c); in test() 54 easy_setopt(c, CURLOPT_URL, URL); in test() 55 easy_setopt(c, CURLOPT_USERPWD, "test:ing"); in test() 57 easy_setopt(c, CURLOPT_PROXYPASSWORD, "ing%41"); in test() 58 easy_setopt(c, CURLOPT_HTTPPROXYTUNNEL, 1L); in test() 59 easy_setopt(c, CURLOPT_HEADER, 1L); in test() 60 easy_setopt(c, CURLOPT_VERBOSE, 1L); in test() 64 multi_add_handle(m, c); in test() 98 curl_multi_remove_handle(m, c); in test() [all …]
|
H A D | lib552.c | 43 size_t c; in dump() local 59 for(c = 0; c < width; c++) in dump() 60 if(i + c < size) in dump() 66 for(c = 0; (c < width) && (i + c < size); c++) { in dump() 68 if(nohex && (i + c + 1 < size) && ptr[i + c] == 0x0D && in dump() 69 ptr[i + c + 1] == 0x0A) { in dump() 70 i += (c + 2 - width); in dump() 74 (ptr[i + c] >= 0x20) && (ptr[i + c] < 0x80) ? ptr[i + c] : '.'); in dump() 76 if(nohex && (i + c + 2 < size) && ptr[i + c + 1] == 0x0D && in dump() 77 ptr[i + c + 2] == 0x0A) { in dump() [all …]
|
H A D | lib573.c | 39 CURL *c = NULL; in test() local 55 easy_init(c); in test() 57 easy_setopt(c, CURLOPT_HEADER, 1L); in test() 58 easy_setopt(c, CURLOPT_URL, URL); in test() 62 easy_setopt(c, CURLOPT_DEBUGDATA, &libtest_debug_config); in test() 63 easy_setopt(c, CURLOPT_DEBUGFUNCTION, libtest_debug_cb); in test() 64 easy_setopt(c, CURLOPT_VERBOSE, 1L); in test() 68 multi_add_handle(m, c); in test() 98 curl_easy_getinfo(c, CURLINFO_CONNECT_TIME, &connect_time); in test() 109 curl_multi_remove_handle(m, c); in test() [all …]
|
/curl/tests/server/ |
H A D | Makefile.inc | 34 ../../lib/dynbuf.c \ 35 ../../lib/strdup.c \ 51 getpart.c \ 54 ../../lib/base64.c \ 60 util.c \ 64 testpart.c 69 resolve.c 75 rtspd.c 81 sockfilt.c \ 100 sws.c \ [all …]
|
/curl/docs/examples/ |
H A D | multi-debugcallback.c | 41 size_t c; in dump() local 58 for(c = 0; c < width; c++) in dump() 59 if(i + c < size) in dump() 65 for(c = 0; (c < width) && (i + c < size); c++) { in dump() 67 if(nohex && (i + c + 1 < size) && ptr[i + c] == 0x0D && in dump() 68 ptr[i + c + 1] == 0x0A) { in dump() 69 i += (c + 2 - width); in dump() 73 (ptr[i + c] >= 0x20) && (ptr[i + c] < 0x80) ? ptr[i + c] : '.'); in dump() 75 if(nohex && (i + c + 2 < size) && ptr[i + c + 1] == 0x0D && in dump() 76 ptr[i + c + 2] == 0x0A) { in dump() [all …]
|
H A D | debug.c | 41 size_t c; in dump() local 58 for(c = 0; c < width; c++) in dump() 59 if(i + c < size) in dump() 65 for(c = 0; (c < width) && (i + c < size); c++) { in dump() 67 if(nohex && (i + c + 1 < size) && ptr[i + c] == 0x0D && in dump() 68 ptr[i + c + 1] == 0x0A) { in dump() 69 i += (c + 2 - width); in dump() 73 (ptr[i + c] >= 0x20) && (ptr[i + c] < 0x80) ? ptr[i + c] : '.'); in dump() 75 if(nohex && (i + c + 2 < size) && ptr[i + c + 1] == 0x0D && in dump() 76 ptr[i + c + 2] == 0x0A) { in dump() [all …]
|
H A D | http2-download.c | 57 size_t c; in dump() local 74 for(c = 0; c < width; c++) in dump() 75 if(i + c < size) in dump() 81 for(c = 0; (c < width) && (i + c < size); c++) { in dump() 83 if(nohex && (i + c + 1 < size) && ptr[i + c] == 0x0D && in dump() 84 ptr[i + c + 1] == 0x0A) { in dump() 85 i += (c + 2 - width); in dump() 89 (ptr[i + c] >= 0x20) && (ptr[i + c] < 0x80) ? ptr[i + c] : '.'); in dump() 91 if(nohex && (i + c + 2 < size) && ptr[i + c + 1] == 0x0D && in dump() 92 ptr[i + c + 2] == 0x0A) { in dump() [all …]
|
H A D | Makefile.inc | 141 cacertinmem.c \ 142 crawler.c \ 143 ephiperfifo.c \ 144 evhiperfifo.c \ 145 ghiper.c \ 146 hiperfifo.c \ 148 htmltidy.c \ 150 multi-event.c \ 151 multi-uv.c \ 155 synctime.c \ [all …]
|
H A D | http2-serverpush.c | 45 size_t c; in dump() local 62 for(c = 0; c < width; c++) in dump() 63 if(i + c < size) in dump() 69 for(c = 0; (c < width) && (i + c < size); c++) { in dump() 71 if(nohex && (i + c + 1 < size) && ptr[i + c] == 0x0D && in dump() 72 ptr[i + c + 1] == 0x0A) { in dump() 73 i += (c + 2 - width); in dump() 77 (ptr[i + c] >= 0x20) && (ptr[i + c] < 0x80) ? ptr[i + c] : '.'); in dump() 79 if(nohex && (i + c + 2 < size) && ptr[i + c + 1] == 0x0D && in dump() 80 ptr[i + c + 2] == 0x0A) { in dump() [all …]
|
/curl/tests/data/ |
H A D | test1185 | 19 %SRCDIR/../scripts/checksrc.pl %LOGDIR/code%TESTNUMBER.c 21 <file name="%LOGDIR/code%TESTNUMBER.c"> 31 func(a, b , c); 37 func(a, b,c); 91 ./%LOGDIR/code1185.c:4:82: warning: Longer than 79 columns (LONGLINE) 93 ./%LOGDIR/code1185.c:5:4: error: Contains TAB character (TABS) 96 ./%LOGDIR/code1185.c:7:13: warning: func with space (SPACEBEFOREPAREN) 106 func(a, b , c); 112 func(a, b,c); 156 ./%LOGDIR/code1185.c:49:10: warning: multiple spaces (MULTISPACE) [all …]
|
H A D | test558 | 39 MEM easy.c: malloc() 40 MEM lib%TESTNUMBER.c: malloc() 41 MEM lib%TESTNUMBER.c: free() 42 MEM dynbuf.c: realloc() 43 MEM dynbuf.c: realloc() 44 MEM escape.c: free() 45 MEM easy.c: free() 48 s/^MEM escape.c:\d+ free\(\(nil\)\)[\n]$// 54 s/^MEM getenv.c: realloc\(\)[\n]$// 55 s/^MEM getenv.c: free\(\)[\n]$//
|
/curl/packages/OS400/rpg-examples/ |
H A D | SIMPLE1 | 48 c callp main 68 c if h <> *NULL 78 c endif 82 c if result <> CURLE_OK 86 c endif 101 c if len = 0 102 c eval len = length + 1 103 c endif 104 c if len <= 1 105 c return 0 [all …]
|
/curl/tests/http/clients/ |
H A D | h2-serverpush.c | 44 size_t c; in dump() local 61 for(c = 0; c < width; c++) in dump() 62 if(i + c < size) in dump() 68 for(c = 0; (c < width) && (i + c < size); c++) { in dump() 70 if(nohex && (i + c + 1 < size) && ptr[i + c] == 0x0D && in dump() 71 ptr[i + c + 1] == 0x0A) { in dump() 72 i += (c + 2 - width); in dump() 76 (ptr[i + c] >= 0x20) && (ptr[i + c] < 0x80) ? ptr[i + c] : '.'); in dump() 78 if(nohex && (i + c + 2 < size) && ptr[i + c + 1] == 0x0D && in dump() 79 ptr[i + c + 2] == 0x0A) { in dump() [all …]
|
H A D | ws-data.c | 52 size_t c; in dump() local 69 for(c = 0; c < width; c++) in dump() 70 if(i + c < size) in dump() 76 for(c = 0; (c < width) && (i + c < size); c++) { in dump() 78 if(nohex && (i + c + 1 < size) && ptr[i + c] == 0x0D && in dump() 79 ptr[i + c + 1] == 0x0A) { in dump() 80 i += (c + 2 - width); in dump() 84 (ptr[i + c] >= 0x20) && (ptr[i + c] < 0x80) ? ptr[i + c] : '.'); in dump() 86 if(nohex && (i + c + 2 < size) && ptr[i + c + 1] == 0x0D && in dump() 87 ptr[i + c + 2] == 0x0A) { in dump() [all …]
|