HomeSort by relevance Sort by last modified time
    Searched defs:Debugger (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/tools/cr/cr/actions/
debugger.py 5 """A module for the Debugger base class."""
10 class Debugger(cr.Action, cr.Plugin.Type):
16 SELECTOR_ARG = '--debugger'
18 SELECTOR_HELP = 'Sets the debugger to use for debug commands.'
26 """Checks if the debugger is attaching or launching."""
31 """Ask the debugger to restart.
40 """Kill the running debugger."""
45 """Invoke the program within a debugger."""
50 """Attach a debugger to a running program."""
  /external/antlr/antlr-3.4/runtime/Python/tests/
t059debug.py 13 class Debugger(threading.Thread):
15 super(Debugger, self).__init__()
78 debugger = Debugger(port)
79 debugger.start()
97 debugger.join()
98 return debugger
149 debugger = self.execParser(
154 self.assertTrue(debugger.success)
170 self.assertListEqual(debugger.events, expected
    [all...]
  /external/lldb/include/lldb/Core/
Debugger.h 1 //===-- Debugger.h ----------------------------------------------*- C++ -*-===//
42 /// @class Debugger Debugger.h "lldb/Core/Debugger.h"
45 /// Provides a global root objects for the debugger core.
49 class Debugger :
50 public std::enable_shared_from_this<Debugger>,
84 ~Debugger ();
158 // This returns the Debugger's scratch source manager. It won't be able to look up files in debug
177 /// The target list is part of the global debugger object. Thi
    [all...]
  /external/vixl/src/a64/
debugger-a64.h 44 // VIXL's macro-assembler and debugger support a few pseudo instructions to
96 // Debugger parameters
98 DBG_ACTIVE = 1 << 0, // The debugger is active.
99 DBG_BREAK = 1 << 1 // The debugger is at a breakpoint.
107 class Debugger : public Simulator {
109 Debugger(Decoder* decoder, FILE* stream = stdout);
115 // The simulator can control disassembly, so make sure that the Debugger's
136 // Numbers of instructions to execute before the debugger shell is given
187 // Length of the biggest command line accepted by the debugger shell.
debugger-a64.cc 29 #include "a64/debugger-a64.h"
33 // List of commands supported by the debugger.
42 // Debugger command lines are broken up in token of different type to make
58 virtual uint8_t* ToAddress(Debugger* debugger) const;
85 virtual uint8_t* ToAddress(Debugger* debugger) const;
132 virtual uint8_t* ToAddress(Debugger* debugger) const;
150 virtual uint8_t* ToAddress(Debugger* debugger) const
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 35 if prev_frame.f_code.co_filename.count('Debugger.py'):
36 # (that test will catch both Debugger.py and RemoteDebugger.py)
51 class Debugger:
77 # Clean up pyshell if user clicked debugger control close widget.
79 # toggled debugger from pyshell Debug menu)
81 # Now close the debugger control window....
313 "Load PyShellEditorWindow breakpoints into subprocess debugger"
RemoteDebugger.py 25 from idlelib import Debugger
177 """Start the debugger and its RPC link in the Python subprocess
179 Start the subprocess side of the split debugger and set up that side of the
180 RPC link by instantiating the GUIProxy, Idb debugger, and IdbAdapter
182 RPCServer to handle RPC requests from the split debugger GUI via the
187 idb = Debugger.Idb(gui_proxy)
339 """Start the subprocess debugger, initialize the debugger GUI and RPC link
341 Request the RPCServer start the Python subprocess debugger and link. Set
342 up the Idle side of the split debugger by instantiating the IdbProxy
    [all...]
PyShell.py 36 from idlelib import Debugger
143 try: # update the subprocess debugger
144 debug = self.flist.pyshell.interp.debugger
146 except: # but debugger may not be active right now....
172 debug = self.flist.pyshell.interp.debugger
187 debug = self.flist.pyshell.interp.debugger
212 # debugger is loaded) is updated during the save, the visible
451 # close only the subprocess debugger
455 # Only close subprocess debugger, don't unregister gui_adap!
483 # restart subprocess debugger
575 debugger = None variable in class:ModifiedInterpreter
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 35 if prev_frame.f_code.co_filename.count('Debugger.py'):
36 # (that test will catch both Debugger.py and RemoteDebugger.py)
51 class Debugger:
77 # Clean up pyshell if user clicked debugger control close widget.
79 # toggled debugger from pyshell Debug menu)
81 # Now close the debugger control window....
313 "Load PyShellEditorWindow breakpoints into subprocess debugger"
RemoteDebugger.py 25 from idlelib import Debugger
177 """Start the debugger and its RPC link in the Python subprocess
179 Start the subprocess side of the split debugger and set up that side of the
180 RPC link by instantiating the GUIProxy, Idb debugger, and IdbAdapter
182 RPCServer to handle RPC requests from the split debugger GUI via the
187 idb = Debugger.Idb(gui_proxy)
339 """Start the subprocess debugger, initialize the debugger GUI and RPC link
341 Request the RPCServer start the Python subprocess debugger and link. Set
342 up the Idle side of the split debugger by instantiating the IdbProxy
    [all...]
PyShell.py 36 from idlelib import Debugger
143 try: # update the subprocess debugger
144 debug = self.flist.pyshell.interp.debugger
146 except: # but debugger may not be active right now....
172 debug = self.flist.pyshell.interp.debugger
187 debug = self.flist.pyshell.interp.debugger
212 # debugger is loaded) is updated during the save, the visible
451 # close only the subprocess debugger
455 # Only close subprocess debugger, don't unregister gui_adap!
483 # restart subprocess debugger
575 debugger = None variable in class:ModifiedInterpreter
    [all...]
  /external/lldb/source/Core/
Debugger.cpp 1 //===-- Debugger.cpp --------------------------------------------*- C++ -*-===//
14 #include "lldb/Core/Debugger.h"
75 // hide the static debugger list inside a singleton accessor to avoid
84 { Debugger::eStopDisassemblyTypeNever, "never", "Never show disassembly when displaying a stop context."},
85 { Debugger::eStopDisassemblyTypeNoSource, "no-source", "Show disassembly when there is no source information, or the source file is missing when displaying a stop context."},
86 { Debugger::eStopDisassemblyTypeAlways, "always", "Always show disassembly when displaying a stop context."},
125 { "prompt", OptionValue::eTypeString , true, OptionValueString::eOptionEncodeCharacterEscapeSequences, "(lldb) ", NULL, "The debugger command line prompt displayed for the user." },
128 { "stop-disassembly-display", OptionValue::eTypeEnum , true, Debugger::eStopDisassemblyTypeNoSource, NULL, g_show_disassembly_enum_values, "Control when to display disassembly when displaying a stopped context." },
158 //Debugger::GetFrameFormat() const
163 //Debugger::GetThreadFormat() cons
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
Workspace.js 263 return this._projectDelegate.type() === WebInspector.projectTypes.Debugger || this._projectDelegate.type() === WebInspector.projectTypes.Formatter || this._projectDelegate.type() === WebInspector.projectTypes.LiveEdit;
525 Debugger: "debugger",
  /prebuilts/devtools/tools/lib/
ddmlib.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.2.0/
ddmlib-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.4.0/
ddmlib-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.4.2/
ddmlib-22.4.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.5.0/
ddmlib-22.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.5.1/
ddmlib-22.5.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.5.3/
ddmlib-22.5.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.7.0/
ddmlib-22.7.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.7.1/
ddmlib-22.7.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.7.3/
ddmlib-22.7.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.8.0/
ddmlib-22.8.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.9.2/
ddmlib-22.9.2.jar 

Completed in 332 milliseconds

1 2