/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 | posix_semaphore.h | 28 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/hdc/src/common/ |
D | circle_buffer.cpp | 90 auto duration = std::chrono::duration_cast<std::chrono::seconds>(end - begin); in FreeMemory() 134 timerCv_.wait_for(lock, std::chrono::seconds(1)); in TimerSleep()
|
/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/smartperf_host/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/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/profiler/hiebpf/test/ |
D | hiebpf_test_demo.cpp | 119 std::chrono::seconds timeOut{time}; in ThreadFuncCpp()
|
/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/smartperf_host/trace_streamer/sdk/dubai_sdk/rpc/ |
D | http_server.cpp | 99 std::this_thread::sleep_for(std::chrono::seconds(1)); in Run() 144 std::this_thread::sleep_for(std::chrono::seconds(1)); in Run()
|
/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/smartperf_host/trace_streamer/sdk/demo_sdk/rpc/ |
D | http_server.cpp | 99 std::this_thread::sleep_for(std::chrono::seconds(1)); in Run() 144 std::this_thread::sleep_for(std::chrono::seconds(1)); in Run()
|
/developtools/profiler/device/plugins/native_daemon/include/ |
D | stack_preprocess.h | 126 std::chrono::seconds statisticsInterval_ {0};
|
/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/smartperf_host/trace_streamer/src/rpc/ |
D | http_server.cpp | 110 std::this_thread::sleep_for(std::chrono::seconds(1)); in Run() 149 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 | 286 std::this_thread::sleep_for(std::chrono::seconds(KEEP_SESSION_SLEEP_SECOND)); in DoCapture()
|
/developtools/profiler/device/plugins/native_daemon/src/ |
D | stack_preprocess.cpp | 64 statisticsInterval_ = std::chrono::seconds(hookConfig_.statistics_interval()); in StackPreprocess() 282 …auto elapsedTime = std::chrono::duration_cast<std::chrono::seconds>(currentTime - lastStatisticsTi… in TakeResults()
|
/developtools/hdc/src/host/ |
D | client.cpp | 641 std::this_thread::sleep_for(std::chrono::seconds(timeout)); in WaitFor()
|