Searched refs:first (Results 1 – 25 of 239) sorted by relevance
12345678910
/curl/lib/ |
H A D | strcase.c | 94 while(*first && *second) { in casecompare() 98 first++; in casecompare() 105 return !*first == !*second; in casecompare() 111 if(first && second) in curl_strequal() 113 return casecompare(first, second); in curl_strequal() 116 return (NULL == first && NULL == second); in curl_strequal() 121 while(*first && *second && max) { in ncasecompare() 125 first++; in ncasecompare() 137 if(first && second) in curl_strnequal() 139 return ncasecompare(first, second, max); in curl_strnequal() [all …]
|
/curl/tests/ |
H A D | test1135.pl | 78 my $first = ""; 92 $first = $decl; 94 elsif($first) { 98 $first .= $decl; 99 $first =~ /([a-z_]+)$/; 102 $first = "";
|
/curl/tests/unit/ |
H A D | unit1323.c | 39 struct curltime first; member 55 timediff_t result = Curl_timediff(tests[i].first, tests[i].second); 58 (long)tests[i].first.tv_sec, 59 tests[i].first.tv_usec,
|
/curl/scripts/ |
H A D | release-notes.pl | 111 my $first; 115 if($first) { 123 $first = 0; 125 elsif(($l =~ /^ (.*)/) && !$first) { 129 $first = 1; 132 elsif(($l =~ /^ (.*)/) && $first) { 150 if($first) {
|
/curl/tests/data/ |
H A D | test492 | 38 'http://%HOSTIP:%HTTPPORT/{one,two}/' -T '{%LOGDIR/first%TESTNUMBER,%LOGDIR/second%TESTNUMBER}' -H … 40 <file name="%LOGDIR/first%TESTNUMBER"> 41 first %TESTNUMBER contents 52 PUT /one/first%TESTNUMBER HTTP/1.1 59 first %TESTNUMBER contents 60 PUT /two/first%TESTNUMBER HTTP/1.1 67 first %TESTNUMBER contents
|
H A D | test147 | 28 ftp://%HOSTIP:%FTPPORT/first/dir/here/%TESTNUMBER --ftp-create-dirs 46 CWD first 47 MKD first 48 CWD first
|
H A D | test298 | 28 --ftp-method nocwd ftp://%HOSTIP:%FTPPORT/first/second/th%69rd/%TESTNUMBER 43 SIZE first/second/third/%TESTNUMBER 44 RETR first/second/third/%TESTNUMBER
|
H A D | test951 | 20 SMTP data with dot as first character 23 .This first line starts with a dot 41 ..This first line starts with a dot
|
H A D | test1087 | 81 http://first.host.it.is/we/want/that/page/%TESTNUMBER1000 -x %HOSTIP:%HTTPPORT --user iam:myself --… 92 GET http://first.host.it.is/we/want/that/page/%TESTNUMBER1000 HTTP/1.1 93 Host: first.host.it.is 98 GET http://first.host.it.is/we/want/that/page/%TESTNUMBER1000 HTTP/1.1 99 Host: first.host.it.is
|
H A D | test1088 | 82 http://first.host.it.is/we/want/that/page/%TESTNUMBER1000 -x %HOSTIP:%HTTPPORT --user iam:myself --… 93 GET http://first.host.it.is/we/want/that/page/%TESTNUMBER1000 HTTP/1.1 94 Host: first.host.it.is 99 GET http://first.host.it.is/we/want/that/page/%TESTNUMBER1000 HTTP/1.1 100 Host: first.host.it.is
|
H A D | test741 | 23 IPFS with malformed gateway URL from multiline gateway file, first line no url 37 # malformed gateway URL, first line in file must be a gateway URL
|
H A D | test297 | 28 --ftp-method singlecwd ftp://%HOSTIP:%FTPPORT/first/second/third/%TESTNUMBER 41 CWD first/second/third
|
H A D | test296 | 28 --ftp-method multicwd ftp://%HOSTIP:%FTPPORT/first/second/third/%TESTNUMBER 41 CWD first
|
H A D | test857 | 17 ..body with a single dot first 27 .body with a single dot first
|
H A D | test599 | 32 this data is slightly larger than the first piece 54 this data is slightly larger than the first piece 70 # encoded page, the first size would still be used in the progress callback
|
H A D | test146 | 26 ftp://%HOSTIP:%FTPPORT/first/dir/here/%TESTNUMBER ftp://%HOSTIP:%FTPPORT/%TESTNUMBER 44 CWD first
|
H A D | test1515 | 13 # Close the connection after the first request. Second request will happen after 14 # the DNS cache timeout elapses and must succeed exactly like the first one.
|
H A D | test585 | 18 Location: this-is-the-first.html 28 Location: this-is-the-first.html
|
H A D | test330 | 67 http://first.host.it.is/we/want/that/page/%TESTNUMBER -x %HOSTIP:%HTTPPORT -H "Cookie: test=yes" --… 78 GET http://first.host.it.is/we/want/that/page/%TESTNUMBER HTTP/1.1 79 Host: first.host.it.is
|
H A D | test233 | 68 http://first.host.it.is/we/want/that/page/%TESTNUMBER -x %HOSTIP:%HTTPPORT --user iam:myself --prox… 79 GET http://first.host.it.is/we/want/that/page/%TESTNUMBER HTTP/1.1 80 Host: first.host.it.is
|
/curl/src/ |
H A D | tool_main.c | 156 config->first = config->last = malloc(sizeof(struct OperationConfig)); in main_init() 157 if(config->first) { in main_init() 166 config_init(config->first); in main_init() 167 config->first->global = config; in main_init() 171 free(config->first); in main_init() 176 free(config->first); in main_init() 211 config->first = NULL; in main_free()
|
H A D | slist_wc.c | 54 list->first = new_item; in slist_wc_append() 70 curl_slist_free_all(list->first); in slist_wc_free_all()
|
H A D | tool_easysrc.c | 148 for(ptr = easysrc_toohard->first; ptr; ptr = ptr->next) in easysrc_perform() 197 for(ptr = easysrc_decl->first; ptr; ptr = ptr->next) in dumpeasysrc() 205 for(ptr = easysrc_data->first; ptr; ptr = ptr->next) in dumpeasysrc() 211 for(ptr = easysrc_code->first; ptr; ptr = ptr->next) { in dumpeasysrc() 222 for(ptr = easysrc_clean->first; ptr; ptr = ptr->next) in dumpeasysrc()
|
H A D | slist_wc.h | 32 struct curl_slist *first; member
|
/curl/docs/cmdline-opts/ |
H A D | fail-early.md | 5 Help: Fail on first transfer error 19 Fail and exit on the first detected transfer error. 26 Using this option, curl instead returns an error on the first transfer that
|
Completed in 17 milliseconds
12345678910