Home
last modified time | relevance | path

Searched refs:time (Results 876 - 900 of 3694) sorted by relevance

1...<<31323334353637383940>>...148

/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/p2p/
H A Dp2p_flush.py9 import time namespace
162 time.sleep(int(p2p_flush_test.timeout))
H A Dp2p_listen.py9 import time namespace
177 time.sleep(int(p2p_listen_test.timeout))
H A Dp2p_stop_find.py7 import time namespace
168 time.sleep(int(p2p_stop_find_test.timeout))
/drivers/peripheral/audio/test/unittest/common/render/
H A Daudio_render_common_test.cpp404 struct AudioTimeStamp time; in HWTEST_F() local
405 EXPECT_EQ(HDF_ERR_INVALID_OBJECT, render_->GetRenderPosition(nullptr, &frames, &time)); in HWTEST_F()
410 struct AudioTimeStamp time; in HWTEST_F() local
411 EXPECT_EQ(HDF_ERR_INVALID_PARAM, render_->GetRenderPosition(render_, nullptr, &time)); in HWTEST_F()
423 struct AudioTimeStamp time; in HWTEST_F() local
424 time.tvSec = 0; in HWTEST_F()
425 time.tvNSec = 0; in HWTEST_F()
426 int32_t ret = render_->GetRenderPosition(render_, &frames, &time); in HWTEST_F()
434 struct AudioTimeStamp time; in HWTEST_F() local
447 ret = render_->GetRenderPosition(render_, &frames, &time); in HWTEST_F()
[all...]
/third_party/ffmpeg/libavformat/
H A Dsegment.c29 #include <time.h>
42 #include "libavutil/time.h"
74 int segment_idx_wrap_nb; ///< number of time the index has wraped
85 int use_clocktime; ///< flag to cut segments at regular clock time
86 int64_t clocktime_offset; //< clock offset for cutting the segments at regular clock time
88 int64_t last_val; ///< remember last time for wrap around detection
95 int64_t time; ///< segment duration member
202 time(&now0); in set_segment_filename()
490 av_log(log_ctx, AV_LOG_ERROR, "Empty time specification in times list %s\n", in parse_times()
498 "Invalid time duratio in parse_times()
[all...]
/third_party/openssl/ssl/
H A Dssl_sess.c65 overflow = (_type_)tmax - (_type_)(_ss_)->time; \
71 (_ss_)->calc_timeout = (_ss_)->time + (_ss_)->timeout; \
153 ss->time = time(NULL); in SSL_SESSION_new()
338 * complete in one iteration pretty much "most" of the time (btw:
683 if (sess_timedout(time(NULL), ret)) { in ssl_get_prev_session()
779 * the session to the SSL_SESSION_list at this time in SSL_CTX_add_session()
784 /* Adjust last used time, and add back into the cache at the appropriate spot */ in SSL_CTX_add_session()
786 c->time = time(NUL in SSL_CTX_add_session()
[all...]
/third_party/skia/third_party/externals/angle2/src/third_party/libXNVCtrl/
H A DNVCtrl.c1139 re->attribute_changed.time = event->u.attribute_changed.time; in wire_to_event()
1155 reTarget->attribute_changed.time = in wire_to_event()
1156 eventTarget->u.attribute_changed.time; in wire_to_event()
1178 reTargetAvailability->attribute_changed.time = in wire_to_event()
1179 eventTarget->u.availability_changed.time; in wire_to_event()
1202 reTargetString->attribute_changed.time = in wire_to_event()
1203 eventTarget->u.attribute_changed.time; in wire_to_event()
1222 reTargetBinary->attribute_changed.time = in wire_to_event()
1223 eventTarget->u.attribute_changed.time; in wire_to_event()
[all...]
/third_party/python/Lib/test/
H A Dtest_zipimport.py7 import time namespace
48 NOW = time.time()
115 zinfo = ZipInfo(name, time.localtime(mtime))
451 zinfo = ZipInfo(name, time.localtime(mtime))
523 zinfo = ZipInfo(name, time.localtime(mtime))
538 zinfo = ZipInfo(name, time.localtime(mtime))
564 zinfo = ZipInfo(name, time.localtime(mtime))
745 zinfo = ZipInfo(TESTMOD + ".py", time.localtime(NOW))
756 zinfo = ZipInfo(TESTMOD + ".py", time
[all...]
H A Dtest_asyncore.py6 import time namespace
79 start = time.monotonic()
80 while n > 0 and time.monotonic() - start < 3.0:
89 time.sleep(0.01)
346 time.sleep(0.2)
353 # give time for socket to connect
354 time.sleep(0.1)
518 time.sleep(timeout)
H A Dtest_smtplib.py13 import time namespace
217 # allow some time for the client to read the result
218 time.sleep(0.5)
390 time.sleep(0.01)
406 time.sleep(0.01)
423 time.sleep(0.01)
446 time.sleep(0.01)
468 time.sleep(0.01)
484 time.sleep(0.01)
503 time
[all...]
/third_party/python/Lib/
H A Dmailbox.py10 import time namespace
289 self._last_read = 0 # Records last time we read cur/new
482 now = time.time()
492 now = time.time()
529 if time.time() - self._last_read > 2 + self._skewfactor:
548 self._last_read = time.time()
[all...]
/third_party/toybox/toys/pending/
H A Ddhcpd.c216 uint32_t time; member
248 uint32_t max_lease_sec; // maximum lease time (host order)
249 uint32_t min_lease_sec; // minimum lease time a client can request
1205 curr = timestamp = time(NULL); in write_leasefile()
1242 curr = timestamp = time(NULL); in write_lease6file()
1268 // Update max lease time from options.
1280 // Returns lease time for client.
1283 uint32_t now = time(NULL); in get_lease()
1337 if (((int32_t)(((dyn_lease*) listdls->arg)->expires) - time(NULL)) < 0) in verifyip_in_lease()
1357 uint32_t now = time(NUL in addip_to_lease()
[all...]
/drivers/peripheral/audio/hdi_service/primary_impl/vdi_src/
H A Daudio_capture_vdi.c127 int32_t AudioGetCapturePositionVdi(struct IAudioCapture *capture, uint64_t *frames, struct AudioTimeStamp *time) in AudioGetCapturePositionVdi() argument
131 CHECK_NULL_PTR_RETURN_VALUE(time, HDF_ERR_INVALID_PARAM); in AudioGetCapturePositionVdi()
139 int32_t ret = vdiCapture->GetCapturePosition(vdiCapture, frames, (struct AudioTimeStampVdi *)time); in AudioGetCapturePositionVdi()
524 int32_t AudioCaptureGetMmapPositionVdi(struct IAudioCapture *capture, uint64_t *frames, struct AudioTimeStamp *time) in AudioCaptureGetMmapPositionVdi() argument
528 CHECK_NULL_PTR_RETURN_VALUE(time, HDF_ERR_INVALID_PARAM); in AudioCaptureGetMmapPositionVdi()
545 time->tvSec = vdiTime.tvSec; in AudioCaptureGetMmapPositionVdi()
546 time->tvNSec = vdiTime.tvNSec; in AudioCaptureGetMmapPositionVdi()
/third_party/nghttp2/integration-tests/
H A Dserver_tester.go23 "time"
222 time.Sleep(50 * time.Millisecond)
291 case <-time.After(10 * time.Second):
318 case <-time.After(5 * time.Second):
423 ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/
H A D35-1-buildonly.c12 #include <time.h>
H A D35-2-buildonly.c11 #include <time.h>
H A D27-1-buildonly.c14 #include <time.h>
H A D30-1-buildonly.c14 #include <time.h>
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DVTimeZone.java26 * <code>VTimeZone</code> instance from a time zone ID supported by <code>TimeZone</code>.
29 * from RFC2445 VTIMEZONE data stream, which allows you to calculate time
43 * Create a <code>VTimeZone</code> instance by the time zone ID.
45 * @param tzid The time zone ID, such as America/New_York
46 * @return A <code>VTimeZone</code> initialized by the time zone ID, or null
227 * Writes RFC2445 VTIMEZONE data for this time zone
270 * the specified start time.
273 * @param start The start time
280 // Extract rules applicable to dates after the start time in write()
299 * Some common iCalendar implementations can only handle a single time
313 writeSimple(Writer writer, long time) writeSimple() argument
1526 writeZonePropsByTime(Writer writer, boolean isDst, String tzname, int fromOffset, int toOffset, long time, boolean withRDATE) writeZonePropsByTime() argument
1920 getDateTimeString(long time) getDateTimeString() argument
1944 getUTCDateTimeString(long time) getUTCDateTimeString() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DVTimeZone.java27 * <code>VTimeZone</code> instance from a time zone ID supported by <code>TimeZone</code>.
30 * from RFC2445 VTIMEZONE data stream, which allows you to calculate time
44 * Create a <code>VTimeZone</code> instance by the time zone ID.
46 * @param tzid The time zone ID, such as America/New_York
47 * @return A <code>VTimeZone</code> initialized by the time zone ID, or null
210 * Writes RFC2445 VTIMEZONE data for this time zone
251 * the specified start time.
254 * @param start The start time
259 // Extract rules applicable to dates after the start time in write()
278 * Some common iCalendar implementations can only handle a single time
290 writeSimple(Writer writer, long time) writeSimple() argument
1497 writeZonePropsByTime(Writer writer, boolean isDst, String tzname, int fromOffset, int toOffset, long time, boolean withRDATE) writeZonePropsByTime() argument
1891 getDateTimeString(long time) getDateTimeString() argument
1915 getUTCDateTimeString(long time) getUTCDateTimeString() argument
[all...]
/third_party/musl/src/time/
H A Ddifftime.c1 #include <time.h>
H A Dasctime.c1 #include <time.h>
/third_party/musl/porting/liteos_a/kernel/src/time/
H A Dasctime.c1 #include <time.h>
/third_party/musl/porting/liteos_m/kernel/src/time/
H A Dasctime.c1 #include <time.h>
/third_party/musl/porting/uniproton/kernel/src/time/
H A Dasctime.c1 #include <time.h>

Completed in 20 milliseconds

1...<<31323334353637383940>>...148