/curl/lib/ |
H A D | strtoofft.c | 81 char *end; in strtooff() local 90 end++; in strtooff() 96 end++; in strtooff() 99 end++; in strtooff() 110 if(end[0] == '0' && end[1] == 'x') { in strtooff() 112 end += 2; in strtooff() 118 end++; in strtooff() 133 end++, i = get_char(end[0], base)) { in strtooff() 158 *endptr = end; in strtooff() 215 char *end = NULL; in curlx_strtoofft() local [all …]
|
H A D | strtok.c | 33 Curl_strtok_r(char *ptr, const char *sep, char **end) in Curl_strtok_r() argument 37 ptr = *end; in Curl_strtok_r() 48 *end = start + 1; in Curl_strtok_r() 52 while(**end && !strchr(sep, **end)) in Curl_strtok_r() 53 ++*end; in Curl_strtok_r() 55 if(**end) { in Curl_strtok_r() 57 **end = '\0'; /* null-terminate it! */ in Curl_strtok_r() 58 ++*end; /* advance the last pointer to beyond the null byte */ in Curl_strtok_r()
|
H A D | headers.c | 191 char *end = header + hlen - 1; /* point to the last byte */ in namevalue() local 218 while((end > header) && ISSPACE(*end)) in namevalue() 219 *end-- = 0; /* nul terminate */ in namevalue() 282 char *end; in Curl_headers_push() local 291 end = strchr(header, '\r'); in Curl_headers_push() 292 if(!end) { in Curl_headers_push() 293 end = strchr(header, '\n'); in Curl_headers_push() 294 if(!end) in Curl_headers_push() 298 hlen = end - header; in Curl_headers_push()
|
H A D | parsedate.c | 413 char *end; in parsedate() local 415 match_time(date, &hournum, &minnum, &secnum, &end)) { in parsedate() 417 date = end; in parsedate() 426 lval = strtol(date, &end, 10); in parsedate() 442 ((end - date) == 4) && in parsedate() 462 if(((end - date) == 8) && in parsedate() 497 date = end; in parsedate()
|
H A D | mqtt.c | 307 goto end; in mqtt_connect() 324 goto end; in mqtt_connect() 334 goto end; in mqtt_connect() 341 end: in mqtt_connect() 654 goto end; in mqtt_read_publish() 658 goto end; in mqtt_read_publish() 668 goto end; in mqtt_read_publish() 686 goto end; in mqtt_read_publish() 691 goto end; in mqtt_read_publish() 708 goto end; in mqtt_read_publish() [all …]
|
H A D | rtsp.c | 938 const char *start, *end; in Curl_rtsp_parseheader() local 957 end = start; in Curl_rtsp_parseheader() 958 while(*end && *end != ';' && !ISSPACE(*end)) in Curl_rtsp_parseheader() 959 end++; in Curl_rtsp_parseheader() 960 idlen = end - start; in Curl_rtsp_parseheader() 999 const char *start, *end; in rtsp_parse_transport() local 1004 end = strchr(start, ';'); in rtsp_parse_transport() 1035 start = (!end) ? end : (end + 1); in rtsp_parse_transport()
|
H A D | curl_krb5.h | 32 void (*end)(void *); member
|
/curl/lib/vtls/ |
H A D | x509asn1.c | 192 if(!beg || !end || beg >= end || !*beg || in getASN1Element() 207 if(beg >= end) in getASN1Element() 223 if(beg >= end) in getASN1Element() 297 if(++beg > end) in bit2str() 459 if(beg < end) { in OID2str() 594 if(tzp >= end) in UTime2str() 774 cert->certificate.end = end; in Curl_parseX509() 780 end = elem.end; in Curl_parseX509() 796 end = tbsCertificate.end; in Curl_parseX509() 851 if(beg < end) { in Curl_parseX509() [all …]
|
H A D | x509asn1.h | 45 const char *end; /* Pointer to 1st byte after element. */ member 75 const char *beg, const char *end); 77 const char *beg, const char *end); 79 const char *beg, const char *end); 87 const char *beg, const char *end);
|
H A D | cipher_suite.h | 38 uint16_t Curl_cipher_suite_walk_str(const char **str, const char **end);
|
/curl/tests/ |
H A D | ech_combos.py | 34 r, start, end): argument 48 print("cli_test $turl 1", res, end = " ") 53 print(chosen[j], end = " ") 71 r, start, end) 73 r, start + 1, end)
|
/curl/lib/vssh/ |
H A D | curl_path.c | 123 const char *cp = *cpp, *end; in Curl_get_pathname() local 174 end = strpbrk(cp, WHITESPACE); in Curl_get_pathname() 175 if(!end) in Curl_get_pathname() 176 end = strchr(cp, '\0'); in Curl_get_pathname() 179 *cpp = end + strspn(end, WHITESPACE); in Curl_get_pathname() 191 result = Curl_dyn_addn(&out, cp, (end - cp)); in Curl_get_pathname()
|
/curl/tests/server/ |
H A D | getpart.c | 284 char *end; in getpart() local 337 end = ptr; in getpart() 338 EAT_WORD(end); in getpart() 339 len.sig = end - ptr; in getpart() 403 end = ptr; in getpart() 404 EAT_WORD(end); in getpart() 405 len.sig = end - ptr; in getpart() 420 ptr = end; in getpart() 422 end = ptr; in getpart() 423 while(*end && ('>' != *end)) in getpart() [all …]
|
H A D | mqttd.c | 514 goto end; in mqttit() 526 goto end; in mqttit() 547 goto end; in mqttit() 566 goto end; in mqttit() 596 goto end; in mqttit() 601 goto end; in mqttit() 613 goto end; in mqttit() 626 goto end; in mqttit() 696 goto end; in mqttit() 700 goto end; in mqttit() [all …]
|
/curl/tests/unit/ |
H A D | unit1651.c | 351 const char *end = (const char *)&cert[sizeof(cert)]; variable 363 result = Curl_extract_certinfo(data, 0, beg, end); 373 (void) Curl_extract_certinfo(data, 0, beg, end);
|
H A D | unit3205.c | 758 const char *ptr, *end = cs_test_string; variable 763 for(ptr = cs_test_string; ptr[0] != '\0'; ptr = end) { 767 id = Curl_cipher_suite_walk_str(&ptr, &end); 768 len = end - ptr;
|
/curl/packages/OS400/rpg-examples/ |
H A D | SIMPLE2 | 38 end-pi; 58 dcl-pi *N end-pi; 86 end-proc; 96 end-pi; 108 end-proc;
|
/curl/src/ |
H A D | tool_writeout.c | 562 char *end; in ourWriteOut() local 567 end = strchr(ptr, '}'); in ourWriteOut() 569 if(!end) { in ourWriteOut() 573 vlen = end - ptr; in ourWriteOut() 623 end = strchr(ptr, '}'); in ourWriteOut() 624 if(end) { in ourWriteOut() 627 vlen = end - ptr; in ourWriteOut() 635 ptr = end + 1; in ourWriteOut() 647 end = strchr(ptr, '}'); in ourWriteOut() 648 if(end) { in ourWriteOut() [all …]
|
H A D | tool_cb_hdr.c | 97 const char *end = (char *)ptr + cb; in tool_header_cb() local 149 const char *eot = end - 1; in tool_header_cb() 196 while((p < end) && *p && !ISALPHA(*p)) in tool_header_cb() 198 if(p > end - 9) in tool_header_cb() 203 while((p < end) && *p && (*p != ';')) in tool_header_cb() 205 if((p < end) && *p) in tool_header_cb()
|
/curl/tests/http/ |
H A D | scorecard.py | 537 print(f' {"Size":>8}', end='') 544 print(f' {size:>8}', end='') 554 print(f' {s:<{mcol_sw}}', end='') 556 print(' '*mcol_width, end='') 580 print(f' {"Size":>8}', end='') 587 print(f' {size:>8}', end='') 600 print(f' {s:<{mcol_sw}}', end='') 602 print(' '*mcol_width, end='') 625 print(f' {"Size":>6} {"Reqs":>6}', end='') 633 print(f' {size:>6} {count:>6}', end='') [all …]
|
/curl/docs/cmdline-opts/ |
H A D | url-query.md | 24 Add a piece of data, usually a name + value pair, to the end of the URL query 32 end.
|
/curl/tests/data/ |
H A D | test579 | 80 Progress: end UL 5/0 82 Progress: end UL 66/0
|
H A D | test1060 | 42 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 62 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 82 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 102 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 122 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 142 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 162 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 182 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 202 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 222 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa [all …]
|
H A D | test1061 | 44 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 64 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 84 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 104 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 124 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 144 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 164 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 184 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 204 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 224 end of 1 KB aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa [all …]
|
H A D | test680 | 23 netrc with quoted password but missing end quote
|