Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Dv8-debugger.cc384 if (m_stepIntoAsyncCallback) { in scheduleStepIntoAsync()
385 m_stepIntoAsyncCallback->sendFailure(Response::Error( in scheduleStepIntoAsync()
389 m_stepIntoAsyncCallback = std::move(callback); in scheduleStepIntoAsync()
493 if (m_stepIntoAsyncCallback) { in handleProgramBreak()
494 m_stepIntoAsyncCallback->sendFailure( in handleProgramBreak()
496 m_stepIntoAsyncCallback.reset(); in handleProgramBreak()
1023 if (!m_stepIntoAsyncCallback) return; in asyncTaskCandidateForStepping()
1028 m_stepIntoAsyncCallback->sendSuccess(); in asyncTaskCandidateForStepping()
1029 m_stepIntoAsyncCallback.reset(); in asyncTaskCandidateForStepping()
Dv8-debugger.h229 std::unique_ptr<ScheduleStepIntoAsyncCallback> m_stepIntoAsyncCallback; variable