/curl/tests/libtest/ |
H A D | testutil.c | 114 long tutil_tvdiff(struct timeval newer, struct timeval older) in tutil_tvdiff() argument 116 return (long)(newer.tv_sec-older.tv_sec)*1000+ in tutil_tvdiff() 117 (long)(newer.tv_usec-older.tv_usec)/1000; in tutil_tvdiff() 125 double tutil_tvdiff_secs(struct timeval newer, struct timeval older) in tutil_tvdiff_secs() argument 127 if(newer.tv_sec != older.tv_sec) in tutil_tvdiff_secs() 128 return (double)(newer.tv_sec-older.tv_sec)+ in tutil_tvdiff_secs() 129 (double)(newer.tv_usec-older.tv_usec)/1000000.0; in tutil_tvdiff_secs() 130 return (double)(newer.tv_usec-older.tv_usec)/1000000.0; in tutil_tvdiff_secs()
|
/curl/lib/ |
H A D | timeval.c | 201 timediff_t Curl_timediff(struct curltime newer, struct curltime older) in Curl_timediff() argument 203 timediff_t diff = (timediff_t)newer.tv_sec-older.tv_sec; in Curl_timediff() 208 return diff * 1000 + (newer.tv_usec-older.tv_usec)/1000; in Curl_timediff() 215 timediff_t Curl_timediff_ceil(struct curltime newer, struct curltime older) in Curl_timediff_ceil() argument 217 timediff_t diff = (timediff_t)newer.tv_sec-older.tv_sec; in Curl_timediff_ceil() 222 return diff * 1000 + (newer.tv_usec - older.tv_usec + 999)/1000; in Curl_timediff_ceil() 229 timediff_t Curl_timediff_us(struct curltime newer, struct curltime older) in Curl_timediff_us() argument 231 timediff_t diff = (timediff_t)newer.tv_sec-older.tv_sec; in Curl_timediff_us() 236 return diff * 1000000 + newer.tv_usec-older.tv_usec; in Curl_timediff_us()
|
H A D | timeval.h | 44 timediff_t Curl_timediff(struct curltime newer, struct curltime older); 52 timediff_t Curl_timediff_ceil(struct curltime newer, struct curltime older); 60 timediff_t Curl_timediff_us(struct curltime newer, struct curltime older);
|
/curl/src/ |
H A D | tool_util.c | 134 long tvdiff(struct timeval newer, struct timeval older) in tvdiff() argument 136 return (long)(newer.tv_sec-older.tv_sec)*1000+ in tvdiff() 137 (long)(newer.tv_usec-older.tv_usec)/1000; in tvdiff()
|
/curl/tests/server/ |
H A D | util.h | 30 long timediff(struct timeval newer, struct timeval older);
|
H A D | util.c | 456 long timediff(struct timeval newer, struct timeval older) in timediff() argument 458 timediff_t diff = newer.tv_sec-older.tv_sec; in timediff() 463 return (long)(newer.tv_sec-older.tv_sec)*1000+ in timediff() 464 (long)(newer.tv_usec-older.tv_usec)/1000; in timediff()
|
/curl/tests/data/ |
H A D | test139 | 25 FTP download a newer file with -z
|
H A D | test1126 | 31 HTTP 200 If-Modified-Since with newer document
|
H A D | test78 | 47 HTTP with -z "newer date"
|
/curl/m4/ |
H A D | zz60-xc-ovr.m4 | 36 dnl 2.58 or newer, and provides macro definition for 38 dnl using libtool 2.2 or newer, which requires that
|
H A D | xc-am-iface.m4 | 32 dnl newer is used at configure script generation time, this 68 dnl When using automake version 1.14 or newer, automake
|
H A D | curl-reentrant.m4 | 344 dnl AIX 4.3 and newer
|
/curl/docs/libcurl/opts/ |
H A D | CURLINFO_SIZE_UPLOAD.md | 35 CURLINFO_SIZE_UPLOAD_T(3) is a newer replacement that returns a more
|
H A D | CURLINFO_SPEED_UPLOAD.md | 33 CURLINFO_SPEED_UPLOAD_T(3) is a newer replacement that returns a more
|
H A D | CURLINFO_CONTENT_LENGTH_UPLOAD.md | 34 CURLINFO_CONTENT_LENGTH_UPLOAD_T(3) is a newer replacement that returns a
|
H A D | CURLINFO_SPEED_DOWNLOAD.md | 35 CURLINFO_SPEED_DOWNLOAD_T(3) is a newer replacement that returns a more
|
H A D | CURLINFO_CONTENT_LENGTH_DOWNLOAD.md | 35 CURLINFO_CONTENT_LENGTH_DOWNLOAD_T(3) is a newer replacement that returns a more
|
H A D | CURLINFO_SIZE_DOWNLOAD.md | 38 CURLINFO_SIZE_DOWNLOAD_T(3) is a newer replacement that returns a more
|
H A D | CURLOPT_FTP_USE_EPRT.md | 35 The EPRT command is a slightly newer addition to the FTP protocol than PORT
|
H A D | CURLOPT_FTP_USE_EPSV.md | 34 The EPSV command is a slightly newer addition to the FTP protocol than PASV
|
H A D | CURLOPT_PROGRESSFUNCTION.md | 41 newer CURLOPT_XFERINFOFUNCTION(3) instead, if you can.
|
/curl/docs/cmdline-opts/ |
H A D | time-cond.md | 30 that is older than the given date/time, default is a document that is newer
|
/curl/CMake/Platforms/ |
H A D | WindowsCache.cmake | 84 # Available in Windows XP and newer 150 set(HAVE_FSEEKO 0) # mingw-w64 2.0.0 and newer has it
|
/curl/.github/workflows/ |
H A D | linux-old.yml | 71 # GitHub's actions/checkout needs a newer glibc. This one is the
|
H A D | macos.yml | 47 # newer than the 10.8 required by `CFURLCreateDataAndPropertiesFromResource`. 53 LDFLAGS: -w # suppress 'object file was built for newer macOS version than being linked' warnings
|