Home
last modified time | relevance | path

Searched refs:time (Results 626 - 650 of 5128) sorted by relevance

1...<<21222324252627282930>>...206

/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_trylock/
H A Dtestfrmw.c29 #include <time.h>
54 nw = time(NULL); in output()
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/sem_getvalue/
H A Dtestfrmw.c29 #include <time.h>
54 nw = time(NULL); in output()
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/
H A Dtestfrmw.c29 #include <time.h>
54 nw = time(NULL); in output()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_gettime/
H A D2-1.c16 #include <time.h>
17 #include <sys/time.h>
H A D1-2.c16 #include <time.h>
17 #include <sys/time.h>
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/
H A D3-1.c9 /* This tests case will open a locked semaphore. The time will tick 5 times
10 * until the absolute time passes. The sempahore will unlock, then the
23 #include <time.h>
44 ts.tv_sec = time(NULL); in main()
H A D2-2.c24 #include <time.h>
42 ts.tv_sec = time(NULL) + 1; in main()
H A D6-2.c22 #include <time.h>
41 ts.tv_sec = time(NULL); in main()
H A D7-1.c9 /* This tests case will open a locked semaphore. The time will tick 5 times
10 * until the absolute time passes. The sempahore will unlock, then the
24 #include <time.h>
43 ts.tv_sec = time(NULL); in main()
H A D4-1.c21 #include <time.h>
39 ts.tv_sec = time(NULL) + 1; in main()
H A D6-1.c22 #include <time.h>
39 ts.tv_sec = time(NULL); in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/testfrmw/
H A Dtestfrmw.c29 #include <time.h>
51 nw = time(NULL); in output()
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cancel/
H A Dtestfrmw.c29 #include <time.h>
54 nw = time(NULL); in output()
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/fork/
H A Dtestfrmw.c29 #include <time.h>
54 nw = time(NULL); in output()
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_wait/
H A Dtestfrmw.c29 #include <time.h>
54 nw = time(NULL); in output()
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_once/
H A Dtestfrmw.c29 #include <time.h>
54 nw = time(NULL); in output()
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_self/
H A Dtestfrmw.c29 #include <time.h>
54 nw = time(NULL); in output()
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/
H A Dtestfrmw.c29 #include <time.h>
54 nw = time(NULL); in output()
/third_party/musl/compat/time32/
H A Dgetitimer_time32.c2 #include <time.h>
3 #include <sys/time.h>
/third_party/skia/third_party/externals/swiftshader/tests/regres/shell/
H A Dshell_windows.go20 "time"
26 func Exec(timeout time.Duration, exe, wd string, env []string, args ...string) ([]byte, error) {
42 case <-time.NewTimer(timeout).C:
/third_party/protobuf/src/google/protobuf/stubs/
H A Dtime.h51 // negative to represent time before 1970-01-01) to DateTime. Returns false
54 bool PROTOBUF_EXPORT SecondsToDateTime(int64 seconds, DateTime* time);
57 bool PROTOBUF_EXPORT DateTimeToSeconds(const DateTime& time, int64* seconds);
61 // Formats a time string in RFC3339 format.
69 // Parses a time string. This method accepts RFC3339 date/time string with UTC
/foundation/barrierfree/accessibility/frameworks/acfwk/src/
H A Daccessibility_config_impl.cpp865 Accessibility::RetError AccessibilityConfig::Impl::SetMouseAutoClick(const int32_t time) in SetMouseAutoClick() argument
867 HILOG_INFO("time = [%{public}d]", time); in SetMouseAutoClick()
873 return GetServiceProxy()->SetMouseAutoClick(time); in SetMouseAutoClick()
898 Accessibility::RetError AccessibilityConfig::Impl::GetMouseAutoClick(int32_t &time) in GetMouseAutoClick() argument
906 Accessibility::RetError ret = GetServiceProxy()->GetMouseAutoClick(time); in GetMouseAutoClick()
907 HILOG_INFO("time = [%{public}d]", time); in GetMouseAutoClick()
1065 const std::vector<std::shared_ptr<AccessibilityConfigObserver>> &observers, const uint32_t time) in NotifyIgnoreRepeatClickTimeChanged()
1067 HILOG_INFO("daltonizationColorFilter = [%{public}u]", time); in NotifyIgnoreRepeatClickTimeChanged()
1064 NotifyIgnoreRepeatClickTimeChanged( const std::vector<std::shared_ptr<AccessibilityConfigObserver>> &observers, const uint32_t time) NotifyIgnoreRepeatClickTimeChanged() argument
1193 SetClickResponseTime(const CLICK_RESPONSE_TIME time) SetClickResponseTime() argument
1215 SetIgnoreRepeatClickTime(const IGNORE_REPEAT_CLICK_TIME time) SetIgnoreRepeatClickTime() argument
1345 GetClickResponseTime(CLICK_RESPONSE_TIME &time) GetClickResponseTime() argument
1373 GetIgnoreRepeatClickTime(IGNORE_REPEAT_CLICK_TIME &time) GetIgnoreRepeatClickTime() argument
1691 OnAccessibleAbilityManagerIgnoreRepeatClickTimeChanged(const uint32_t time) OnAccessibleAbilityManagerIgnoreRepeatClickTimeChanged() argument
[all...]
/third_party/python/Lib/test/
H A Dtest_concurrent_futures.py20 import time namespace
66 time.sleep(t)
70 time.sleep(t)
87 time.sleep(0.1) # let some futures be scheduled
124 self.t1 = time.monotonic()
139 dt = time.monotonic() - self.t1
261 t1 = time.monotonic()
263 if time.monotonic() - t1 > 5:
265 time.sleep(0.01)
303 from time impor
[all...]
/foundation/multimedia/av_codec/test/moduletest/audio_decoder/NativeAPI/
H A DNativeStablityTest.cpp18 #include <sys/time.h>
204 time_t startTime = time(nullptr); in RunLongTimeFlush()
219 curTime = time(nullptr); in RunLongTimeFlush()
233 time_t startTime = time(nullptr); in RunLongTimeReset()
248 curTime = time(nullptr); in RunLongTimeReset()
263 time_t startTime = time(nullptr); in RunLongTimeStop()
278 curTime = time(nullptr); in RunLongTimeStop()
309 cout << "2000 times finish, run time is " << totalTime << endl; in HWTEST_F()
333 cout << "2000 times finish, run time is " << totalTime << endl; in HWTEST_F()
358 cout << "2000 times finish, run time i in HWTEST_F()
[all...]
/foundation/communication/dsoftbus/core/common/dfx/hidumper_adapter/
H A Dsoftbus_hidumper_util.c20 #include <time.h>
251 static void GetLocalTime(char* time, uint64_t timestamp) in GetLocalTime() argument
259 (void)strftime(time, SOFTBUS_ALARM_TIME_LEN, "%Y-%m-%d %H:%M:%S", tmInfo); in GetLocalTime()
673 GetLocalTime(record->time, srcRecord[i].time / TIME_THOUSANDS_FACTOR); in OnQueryAlarm()
684 static void SoftBusEventQueryInfo(int time, HiSysEventQueryParam* queryParam) in SoftBusEventQueryInfo() argument
688 queryArg.beginTime = queryArg.endTime - time * MINUTE_TIME; in SoftBusEventQueryInfo()
947 int32_t SoftBusQueryStatsInfo(int time, SoftBusStatsResult* result) in SoftBusQueryStatsInfo() argument
952 if (time <= SOFTBUS_ZERO || time > SEVEN_DAY_MINUT in SoftBusQueryStatsInfo()
972 SoftBusQueryAlarmInfo(int time, int type, SoftBusAlarmEvtResult* result) SoftBusQueryAlarmInfo() argument
[all...]

Completed in 11 milliseconds

1...<<21222324252627282930>>...206