Home
last modified time | relevance | path

Searched refs:debugger (Results 1 - 25 of 33) sorted by relevance

12

/third_party/skia/experimental/wasm-skp-debugger/
H A DMakefile4 mkdir -p ./debugger/bin
5 cp ../../out/debugger_wasm/debugger.js ./debugger/bin
6 cp ../../out/debugger_wasm/debugger.wasm ./debugger/bin
7 echo "const SKIA_VERSION = 'local release build';" > ./debugger/bin/version.js
12 mkdir -p ./debugger/bin
13 cp ../../out/debugger_wasm_debug/debugger.js ./debugger/bin
14 cp ../../out/debugger_wasm_debug/debugger
[all...]
/third_party/node/deps/v8/tools/
H A Dlldb_commands.py19 def current_thread(debugger):
20 return debugger.GetSelectedTarget().GetProcess().GetSelectedThread()
22 def current_frame(debugger):
23 return current_thread(debugger).GetSelectedFrame()
25 def no_arg_cmd(debugger, cmd):
27 evaluate_result = current_frame(debugger).EvaluateExpression(cast_to_void_expr)
39 def ptr_arg_cmd(debugger, name, param, cmd):
44 no_arg_cmd(debugger, cmd.format(param))
49 def job(debugger, param, *args):
51 ptr_arg_cmd(debugger, 'jo
[all...]
/third_party/jerryscript/jerry-debugger/
H A Djerry_client.py36 def __init__(self, debugger):
38 self.debugger = debugger
44 if self.debugger.non_interactive:
52 """ Exit JerryScript debugger """
53 self.debugger.quit()
62 self.debugger.display = line_num
68 write(self.debugger.set_break(args))
73 write(self.debugger.breakpoint_list())
77 write(self.debugger
[all...]
/third_party/node/deps/v8/src/inspector/
H A Dv8-stack-trace-impl.cc16 #include "src/inspector/v8-debugger.h"
37 V8Debugger* debugger, v8::Local<v8::StackTrace> v8StackTrace, in toFramesVector()
39 DCHECK(debugger->isolate()->InContext()); in toFramesVector()
50 debugger->symbolize(v8StackTrace->GetFrame(debugger->isolate(), i)); in toFramesVector()
55 void calculateAsyncChain(V8Debugger* debugger, in calculateAsyncChain() argument
58 *asyncParent = debugger->currentAsyncParent(); in calculateAsyncChain()
59 *externalParent = debugger->currentExternalParent(); in calculateAsyncChain()
61 if (maxAsyncDepth) *maxAsyncDepth = debugger->maxAsyncCallChainDepth(); in calculateAsyncChain()
71 V8Debugger* debugger, in buildInspectorObjectCommon()
36 toFramesVector( V8Debugger* debugger, v8::Local<v8::StackTrace> v8StackTrace, int maxStackSize) toFramesVector() argument
70 buildInspectorObjectCommon( V8Debugger* debugger, const std::vector<std::shared_ptr<StackFrame>>& frames, const String16& description, const std::shared_ptr<AsyncStackTrace>& asyncParent, const V8StackTraceId& externalParent, int maxAsyncDepth) buildInspectorObjectCommon() argument
226 create( V8Debugger* debugger, v8::Local<v8::StackTrace> v8StackTrace, int maxStackSize) create() argument
250 capture( V8Debugger* debugger, int maxStackSize) capture() argument
322 buildInspectorObjectImpl(V8Debugger* debugger, int maxAsyncDepth) const buildInspectorObjectImpl() argument
396 capture( V8Debugger* debugger, const String16& description, bool skipTopFrame) capture() argument
450 buildInspectorObject(V8Debugger* debugger, int maxAsyncDepth) const buildInspectorObject() argument
457 store(V8Debugger* debugger, std::shared_ptr<AsyncStackTrace> stack) store() argument
[all...]
H A Dv8-stack-trace-impl.h66 V8Debugger* debugger) const;
69 V8Debugger* debugger, int maxAsyncDepth) const;
120 static uintptr_t store(V8Debugger* debugger,
124 V8Debugger* debugger, int maxAsyncDepth) const;
H A Dtest-interface.cc7 #include "src/inspector/v8-debugger.h"
14 ->debugger() in SetMaxAsyncTaskStacksForTest()
20 ->debugger() in DumpAsyncTaskStacksStateForTest()
H A Dv8-runtime-agent-impl.cc47 #include "src/inspector/v8-debugger-agent-impl.h"
48 #include "src/inspector/v8-debugger.h"
514 m_inspector->debugger()->setMaxCallStackSizeToCapture(this, size); in setMaxCallStackSizeToCapture()
540 if (!persistScript) m_inspector->debugger()->muteScriptParsedEvents(); in compileScript()
544 if (!persistScript) m_inspector->debugger()->unmuteScriptParsedEvents(); in compileScript()
652 v8::Local<v8::Array> resultArray = m_inspector->debugger()->queryObjects( in queryObjects()
700 m_inspector->debugger()->terminateExecution(std::move(callback)); in terminateExecution()
892 m_inspector->debugger()->setMaxCallStackSizeToCapture(this, size); in restore()
908 m_inspector->debugger()->setMaxCallStackSizeToCapture( in enable()
927 m_inspector->debugger() in disable()
[all...]
H A Dinjected-script.cc278 stack = m_inspector->debugger()->createStackTrace(stackTrace); in catchCallback()
282 stack = m_inspector->debugger()->captureStackTrace(true); in catchCallback()
309 stack->buildInspectorObjectImpl(m_inspector->debugger())); in catchCallback()
827 m_context->inspector()->debugger()->createStackTrace(stackTrace); in createExceptionDetails()
830 m_context->inspector()->debugger())); in createExceptionDetails()
932 if (!m_inspector->debugger()->enabled()) return newState; in setPauseOnExceptionsState()
934 m_inspector->debugger()->getPauseOnExceptionsState(); in setPauseOnExceptionsState()
936 m_inspector->debugger()->setPauseOnExceptionsState(newState); in setPauseOnExceptionsState()
H A Dv8-console-message.cc335 m_stackTrace->buildInspectorObjectImpl(inspector->debugger())); in reportToFrontend()
375 m_stackTrace->buildInspectorObjectImpl(inspector->debugger()); in reportToFrontend()
379 m_stackTrace->buildInspectorObjectImpl(inspector->debugger(), 0); in reportToFrontend()
H A Dv8-inspector-impl.h66 V8Debugger* debugger() { return m_debugger.get(); } in debugger() function in v8_inspector::V8InspectorImpl
H A Dv8-debugger.cc5 #include "src/inspector/v8-debugger.h"
15 #include "src/inspector/v8-debugger-agent-impl.h"
308 V8Debugger* debugger = inspector->debugger(); in terminateExecutionCompletedCallback() local
309 debugger->reportTermination(); in terminateExecutionCompletedCallback()
H A Dv8-console.cc17 #include "src/inspector/v8-debugger-agent-impl.h"
109 m_inspector->debugger()->captureStackTrace(false)); in reportCall()
298 V8StackTraceImpl::capture(inspector->debugger(), 1); in identifierFromTitleOrStackTrace()
363 m_inspector->debugger()->breakProgramOnAssert(helper.groupId()); in Assert()
H A Dv8-inspector-impl.cc46 #include "src/inspector/v8-debugger-agent-impl.h"
47 #include "src/inspector/v8-debugger-id.h"
48 #include "src/inspector/v8-debugger.h"
435 m_scope.inspector()->debugger()->reportTermination(); in ~EvaluateScope()
H A Dvalue-mirror.cc21 #include "src/inspector/v8-debugger.h"
1555 V8Debugger* debugger = in getInternalProperties() local
1557 ->debugger(); in getInternalProperties()
1559 if (debugger->internalProperties(context, object).ToLocal(&properties)) { in getInternalProperties()
/third_party/skia/platform_tools/debugging/lldb/
H A Dskia.py207 def __lldb_init_module(debugger, dict):
208 debugger.HandleCommand(
210 debugger.HandleCommand(
212 debugger.HandleCommand(
214 debugger.HandleCommand(
216 debugger.HandleCommand(
218 debugger.HandleCommand(
220 debugger.HandleCommand(
222 debugger.HandleCommand(
224 debugger
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShaderDebugger.cpp25 // If enabled, debugger variables will contain debug information (addresses,
945 // execution-time-immutable debugger information.
963 // process() is called for each debugger instruction in two compiler passes.
972 // client debugger events so that it can monitor for changes in breakpoints.
976 // setLocation() must be a debugger steppable line.
980 // when the next location is debugger steppable.
991 std::shared_ptr<vk::dbg::Context> const ctx; // The debugger context
1016 // Traps holds information about debugger traps - points in the shader
1017 // program where execution may pause for the debugger, either due to hitting
1269 // Called at the start of the debugger
[all...]
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_debugger.py1 "Test debugger, coverage 19%"
3 from idlelib import debugger namespace
23 debugger.NamespaceViewer(self.root, 'Test')
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dsample.py27 debugger = Debugger () variable
28 hb.buffer_set_message_func (buf, debugger.message, 1, 0)
/third_party/python/Lib/idlelib/
H A Dpyshell.py44 from idlelib import debugger namespace
182 try: # update the subprocess debugger
183 debug = self.flist.pyshell.interp.debugger
185 except: # but debugger may not be active right now....
211 debug = self.flist.pyshell.interp.debugger
226 debug = self.flist.pyshell.interp.debugger
246 # debugger is loaded) is updated during the save, the visible
494 # close only the subprocess debugger
498 # Only close subprocess debugger, don't unregister gui_adap!
524 # restart subprocess debugger
621 debugger = None global() variable in ModifiedInterpreter
[all...]
H A Ddebugger_r.py24 from idlelib import debugger namespace
180 """Start the debugger and its RPC link in the Python subprocess
182 Start the subprocess side of the split debugger and set up that side of the
183 RPC link by instantiating the GUIProxy, Idb debugger, and IdbAdapter
185 RPCServer to handle RPC requests from the split debugger GUI via the
190 idb = debugger.Idb(gui_proxy)
347 """Start the subprocess debugger, initialize the debugger GUI and RPC link
349 Request the RPCServer start the Python subprocess debugger and link. Set
350 up the Idle side of the split debugger b
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkDevice.hpp167 return debugger.context; in getDebuggerContext()
204 } debugger; member in vk::Device
H A DVkDevice.cpp163 // Construct the debugger context and server - this may block for a
164 // debugger connection, allowing breakpoints to be set before they're
166 debugger.context = vk::dbg::Context::create();
167 debugger.server = vk::dbg::Server::create(debugger.context, atoi(port));
/third_party/node/deps/v8/src/parsing/
H A Dkeywords-gen.h99 {"debugger", Token::DEBUGGER},
/third_party/python/Lib/
H A Ddoctest.py356 A specialized version of the python debugger that redirects stdout
1353 self.debugger.set_continue() # ==== Example Finished ====
1359 self.debugger.set_continue() # ==== Example Finished ====
1484 self.debugger = _OutputRedirectingPdb(save_stdout)
1485 self.debugger.reset()
1486 pdb.set_trace = self.debugger.set_trace
1489 # when we're inside the debugger.
/third_party/mesa3d/src/hgl/
H A DGLView.cpp83 debugger("[!]"); in UnlockGL()
162 // TODO: under BeOS R5, it call debugger(msg); in ErrorCallback()
515 // debugger(msg);

Completed in 36 milliseconds

12