Home
last modified time | relevance | path

Searched refs:timeoutSec (Results 1 – 9 of 9) sorted by relevance

/test/xts/acts/kernel_lite/utils/
Dutils.cpp126 int RunElf(const char *fname, char * const argv[], char * const envp[], int timeoutSec) in RunElf() argument
142 if (timeoutSec > 0) { in RunElf()
143 struct timespec time1 = { timeoutSec, 0 }; in RunElf()
Dutils.h135 int RunElf(const char* fname, char* const argv[], char* const envp[], int timeoutSec = 5);
/test/xts/hats/kernel/posix_interface/interface_gn/utils/
Dutils.h93 int RunElf(const char* fname, char* const argv[], char* const envp[], int timeoutSec = 5);
Dutils.cpp194 int RunElf(const char *fname, char * const argv[], char * const envp[], int timeoutSec) in RunElf() argument
211 if (timeoutSec > 0) { in RunElf()
212 struct timespec time1 = { timeoutSec, 0 }; in RunElf()
/test/testfwk/arkxtest/uitest/core/
Dui_controller.h61 virtual bool WaitForUiSteady(uint32_t idleThresholdMs, uint32_t timeoutSec) const in WaitForUiSteady() argument
Dui_driver.h81 bool WaitForUiSteady(uint32_t idleThresholdMs, uint32_t timeoutSec, ApiCallErr &error);
Dui_driver.cpp458 bool UiDriver::WaitForUiSteady(uint32_t idleThresholdMs, uint32_t timeoutSec, ApiCallErr &error) in WaitForUiSteady() argument
463 return uiController_->WaitForUiSteady(idleThresholdMs, timeoutSec); in WaitForUiSteady()
/test/xts/acts/kernel_lite/net_posix/src/
DActsNetTest.cpp504 static int SelectServerForFork(unsigned int timeoutSec) in SelectServerForFork() argument
518 struct timeval timev = {.tv_sec = timeoutSec, .tv_usec = 0}; in SelectServerForFork()
597 static int PollServerForFork(int timeoutSec) in PollServerForFork() argument
617 ret = poll(fds, fdCount, timeoutSec); in PollServerForFork()
/test/xts/acts/communication_lite/lwip_posix/src/
DActsLwipTest.cpp408 static int SelectServerForFork(unsigned int timeoutSec) in SelectServerForFork() argument
421 long timeout = static_cast<long>(timeoutSec); in SelectServerForFork()