Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Djava-script-call-frame.h46 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,
Dv8-debugger.cc227 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 …]
Djava-script-call-frame.cc38 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()
Dv8-debugger-agent-impl.cc880 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 …]
Dv8-value-copier.h15 v8::Isolate*, v8::Local<v8::Context> debuggerContext,
Dv8-value-copier.cc169 v8::Isolate* isolate, v8::Local<v8::Context> debuggerContext, in copyValueFromDebuggerContext() argument
173 copier.m_from = debuggerContext; in copyValueFromDebuggerContext()
Dv8-debugger.h103 v8::Local<v8::Context> debuggerContext() const;
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
DLazyValue.java109 … 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()