OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:maxdownload
(Results
1 - 8
of
8
) sorted by null
/external/curl/lib/
file.c
158
data->req.
maxdownload
= -from;
166
data->req.
maxdownload
= totalsize+1; /* include last byte */
170
from, data->req.
maxdownload
));
175
from, to, data->req.
maxdownload
));
178
data->req.
maxdownload
= -1;
531
if(data->req.
maxdownload
> 0)
532
expected_size = data->req.
maxdownload
;
transfer.c
485
(k->
maxdownload
<= 0 && nread > 0)) {
660
if((-1 != k->
maxdownload
) &&
661
(k->bytecount + nread >= k->
maxdownload
)) {
663
excess = (size_t)(k->bytecount + nread - k->
maxdownload
);
671
",
maxdownload
= %" CURL_FORMAT_CURL_OFF_T
674
k->size, k->
maxdownload
, k->bytecount, nread);
682
",
maxdownload
= %" CURL_FORMAT_CURL_OFF_T
684
excess, k->size, k->
maxdownload
, k->bytecount);
688
nread = (ssize_t) (k->
maxdownload
- k->bytecount);
707
if(k->
maxdownload
== -1 || (curl_off_t)k->hbuflen <= k->maxdownload
[
all
...]
ftp.c
[
all
...]
ssh.c
[
all
...]
http.c
[
all
...]
imap.c
[
all
...]
urldata.h
615
curl_off_t
maxdownload
; /* in bytes, the maximum amount of data to fetch,
member in struct:SingleRequest
[
all
...]
url.c
[
all
...]
Completed in 526 milliseconds