/developtools/profiler/device/base/include/ |
D | i_semaphore.h | 26 bool TimedWait(int seconds) in TimedWait() argument 28 return TimedWait(seconds, 0); in TimedWait() 30 virtual bool TimedWait(int seconds, int nanoSeconds) = 0;
|
/developtools/profiler/device/base/src/ |
D | std_semaphore.cpp | 46 bool StdSemaphore::TimedWait(int seconds, int nanoSeconds) in TimedWait() argument 51 timePoint += std::chrono::seconds(seconds); in TimedWait()
|
D | posix_semaphore.cpp | 43 bool PosixSemaphore::TimedWait(int seconds, int nanoSeconds) in TimedWait() argument 47 ts.tv_sec += seconds; in TimedWait()
|
D | pthread_semaphore.cpp | 54 bool PthreadSemaphore::TimedWait(int seconds, int nanoSeconds) in TimedWait() argument 60 ts.tv_sec += seconds; in TimedWait()
|
D | posix_semaphore.h | 28 bool TimedWait(int seconds, int nanoSeconds) override;
|
D | pthread_semaphore.h | 29 bool TimedWait(int seconds, int nanoSeconds) override;
|
D | std_semaphore.h | 29 bool TimedWait(int seconds, int nanoSeconds) override;
|
/developtools/integration_verification/DeployDevice/src/util/ |
D | time_info.py | 83 def timeout(seconds = 300): argument 99 thd.join(seconds) 103 raise Timeout(u"function run too long, timeout %d seconds." % seconds) 106 logger.info(u"function run too long, timeout %d seconds." % seconds)
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/utils/ |
D | TimeUtils.ts | 31 let seconds = t.getSeconds() 39 's': seconds
|
/developtools/profiler/protos/types/plugins/bytrace_plugin/ |
D | bytrace_plugin_config.proto | 20 uint32 time = 3; // Sets the bytrace running duration in seconds (5s by default)
|
/developtools/profiler/host/smartperf/trace_streamer/src/protos/types/plugins/bytrace_plugin/ |
D | bytrace_plugin_config.proto | 20 uint32 time = 3; // Sets the bytrace running duration in seconds (5s by default)
|
/developtools/integration_verification/cases/daily/mini_system/ |
D | L0_mini_system_test.py | 63 while (time_end - time_start).seconds < timeout:
|
D | L1_mini_system_test.py | 62 while (time_end - time_start).seconds < timeout:
|
/developtools/hiperf/demo/cpp/ |
D | hiperf_example_cmd.cpp | 145 auto sleepTime = now + seconds(1); in LoopFunction() 150 sleepTime = std::chrono::steady_clock::now() + seconds(1); in LoopFunction()
|
/developtools/profiler/host/smartperf/trace_streamer/src/rpc/ |
D | http_server.cpp | 100 std::this_thread::sleep_for(std::chrono::seconds(1)); in Run() 145 std::this_thread::sleep_for(std::chrono::seconds(1)); in Run()
|
/developtools/bytrace/ |
D | README.md | 44 | -t n, --time n | Sets the ByTrace uptime in seconds, which depends on the time required for analy…
|
/developtools/hiperf/ |
D | README.md | 219 Monitor the performance counter of the process on CPU 0 for 3 seconds. 234 Sample all processes in the system for 3 seconds and display detailed log information.
|
/developtools/profiler/device/cmds/src/ |
D | main.cpp | 282 std::this_thread::sleep_for(std::chrono::seconds(KEEP_SESSION_SLEEP_SECOND)); in DoCapture()
|
/developtools/hdc/src/host/ |
D | client.cpp | 488 std::this_thread::sleep_for(std::chrono::seconds(timeout)); in WaitFor()
|
/developtools/hiperf/src/ |
D | subcommand_record.cpp | 436 const auto endTime = startTime + std::chrono::seconds(waitAppTimeOut); in GetAppPackagePid()
|
/developtools/hdc/src/common/ |
D | base.cpp | 82 time_t sSinceUnix0 = duration_cast<seconds>(sinceUnix0).count(); in GetLogLevelAndTime()
|