Home
last modified time | relevance | path

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

/arkcompiler/toolchain/tooling/test/utils/
Dtest_util.h60 WaitForEvent(DebugEvent::BREAKPOINT, predicate, onSuccess); in WaitForBreakpoint()
66 return WaitForEvent(DebugEvent::DROPFRAME, predicate, [] {}); in WaitForDropframe()
72 return WaitForEvent(DebugEvent::CHECK_COMPLETE, predicate, [] {}); in WaitForCheckComplete()
77 return WaitForEvent(DebugEvent::VM_DEATH, in WaitForExit()
91 WaitForEvent(DebugEvent::STEP_COMPLETE, predicate, onSuccess); in WaitForStepComplete()
97 return WaitForEvent(DebugEvent::EXCEPTION, predicate, [] {}); in WaitForException()
102 return WaitForEvent(DebugEvent::VM_START, in WaitForInit()
111 return WaitForEvent(DebugEvent::LOAD_MODULE, predicate, [] {}); in WaitForLoadModule()
198 static bool WaitForEvent(DebugEvent event, Predicate predicate, OnSuccessAction action) in WaitForEvent() function