Home
last modified time | relevance | path

Searched refs:seconds (Results 1 – 21 of 21) sorted by relevance

/developtools/profiler/device/base/include/
Di_semaphore.h26 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/
Dstd_semaphore.cpp46 bool StdSemaphore::TimedWait(int seconds, int nanoSeconds) in TimedWait() argument
51 timePoint += std::chrono::seconds(seconds); in TimedWait()
Dposix_semaphore.cpp43 bool PosixSemaphore::TimedWait(int seconds, int nanoSeconds) in TimedWait() argument
47 ts.tv_sec += seconds; in TimedWait()
Dpthread_semaphore.cpp54 bool PthreadSemaphore::TimedWait(int seconds, int nanoSeconds) in TimedWait() argument
60 ts.tv_sec += seconds; in TimedWait()
Dposix_semaphore.h28 bool TimedWait(int seconds, int nanoSeconds) override;
Dpthread_semaphore.h29 bool TimedWait(int seconds, int nanoSeconds) override;
Dstd_semaphore.h29 bool TimedWait(int seconds, int nanoSeconds) override;
/developtools/integration_verification/DeployDevice/src/util/
Dtime_info.py83 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/
DTimeUtils.ts31 let seconds = t.getSeconds()
39 's': seconds
/developtools/profiler/protos/types/plugins/bytrace_plugin/
Dbytrace_plugin_config.proto20 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/
Dbytrace_plugin_config.proto20 uint32 time = 3; // Sets the bytrace running duration in seconds (5s by default)
/developtools/integration_verification/cases/daily/mini_system/
DL0_mini_system_test.py63 while (time_end - time_start).seconds < timeout:
DL1_mini_system_test.py62 while (time_end - time_start).seconds < timeout:
/developtools/hiperf/demo/cpp/
Dhiperf_example_cmd.cpp145 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/
Dhttp_server.cpp100 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/
DREADME.md44 | -t n, --time n | Sets the ByTrace uptime in seconds, which depends on the time required for analy…
/developtools/hiperf/
DREADME.md219 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/
Dmain.cpp282 std::this_thread::sleep_for(std::chrono::seconds(KEEP_SESSION_SLEEP_SECOND)); in DoCapture()
/developtools/hdc/src/host/
Dclient.cpp488 std::this_thread::sleep_for(std::chrono::seconds(timeout)); in WaitFor()
/developtools/hiperf/src/
Dsubcommand_record.cpp436 const auto endTime = startTime + std::chrono::seconds(waitAppTimeOut); in GetAppPackagePid()
/developtools/hdc/src/common/
Dbase.cpp82 time_t sSinceUnix0 = duration_cast<seconds>(sinceUnix0).count(); in GetLogLevelAndTime()