Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Dv8-debugger.cc59 m_pauseOnExceptionsState(v8::DebugInterface::NoBreakOnException) {} in V8Debugger()
67 v8::DebugInterface::SetDebugEventListener(m_isolate, in enable()
71 v8::DebugInterface::GetDebugContext(m_isolate)); in enable()
72 v8::DebugInterface::ChangeBreakOnException( in enable()
73 m_isolate, v8::DebugInterface::NoBreakOnException); in enable()
74 m_pauseOnExceptionsState = v8::DebugInterface::NoBreakOnException; in enable()
85 v8::DebugInterface::SetDebugEventListener(m_isolate, nullptr); in disable()
121 v8::PersistentValueVector<v8::DebugInterface::Script> scripts(m_isolate); in getCompiledScripts()
122 v8::DebugInterface::GetLoadedScripts(m_isolate, scripts); in getCompiledScripts()
125 v8::Local<v8::DebugInterface::Script> script = scripts.Get(i); in getCompiledScripts()
[all …]
Dv8-debugger-script.h44 v8::Local<v8::DebugInterface::Script> script,
70 const v8::DebugInterface::Location& start,
71 const v8::DebugInterface::Location& end,
72 std::vector<v8::DebugInterface::Location>* locations);
90 v8::Global<v8::DebugInterface::Script> m_script;
Dv8-debugger.h45 v8::DebugInterface::ExceptionBreakState getPauseOnExceptionsState();
46 void setPauseOnExceptionsState(v8::DebugInterface::ExceptionBreakState);
112 static void v8DebugEventCallback(const v8::DebugInterface::EventDetails&);
115 void handleV8DebugEvent(const v8::DebugInterface::EventDetails&);
150 v8::DebugInterface::ExceptionBreakState m_pauseOnExceptionsState;
Dv8-debugger-script.cc71 v8::Local<v8::DebugInterface::Script> script, in V8DebuggerScript()
156 const v8::DebugInterface::Location& start, in getPossibleBreakpoints()
157 const v8::DebugInterface::Location& end, in getPossibleBreakpoints()
158 std::vector<v8::DebugInterface::Location>* locations) { in getPossibleBreakpoints()
160 v8::Local<v8::DebugInterface::Script> script = m_script.Get(m_isolate); in getPossibleBreakpoints()
Dinjected-script.h123 v8::DebugInterface::ExceptionBreakState setPauseOnExceptionsState(
124 v8::DebugInterface::ExceptionBreakState);
131 v8::DebugInterface::ExceptionBreakState m_previousPauseOnExceptionsState;
Dv8-debugger-agent-impl.cc164 v8::DebugInterface::NoBreakOnException); in disable()
202 int pauseState = v8::DebugInterface::NoBreakOnException; in restore()
368 v8::DebugInterface::Location v8Start(start->getLineNumber(), in getPossibleBreakpoints()
370 v8::DebugInterface::Location v8End; in getPossibleBreakpoints()
379 v8End = v8::DebugInterface::Location(line, column); in getPossibleBreakpoints()
384 std::vector<v8::DebugInterface::Location> v8Locations; in getPossibleBreakpoints()
702 v8::DebugInterface::ExceptionBreakState pauseState; in setPauseOnExceptions()
704 pauseState = v8::DebugInterface::NoBreakOnException; in setPauseOnExceptions()
706 pauseState = v8::DebugInterface::BreakOnAnyException; in setPauseOnExceptions()
708 pauseState = v8::DebugInterface::BreakOnUncaughtException; in setPauseOnExceptions()
[all …]
Dinjected-script.cc421 m_previousPauseOnExceptionsState(v8::DebugInterface::NoBreakOnException), in Scope()
451 setPauseOnExceptionsState(v8::DebugInterface::NoBreakOnException); in ignoreExceptionsAndMuteConsole()
454 v8::DebugInterface::ExceptionBreakState
456 v8::DebugInterface::ExceptionBreakState newState) { in setPauseOnExceptionsState()
458 v8::DebugInterface::ExceptionBreakState presentState = in setPauseOnExceptionsState()
Djava-script-call-frame.cc132 v8::DebugInterface::SetLiveEditEnabled(m_isolate, true); in restart()
135 v8::DebugInterface::SetLiveEditEnabled(m_isolate, false); in restart()
/external/skia/tools/gpu/gl/debug/
DDebugGLTestContext.cpp33 class DebugInterface : public GrGLTestInterface { class
35 DebugInterface() in DebugInterface() function in __anon90b55fab0111::DebugInterface
56 ~DebugInterface() override { in ~DebugInterface()
1174 DebugInterface::Create DebugInterface::gFactoryFunc[kObjTypeCount] = {
1185 const char* DebugInterface::kExtensions[] = {
1198 this->init(new DebugInterface()); in DebugGLContext()
/external/v8/src/debug/
Ddebug-interface.h14 class DebugInterface {
Ddebug.h294 class EventDetailsImpl : public v8::DebugInterface::EventDetails {
Ddebug.cc1896 v8::DebugInterface::EventCallback callback = in CallEventCallback()
1897 FUNCTION_CAST<v8::DebugInterface::EventCallback>( in CallEventCallback()
/external/v8/src/
Dapi.cc8829 bool DebugInterface::SetDebugEventListener(Isolate* isolate, in SetDebugEventListener()
8830 DebugInterface::EventCallback that, in SetDebugEventListener()
8843 Local<Context> DebugInterface::GetDebugContext(Isolate* isolate) { in GetDebugContext()
8847 MaybeLocal<Value> DebugInterface::Call(Local<Context> context, in Call()
8853 void DebugInterface::SetLiveEditEnabled(Isolate* isolate, bool enable) { in SetLiveEditEnabled()
8857 void DebugInterface::DebugBreak(Isolate* isolate) { in DebugBreak()
8861 void DebugInterface::CancelDebugBreak(Isolate* isolate) { in CancelDebugBreak()
8865 MaybeLocal<Array> DebugInterface::GetInternalProperties(Isolate* isolate, in GetInternalProperties()
8870 void DebugInterface::ChangeBreakOnException(Isolate* isolate, in ChangeBreakOnException()
8879 void DebugInterface::PrepareStep(Isolate* v8_isolate, StepAction action) { in PrepareStep()
[all …]
Dapi.h113 V(DebugInterface::Script, Script)