Searched refs:idleThresholdMs (Results 1 - 8 of 8) sorted by relevance
/test/ostest/wukong/common/src/ |
H A D | event_monitor.cpp | 55 bool EventMonitor::WaitEventIdle(uint32_t idleThresholdMs, uint32_t timeoutMs) in WaitEventIdle() argument 61 if (currentMs - lastEventMillis_.load() >= idleThresholdMs) { in WaitEventIdle() 65 return WaitEventIdle(idleThresholdMs, timeoutMs - sliceMs); in WaitEventIdle()
|
H A D | component_manager.cpp | 53 bool WaitEventIdle(uint32_t idleThresholdMs, uint32_t timeoutMs); 102 bool ComponentEventMonitor::WaitEventIdle(uint32_t idleThresholdMs, uint32_t timeoutMs) in WaitEventIdle() argument
|
/test/ostest/wukong/common/include/ |
H A D | event_monitor.h | 43 bool WaitEventIdle(uint32_t idleThresholdMs, uint32_t timeoutMs);
|
/test/testfwk/arkxtest/uitest/core/ |
H A D | ui_controller.h | 61 virtual bool WaitForUiSteady(uint32_t idleThresholdMs, uint32_t timeoutSec) const in WaitForUiSteady() argument
|
H A D | ui_driver.h | 82 bool WaitForUiSteady(uint32_t idleThresholdMs, uint32_t timeoutSec, ApiCallErr &error);
|
H A D | ui_driver.cpp | 463 bool UiDriver::WaitForUiSteady(uint32_t idleThresholdMs, uint32_t timeoutSec, ApiCallErr &error) in WaitForUiSteady() argument 468 return uiController_->WaitForUiSteady(idleThresholdMs, timeoutSec); in WaitForUiSteady()
|
/test/testfwk/arkxtest/uitest/server/ |
H A D | system_ui_controller.h | 35 bool WaitForUiSteady(uint32_t idleThresholdMs, uint32_t timeoutMs) const override;
|
H A D | system_ui_controller.cpp | 78 bool WaitEventIdle(uint32_t idleThresholdMs, uint32_t timeoutMs); 241 const auto idleThresholdMs = 10000; in WaitScrollCompelete() local 243 while (currentMs - lastScrollBeginEventMillis_.load() < idleThresholdMs) { in WaitScrollCompelete() 255 bool UiEventMonitor::WaitEventIdle(uint32_t idleThresholdMs, uint32_t timeoutMs) in WaitEventIdle() argument 261 if (currentMs - lastEventMillis_.load() >= idleThresholdMs) { in WaitEventIdle() 269 return WaitEventIdle(idleThresholdMs, timeoutMs - sliceMs); in WaitEventIdle() 759 bool SysUiController::WaitForUiSteady(uint32_t idleThresholdMs, uint32_t timeoutMs) const in WaitForUiSteady() argument 761 return g_monitorInstance_->WaitEventIdle(idleThresholdMs, timeoutMs); in WaitForUiSteady()
|
Completed in 5 milliseconds