Home
last modified time | relevance | path

Searched refs:newer (Results 1 – 25 of 35) sorted by relevance

12

/curl/tests/libtest/
H A Dtestutil.c114 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 Dtimeval.c201 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 Dtimeval.h44 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 Dtool_util.c134 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 Dutil.h30 long timediff(struct timeval newer, struct timeval older);
H A Dutil.c456 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 Dtest13925 FTP download a newer file with -z
H A Dtest112631 HTTP 200 If-Modified-Since with newer document
H A Dtest7847 HTTP with -z "newer date"
/curl/m4/
H A Dzz60-xc-ovr.m436 dnl 2.58 or newer, and provides macro definition for
38 dnl using libtool 2.2 or newer, which requires that
H A Dxc-am-iface.m432 dnl newer is used at configure script generation time, this
68 dnl When using automake version 1.14 or newer, automake
H A Dcurl-reentrant.m4344 dnl AIX 4.3 and newer
/curl/docs/libcurl/opts/
H A DCURLINFO_SIZE_UPLOAD.md35 CURLINFO_SIZE_UPLOAD_T(3) is a newer replacement that returns a more
H A DCURLINFO_SPEED_UPLOAD.md33 CURLINFO_SPEED_UPLOAD_T(3) is a newer replacement that returns a more
H A DCURLINFO_SPEED_DOWNLOAD.md35 CURLINFO_SPEED_DOWNLOAD_T(3) is a newer replacement that returns a more
H A DCURLINFO_CONTENT_LENGTH_UPLOAD.md34 CURLINFO_CONTENT_LENGTH_UPLOAD_T(3) is a newer replacement that returns a
H A DCURLINFO_CONTENT_LENGTH_DOWNLOAD.md35 CURLINFO_CONTENT_LENGTH_DOWNLOAD_T(3) is a newer replacement that returns a more
H A DCURLINFO_SIZE_DOWNLOAD.md38 CURLINFO_SIZE_DOWNLOAD_T(3) is a newer replacement that returns a more
H A DCURLOPT_FTP_USE_EPRT.md35 The EPRT command is a slightly newer addition to the FTP protocol than PORT
H A DCURLOPT_FTP_USE_EPSV.md34 The EPSV command is a slightly newer addition to the FTP protocol than PASV
H A DCURLOPT_PROGRESSFUNCTION.md41 newer CURLOPT_XFERINFOFUNCTION(3) instead, if you can.
/curl/docs/cmdline-opts/
H A Dtime-cond.md30 that is older than the given date/time, default is a document that is newer
/curl/CMake/Platforms/
H A DWindowsCache.cmake84 # 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 Dlinux-old.yml71 # GitHub's actions/checkout needs a newer glibc. This one is the
/curl/packages/vms/
H A Dreadme194 The GNV_LINK_CURL.COM contains information on how to link and run with a newer

Completed in 32 milliseconds

12