Home
last modified time | relevance | path

Searched refs:start (Results 1 – 25 of 132) sorted by relevance

123456

/curl/scripts/
H A Ddelta33 $start = $ARGV[0];
35 if($start eq "-h") {
39 elsif($start eq "") {
41 chomp $start;
44 $commits = `git log --oneline $start.. | wc -l`;
45 $committers = `git shortlog -s $start.. | wc -l`;
46 $bcommitters = `git shortlog -s $start | wc -l`;
57 $bcontribs = `git show $start:docs/THANKS | grep -c '^[^ ]'`;
75 $bsetopts = setopts("git show $start:include/curl/curl.h|");
105 $diffstat=`git diff --stat $start.. | tail -1`;
[all …]
H A Dcontributors.sh34 start="${1:-}"
36 if test "$start" = "-h"; then
40 if test -z "$start"; then
41 start=$(git tag --sort=taggerdate | grep "^curl-" | tail -1)
42 echo "Since $start:"
60 git log --pretty=full --use-mailmap "$start..HEAD"
62 git -C "$CURLWWW" log --pretty=full --use-mailmap "$start..HEAD"
H A Dcontrithanks.sh33 start="${1:-}"
35 if test "$start" = "-h"; then
39 if test -z "$start"; then
40 start=$(git tag --sort=taggerdate | grep "^curl-" | tail -1)
50 git log --use-mailmap "$start..HEAD"
52 git -C "$CURLWWW" log --use-mailmap "$start..HEAD"
H A Dcd2cd84 my $start = 0;
92 if(!$start) {
95 $start = 1;
164 if(!$start) {
H A Dmanagen287 $start = 0;
305 $start = 1;
515 my $start;
522 if(!$start) {
524 $start = 1;
600 $start++;
637 if($start < 2) {
876 my $start = 0;
880 if(!$start) {
882 $start = 1;
[all …]
/curl/tests/
H A Dech_combos.py34 r, start, end): argument
60 if start > n:
65 chosen[index] = arr[start]
71 r, start, end)
73 r, start + 1, end)
H A Dazure.pm105 my ($curl, $azure_run_id, $azure_result_id, $testnum, $error, $start, $stop)=@_;
107 $stop = $start;
109 my $azure_start = strftime "%Y-%m-%dT%H:%M:%SZ", gmtime $start;
111 my $azure_duration = sprintf("%.0f", ($stop-$start)*1000);
H A Dappveyor.pm73 my ($curl, $testnum, $error, $start, $stop)=@_;
79 $stop = $start;
81 my $appveyor_duration = sprintf("%.0f", ($stop-$start)*1000);
/curl/docs/cmdline-opts/
H A Dfalse-start.md4 Long: false-start
13 - --false-start $URL
16 # `--false-start`
18 Use false start during the TLS handshake. False start is a mode where a TLS
H A Drange.md48 Only digit characters (0-9) are valid in the 'start' and 'stop' fields of the
49 'start-stop' range syntax. If a non-digit character is given in the range, the
55 FTP and SFTP range downloads only support the simple 'start-stop' syntax
/curl/lib/
H A Dstrtok.c45 char *start = ptr; in Curl_strtok_r() local
48 *end = start + 1; in Curl_strtok_r()
61 return start; /* return the position where the string starts */ in Curl_strtok_r()
H A Drename.c48 struct curltime start = Curl_now(); in Curl_rename() local
58 diff = Curl_timediff(Curl_now(), start); in Curl_rename()
H A Drtsp.c942 start = header + 8; in Curl_rtsp_parseheader()
943 while(*start && ISBLANK(*start)) in Curl_rtsp_parseheader()
944 start++; in Curl_rtsp_parseheader()
946 if(!*start) { in Curl_rtsp_parseheader()
957 end = start; in Curl_rtsp_parseheader()
960 idlen = end - start; in Curl_rtsp_parseheader()
999 const char *start, *end; in rtsp_parse_transport() local
1000 start = transport; in rtsp_parse_transport()
1001 while(start && *start) { in rtsp_parse_transport()
1002 while(*start && ISBLANK(*start) ) in rtsp_parse_transport()
[all …]
H A Dprogress.c222 data->progress.start); in Curl_pgrsTimeWas()
251 data->progress.start = Curl_now(); in Curl_pgrsStartNow()
253 data->progress.ul.limit.start = data->progress.start; in Curl_pgrsStartNow()
254 data->progress.dl.limit.start = data->progress.start; in Curl_pgrsStartNow()
261 Curl_ratelimit(data, data->progress.start); in Curl_pgrsStartNow()
311 actual = Curl_timediff_ceil(now, d->limit.start); in Curl_pgrsLimitWaitTime()
337 if(Curl_timediff(now, data->progress.dl.limit.start) >= in Curl_ratelimit()
339 data->progress.dl.limit.start = now; in Curl_ratelimit()
344 if(Curl_timediff(now, data->progress.ul.limit.start) >= in Curl_ratelimit()
346 data->progress.ul.limit.start = now; in Curl_ratelimit()
[all …]
H A Dmprintf.c155 char *start; /* format string start to output */ member
235 char *start = fmt; in parsefmt() local
245 outlen = (size_t)(fmt - start - 1); in parsefmt()
255 optr->start = start; in parsefmt()
258 start = fmt; in parsefmt()
571 optr->start = start; in parsefmt()
573 start = fmt; in parsefmt()
580 outlen = (size_t)(fmt - start); in parsefmt()
587 optr->start = start; in parsefmt()
709 char *str = optr->start; in formatf()
/curl/docs/libcurl/opts/
H A DCURLINFO_STARTTRANSFER_TIME_T.md34 start until the first byte is received by libcurl. This includes
52 curl_off_t start;
56 res = curl_easy_getinfo(curl, CURLINFO_STARTTRANSFER_TIME_T, &start);
58 printf("Time: %" CURL_FORMAT_CURL_OFF_T ".%06ld", start / 1000000,
59 (long)(start % 1000000));
H A DCURLOPT_SSL_FALSESTART.md18 CURLOPT_SSL_FALSESTART - TLS false start
32 This option determines whether libcurl should use false start during the TLS
33 handshake. False start is a mode where a TLS client starts sending application
61 Returns CURLE_OK if false start is supported by the SSL backend, otherwise
H A DCURLINFO_STARTTRANSFER_TIME.md33 start until the first byte is received by libcurl. This includes
51 double start;
55 res = curl_easy_getinfo(curl, CURLINFO_STARTTRANSFER_TIME, &start);
57 printf("Time: %.1f", start);
H A DCURLOPT_RESUME_FROM.md31 want the transfer to start from. Set this option to 0 to make the transfer
32 start from the beginning (effectively disabling resume). For FTP, set this
33 option to -1 to make the transfer start from the end of the target file
H A DCURLOPT_RESUME_FROM_LARGE.md32 you want the transfer to start from. Set this option to 0 to make the transfer
33 start from the beginning (effectively disabling resume). For FTP, set this
34 option to -1 to make the transfer start from the end of the target file
/curl/docs/libcurl/
H A Dcurl_easy_getinfo.md47 The time it took from the start until the SSL connect/handshake with the
52 The time it took from the start until the SSL connect/handshake with the
75 The time it took from the start until the connect to the remote host (or
80 The time it took from the start until the connect to the remote host (or
171 Time from start until name resolving completed as a double. See
176 Time from start until name resolving completed in number of microseconds. See
190 The time it took from the start until the last byte is sent by libcurl.
195 The time it took from the start until the file transfer is just about to
202 The time it took from the start until the file transfer is just about to
239 start for real in number of microseconds. (Added in 8.6.0) See
[all …]
/curl/tests/http/
H A Dconftest.py101 if not httpd.start():
112 assert nghttpx.start()
121 assert nghttpx.start()
H A Dtest_11_unix.py51 def start(self): member in UDSFaker
64 self._thread.start()
97 faker.start()
H A Dtest_03_goaway.py62 t.start()
98 t.start()
131 t.start()
/curl/tests/data/
H A Dtest103637 This is the start!!
59 This is the start!!

Completed in 52 milliseconds

123456