Searched refs:curl_off_t (Results 1 - 25 of 63) sorted by relevance

123

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/src/
H A Dtool_cb_prg.h31 curl_off_t prev;
34 curl_off_t initial_size;
H A Dtool_cb_see.h28 int tool_ftruncate64(int fd, curl_off_t where);
43 int tool_seek_cb(void *userdata, curl_off_t offset, int whence);
H A Dtool_cb_prg.c59 curl_off_t total = (curl_off_t)dltotal + (curl_off_t)ultotal +
63 curl_off_t point = (curl_off_t)dlnow + (curl_off_t)ulnow +
74 curl_off_t prevblock = bar->prev / 1024;
75 curl_off_t thisblock = point / 1024;
H A Dtool_sdecls.h64 curl_off_t bytes;
65 curl_off_t init;
H A Dtool_cb_see.c39 /* OUR_MAX_SEEK_L has 'long' data type, OUR_MAX_SEEK_O has 'curl_off_t,
53 int tool_seek_cb(void *userdata, curl_off_t offset, int whence)
59 /* The offset check following here is only interesting if curl_off_t is
67 curl_off_t left = offset;
117 int tool_ftruncate64(int fd, curl_off_t where)
H A Dtool_cfgable.h50 curl_off_t resume_from;
52 curl_off_t postfieldsize;
57 curl_off_t max_filesize;
157 curl_off_t sendpersecond; /* send to peer */
158 curl_off_t recvpersecond; /* receive from peer */
H A Dtool_paramhlp.h38 int str2offset(curl_off_t *val, const char *str);
H A Dtool_setopt.c82 curl_off_t oval = va_arg(arg, curl_off_t);
84 "(curl_off_t)%" CURL_FORMAT_CURL_OFF_T, oval);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/lib/
H A Dprogress.h43 void Curl_pgrsSetDownloadSize(struct SessionHandle *data, curl_off_t size);
44 void Curl_pgrsSetUploadSize(struct SessionHandle *data, curl_off_t size);
45 void Curl_pgrsSetDownloadCounter(struct SessionHandle *data, curl_off_t size);
46 void Curl_pgrsSetUploadCounter(struct SessionHandle *data, curl_off_t size);
H A Dtransfer.h57 curl_off_t size, /* -1 if unknown at this point */
59 curl_off_t *bytecountp, /* return number of bytes read */
63 curl_off_t *writecountp /* return number of bytes written */
66 long Curl_sleep_time(curl_off_t rate_bps, curl_off_t cur_rate_bps,
H A Dhttp.h116 curl_off_t postsize; /* off_t to handle large file sizes */
121 curl_off_t readbytecount;
122 curl_off_t writebytecount;
131 curl_off_t postsize;
H A Dstrtoofft.h29 * to implement string conversion to our curl_off_t integral data type.
31 * Notice that curl_off_t might be 64 or 32 bit wide, and that it might use
35 * On systems where the size of curl_off_t is greater than the size of 'long'
39 * On systems where the size of curl_off_t is smaller or equal than the size
51 curl_off_t curlx_strtoll(const char *nptr, char **endptr, int base);
H A Dftp.h112 curl_off_t *bytecountp;
119 curl_off_t downloadsize;
150 curl_off_t known_filesize; /* file size is different from -1, if wildcard
H A Dstrtoofft.c54 curl_off_t
61 curl_off_t value = 0;
62 curl_off_t newval;
H A Dprogress.c34 static void time2str(char *r, curl_off_t seconds)
36 curl_off_t d, h, m, s;
63 static char *max5data(curl_off_t bytes, char *max5)
208 void Curl_pgrsSetDownloadCounter(struct SessionHandle *data, curl_off_t size)
213 void Curl_pgrsSetUploadCounter(struct SessionHandle *data, curl_off_t size)
218 void Curl_pgrsSetDownloadSize(struct SessionHandle *data, curl_off_t size)
227 void Curl_pgrsSetUploadSize(struct SessionHandle *data, curl_off_t size)
241 curl_off_t dlpercen=0;
242 curl_off_t ulpercen=0;
243 curl_off_t total_perce
[all...]
H A Durldata.h533 curl_off_t size; /* -1 if unknown at this point */
534 curl_off_t *bytecountp; /* return number of bytes read or NULL */
536 curl_off_t maxdownload; /* in bytes, the maximum amount of data to fetch,
538 curl_off_t *writebytecountp; /* return number of bytes written or NULL */
540 curl_off_t bytecount; /* total number of bytes read */
541 curl_off_t writebytecount; /* number of bytes written */
569 curl_off_t offset; /* possible resume offset read from the
1013 curl_off_t size_dl; /* total expected size */
1014 curl_off_t size_ul; /* total expected size */
1015 curl_off_t downloade
[all...]
H A Dwarnless.h39 size_t curlx_sotouz(curl_off_t sonum);
H A Dfile.c133 curl_off_t from, to;
134 curl_off_t totalsize=-1;
319 curl_off_t bytecount = 0;
375 data->state.resume_from = (curl_off_t)file_stat.st_size;
391 if((curl_off_t)nread <= data->state.resume_from ) {
448 curl_off_t expected_size=0;
453 curl_off_t bytecount = 0;
538 data->state.resume_from += (curl_off_t)statbuf.st_size;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/docs/examples/
H A Dftpupload.c70 curl_off_t fsize;
81 fsize = (curl_off_t)file_info.st_size;
115 curl_off_t. If you use CURLOPT_INFILESIZE (without _LARGE) you must
118 (curl_off_t)fsize);
H A Dfileupload.c61 (curl_off_t)file_info.st_size);
H A Dhttpput.c104 to curl_off_t since we must be sure to use the correct data size */
106 (curl_off_t)file_info.st_size);
H A Dpost-callback.c99 curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, (curl_off_t)pooh.sizeleft);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/include/curl/
H A Dcurlrules.h147 * curl_off_t is actually the the same as the one reported
153 [CurlchkszEQ(curl_off_t, CURL_SIZEOF_CURL_OFF_T)];
156 * Verify at compile time that the size of curl_off_t as reported
163 [CurlchkszGE(curl_off_t, long)];
216 * Macros for minimum-width signed and unsigned curl_off_t integer constants.
H A Dcurlbuild.h167 /* Signed integral data type used for curl_off_t. */
170 /* Data type definition of curl_off_t. */
171 typedef CURL_TYPEOF_CURL_OFF_T curl_off_t; typedef
173 /* curl_off_t formatting string directive without "%" conversion specifier. */
176 /* unsigned curl_off_t formatting string without "%" conversion specifier. */
179 /* curl_off_t formatting string directive with "%" conversion specifier. */
182 /* The size of `curl_off_t', as computed by sizeof. */
185 /* curl_off_t constant suffix. */
188 /* unsigned curl_off_t constant suffix. */
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/tmp/include/curl/
H A Dcurlrules.h147 * curl_off_t is actually the the same as the one reported
153 [CurlchkszEQ(curl_off_t, CURL_SIZEOF_CURL_OFF_T)];
156 * Verify at compile time that the size of curl_off_t as reported
163 [CurlchkszGE(curl_off_t, long)];
216 * Macros for minimum-width signed and unsigned curl_off_t integer constants.

Completed in 201 milliseconds

123