Searched refs:debuggerContext (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/inspector/ |
D | java-script-call-frame.h | 46 v8::Local<v8::Context> debuggerContext, v8::Local<v8::Object> callFrame) { in create() argument 48 new JavaScriptCallFrame(debuggerContext, callFrame)); in create() 65 JavaScriptCallFrame(v8::Local<v8::Context> debuggerContext,
|
D | v8-debugger.cc | 227 v8::Local<v8::Context> context = debuggerContext(); in setBreakpoint() 256 v8::debug::Call(debuggerContext(), setBreakpointFunction, info) in setBreakpoint() 274 v8::Local<v8::Context> context = debuggerContext(); in removeBreakpoint() 292 v8::debug::Call(debuggerContext(), removeBreakpointFunction, info) in removeBreakpoint() 298 v8::Local<v8::Context> context = debuggerContext(); in clearBreakpoints() 305 v8::debug::Call(debuggerContext(), clearBreakpoints).ToLocalChecked(); in clearBreakpoints() 356 v8::debug::Call(debuggerContext(), breakFunction).ToLocalChecked(); in breakProgram() 412 contextScope.reset(new v8::Context::Scope(debuggerContext())); in setScriptSource() 497 if (!callFramesArray->Get(debuggerContext(), i).ToLocal(&callFrameValue)) in currentCallFrames() 502 debuggerContext(), v8::Local<v8::Object>::Cast(callFrameObject))); in currentCallFrames() [all …]
|
D | java-script-call-frame.cc | 38 JavaScriptCallFrame::JavaScriptCallFrame(v8::Local<v8::Context> debuggerContext, in JavaScriptCallFrame() argument 40 : m_isolate(debuggerContext->GetIsolate()), in JavaScriptCallFrame() 41 m_debuggerContext(m_isolate, debuggerContext), in JavaScriptCallFrame()
|
D | v8-debugger-agent-impl.cc | 880 v8::Local<v8::Context> debuggerContext = in currentCallFrames() local 882 v8::Context::Scope contextScope(debuggerContext); in currentCallFrames() 903 ->Set(debuggerContext, in currentCallFrames() 913 ->Get(debuggerContext, in currentCallFrames() 929 ->Has(debuggerContext, in currentCallFrames() 939 ->Set(debuggerContext, in currentCallFrames() 947 ->Set(debuggerContext, toV8StringInternalized(m_isolate, "type"), in currentCallFrames() 953 ->Set(debuggerContext, toV8StringInternalized(m_isolate, "this"), in currentCallFrames() 959 ->Delete(debuggerContext, in currentCallFrames() 966 if (!objects->Set(debuggerContext, static_cast<int>(frameOrdinal), details) in currentCallFrames() [all …]
|
D | v8-value-copier.h | 15 v8::Isolate*, v8::Local<v8::Context> debuggerContext,
|
D | v8-value-copier.cc | 169 v8::Isolate* isolate, v8::Local<v8::Context> debuggerContext, in copyValueFromDebuggerContext() argument 173 copier.m_from = debuggerContext; in copyValueFromDebuggerContext()
|
D | v8-debugger.h | 103 v8::Local<v8::Context> debuggerContext() const;
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/ |
D | LazyValue.java | 109 … final DebuggerContextImpl debuggerContext = DebuggerManagerEx.getInstanceEx(project).getContext(); in getNullableValue() local 110 evaluationContext = debuggerContext.createEvaluationContext(); in getNullableValue() 149 … final DebuggerContextImpl debuggerContext = DebuggerManagerEx.getInstanceEx(project).getContext(); in virtualMachine() local 150 final DebugProcessImpl process = debuggerContext.getDebugProcess(); in virtualMachine()
|