/third_party/node/deps/openssl/openssl/ssl/ |
H A D | bio_ssl.c | 28 /* re-negotiate every time the total number of bytes is this size */ 122 tm = (unsigned long)time(NULL); in ssl_read() 191 tm = (unsigned long)time(NULL); in ssl_write() 271 bs->last_time = (unsigned long)time(NULL); in ssl_ctrl()
|
/third_party/python/Lib/idlelib/ |
H A D | run.py | 14 import time namespace 132 #time.sleep(15) # test subprocess not responding 189 time.sleep(i) 546 time.sleep(10)
|
/third_party/python/Lib/http/ |
H A D | cookies.py | 50 Most of the time you start by creating a cookie. 233 # The _getdate() routine is used to set the expiration time in the cookie's HTTP 234 # header. By default, _getdate() returns the current time in the appropriate 247 from time import gmtime, time namespace 248 now = time()
|
/third_party/python/Lib/multiprocessing/ |
H A D | queues.py | 16 import time namespace 107 deadline = time.monotonic() + timeout 112 timeout = deadline - time.monotonic()
|
H A D | synchronize.py | 18 import time namespace 304 endtime = time.monotonic() + timeout 310 waittime = endtime - time.monotonic()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | core-scache.c | 32 #include <time.h> 373 time(&e->last_used_time); in pa_scache_play_item() 445 time(&now); in pa_scache_unload_unused()
|
/third_party/openssl/ssl/ |
H A D | bio_ssl.c | 28 /* re-negotiate every time the total number of bytes is this size */ 122 tm = (unsigned long)time(NULL); in ssl_read() 191 tm = (unsigned long)time(NULL); in ssl_write() 271 bs->last_time = (unsigned long)time(NULL); in ssl_ctrl()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | windtfmt.cpp | 82 // Get proper date time format in getTimeDateFormat() 247 UnicodeString time; in format() local 251 formatTime(&st_local, time); in format() 257 SimpleFormatter(*pattern, 2, 2, status).format(time, date, appendTo, status); in format()
|
/third_party/skia/third_party/externals/microhttpd/src/testcurl/ |
H A D | perf_get.c | 25 * same time, so the execution time given is the combined 26 * time for both MHD and libcurl; it is quite possible 27 * that more time is spend with libcurl than with MHD, 33 * a single request at a time. This is again 45 #include <time.h> 85 * @return current time in ms 421 start = time (NULL); in testExternalGet() 422 while ((time (NULL) - start < 5) && (c != NULL)) in testExternalGet()
|
H A D | test_get.c | 35 #include <time.h> 319 start = time (NULL); in testExternalGet() 320 while ((time (NULL) - start < 5) && (multi != NULL)) in testExternalGet()
|
H A D | test_get_sendfile.c | 34 #include <time.h> 322 start = time (NULL); in testExternalGet() 323 while ((time (NULL) - start < 5) && (multi != NULL)) in testExternalGet()
|
H A D | test_large_put.c | 33 #include <time.h> 389 start = time (NULL); in testExternalPut() 390 while ((time (NULL) - start < 5) && (multi != NULL)) in testExternalPut()
|
H A D | test_post_loop.c | 33 #include <time.h> 371 start = time (NULL); in testExternalPost() 372 while ((time (NULL) - start < 5) && (multi != NULL)) in testExternalPost() 465 * @return current time in ms
|
H A D | test_postform.c | 33 #include <time.h> 407 start = time (NULL); in testExternalPost() 408 while ((time (NULL) - start < 5) && (multi != NULL)) in testExternalPost()
|
H A D | test_process_headers.c | 34 #include <time.h> 354 start = time (NULL); in testExternalGet() 355 while ((time (NULL) - start < 5) && (multi != NULL)) in testExternalGet()
|
H A D | test_put.c | 33 #include <time.h> 357 start = time (NULL); in testExternalPut() 358 while ((time (NULL) - start < 5) && (multi != NULL)) in testExternalPut()
|
H A D | test_put_chunked.c | 34 #include <time.h> 367 start = time (NULL); in testExternalPut() 368 while ((time (NULL) - start < 5) && (multi != NULL)) in testExternalPut()
|
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/ |
H A D | restricted_trace_gold_tests.py | 23 import time namespace 162 # Only call this method one time 463 'seconds_since_epoch': time.time(),
|
/third_party/skia/third_party/externals/angle2/src/third_party/libXNVCtrl/ |
H A D | nv_control.h | 577 CARD32 time B32; 624 CARD32 time B32; 638 CARD32 time B32;
|
/third_party/python/Lib/test/ |
H A D | test_funcattrs.py | 417 import time namespace 421 self.assertEqual(time.time.__qualname__, 'time')
|
/third_party/python/Lib/test/libregrtest/ |
H A D | runtest.py | 8 import time namespace 179 # and measure time. 189 start_time = time.perf_counter() 240 result.duration_sec = time.perf_counter() - start_time
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/runtime/ |
H A D | wasm-runtime.cpp | 32 #include <time.h> 280 time_t env$$time(WasmPtr<time_t> Time) { in env$$time() 283 return trace(time(TimePtr)); in env$$time()
|
/third_party/python/Lib/ |
H A D | uuid.py | 15 # make a UUID based on the host ID and current time 117 time the 60-bit timestamp 321 def time(self): member in UUID 592 """[DEPRECATED] Platform-specific functions loaded at import time""" 653 The first time this runs, it may launch a separate program, which could 675 """Generate a UUID from a host ID, sequence number, and the current time. 691 import time namespace 692 nanoseconds = time.time_ns()
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsCalibration.cpp | 187 deUint64 time = 0; in getTotalTime() local 189 time += frameTimes[i]; in getTotalTime() 190 return time; in getTotalTime() 212 1000.0f/30.0f /* target frame time */, 1000.0f/60.0f /* frame time cap */, 1000.0f /* target measure duration */) in TheilSenCalibrator() 273 // Record frame time. in recomputeParameters() 285 // Do a few past iterations have frame time in acceptable range? in recomputeParameters() 325 // Is call count just 1, and frame time still way too high? in recomputeParameters() 403 << TestLog::Message << "Target frame time: " << params.targetFrameTimeUs << " us (" << 1000000 / params.targetFrameTimeUs << " fps)" << TestLog::EndMessage; in logCalibrationInfo()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/ |
H A D | p2p-nfc.py | 11 import time namespace 491 time.sleep(0.025) 493 time.sleep(0.5)
|