Searched defs:debugger (Results 26 - 50 of 60) sorted by relevance

123

/external/lldb/source/API/
H A DSBListener.cpp98 SBListener::StartListeningForEventClass (SBDebugger &debugger, argument
104 Debugger *lldb_debugger = debugger.get();
115 SBListener::StopListeningForEventClass (SBDebugger &debugger, argument
121 Debugger *lldb_debugger = debugger.get();
H A DSBDebugger.cpp101 SBDebugger debugger; local
102 debugger.reset(Debugger::CreateInstance(callback, baton));
107 debugger.GetDescription (sstr);
108 log->Printf ("SBDebugger::Create () => SBDebugger(%p): %s", debugger.m_opaque_sp.get(), sstr.GetData());
111 SBCommandInterpreter interp = debugger.GetCommandInterpreter();
124 return debugger;
128 SBDebugger::Destroy (SBDebugger &debugger) argument
135 debugger.GetDescription (sstr);
136 log->Printf ("SBDebugger::Destroy () => SBDebugger(%p): %s", debugger.m_opaque_sp.get(), sstr.GetData());
139 Debugger::Destroy (debugger
[all...]
/external/lldb/source/Plugins/Platform/Linux/
H A DPlatformLinux.cpp430 Debugger &debugger,
443 error = debugger.GetTargetList().CreateTarget (debugger,
456 debugger.GetTargetList().SetSelectedTarget(target);
469 process_sp = m_remote_platform_sp->Attach (attach_info, debugger, target, listener, error);
429 Attach(ProcessAttachInfo &attach_info, Debugger &debugger, Target *target, Listener &listener, Error &error) argument
/external/lldb/source/Target/
H A DTargetList.cpp44 TargetList::TargetList(Debugger &debugger) : argument
45 Broadcaster(&debugger, TargetList::GetStaticBroadcasterClass().AsCString()),
63 TargetList::CreateTarget (Debugger &debugger, argument
147 CommandInterpreter &interpreter = debugger.GetCommandInterpreter();
167 platform_sp = debugger.GetPlatformList().GetSelectedPlatform ();
178 error = TargetList::CreateTarget (debugger,
188 TargetList::CreateTarget (Debugger &debugger, argument
217 platform_sp = debugger.GetPlatformList().GetSelectedPlatform();
292 target_sp.reset(new Target(debugger, arch, platform_sp));
302 target_sp.reset(new Target(debugger, arc
[all...]
H A DPlatform.cpp668 Debugger &debugger,
687 process_sp = Attach (attach_info, debugger, target, listener, error);
667 DebugProcess(ProcessLaunchInfo &launch_info, Debugger &debugger, Target *target, Listener &listener, Error &error) argument
H A DStopInfo.cpp434 Debugger &debugger = exe_ctx.GetTargetRef().GetDebugger(); local
435 StreamSP error_sp = debugger.GetAsyncErrorStream ();
464 Debugger &debugger = thread_sp->CalculateTarget()->GetDebugger(); local
465 bool old_async = debugger.GetAsyncExecution();
466 debugger.SetAsyncExecution (true);
470 debugger.SetAsyncExecution (old_async);
695 // constructor errors up to the debugger's Async I/O.
744 Debugger &debugger = exe_ctx.GetTargetRef().GetDebugger(); local
745 StreamSP error_sp = debugger.GetAsyncErrorStream ();
784 Debugger &debugger local
[all...]
H A DStackFrame.cpp1390 Debugger &debugger = target->GetDebugger(); local
1391 const uint32_t source_lines_before = debugger.GetStopSourceLineCount(true);
1392 const uint32_t source_lines_after = debugger.GetStopSourceLineCount(false);
1393 disasm_display = debugger.GetStopDisassemblyDisplay ();
1422 const uint32_t disasm_lines = debugger.GetDisassemblyLineCount();
/external/lldb/tools/lldb-perf/lib/
H A DXcode.cpp137 Xcode::RunCommand (SBDebugger debugger, const char* cmd, bool verbose) argument
140 auto interpreter = debugger.GetCommandInterpreter();
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3tokenstream.c62 static void setDebugListener (pANTLR3_TOKEN_STREAM ts, pANTLR3_DEBUG_EVENT_LISTENER debugger);
206 antlr3CommonTokenDebugStreamSourceNew(ANTLR3_UINT32 hint, pANTLR3_TOKEN_SOURCE source, pANTLR3_DEBUG_EVENT_LISTENER debugger) argument
214 // Install the debugger object
216 stream->tstream->debugger = debugger;
328 setDebugListener (pANTLR3_TOKEN_STREAM ts, pANTLR3_DEBUG_EVENT_LISTENER debugger) argument
330 // Install the debugger object
332 ts->debugger = debugger;
427 ts->debugger
[all...]
/external/lldb/source/Commands/
H A DCommandObjectBreakpointCommand.cpp180 Special information about debugger command breakpoint commands\n\
183 You may enter any debugger command, exactly as you would at the debugger prompt.\n\
184 You may enter as many debugger commands as you like, but do NOT enter more than\n\
374 Debugger &debugger = target->GetDebugger(); local
375 // Rig up the results secondary output stream to the debugger's, so the output will come out synchronously
376 // if the debugger is set up that way.
378 StreamSP output_stream (debugger.GetAsyncOutputStream());
379 StreamSP error_stream (debugger.GetAsyncErrorStream());
387 debugger
[all...]
H A DCommandObjectWatchpointCommand.cpp158 Special information about debugger command watchpoint commands \n\
161 You may enter any debugger command, exactly as you would at the \n\
162 debugger prompt. You may enter as many debugger commands as you like, \n\
351 Debugger &debugger = target->GetDebugger(); local
352 // Rig up the results secondary output stream to the debugger's, so the output will come out synchronously
353 // if the debugger is set up that way.
355 StreamSP output_stream (debugger.GetAsyncOutputStream());
356 StreamSP error_stream (debugger.GetAsyncErrorStream());
364 debugger
[all...]
H A DCommandObjectPlatform.cpp438 Debugger &debugger = m_interpreter.GetDebugger(); local
444 debugger,
446 debugger.GetListener(),
H A DCommandObjectCommands.cpp248 "Read in debugger commands from the file <filename> and execute them.",
426 "def my_command_impl(debugger, args, result, internal_dict):";
437 "Allow users to define their own debugger command abbreviations.",
575 result.AppendErrorWithFormat ("'%s' is a permanent debugger command and cannot be redefined.\n",
673 result.AppendErrorWithFormat ("'%s' is a permanent debugger command and cannot be redefined.\n",
816 result.AppendErrorWithFormat ("'%s' is a permanent debugger command and cannot be removed.\n",
1634 PythonAliasReader(Debugger& debugger, argument
1638 InputReaderEZ(debugger),
2007 "A set of commands for managing or customizing the debugger commands.",
/external/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp483 Debugger &debugger,
496 error = debugger.GetTargetList().CreateTarget (debugger,
509 debugger.GetTargetList().SetSelectedTarget(target);
510 // The freebsd always currently uses the GDB remote debugger plug-in
522 process_sp = m_remote_platform_sp->Attach (attach_info, debugger, target, listener, error);
482 Attach(ProcessAttachInfo &attach_info, Debugger &debugger, Target *target, Listener &listener, Error &error) argument
/external/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp353 Debugger &debugger,
375 error = debugger.GetTargetList().CreateTarget (debugger,
388 debugger.GetTargetList().SetSelectedTarget(target);
390 // The darwin always currently uses the GDB remote debugger plug-in
352 Attach(lldb_private::ProcessAttachInfo &attach_info, Debugger &debugger, Target *target, Listener &listener, Error &error) argument
/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp613 Debugger &debugger,
626 error = debugger.GetTargetList().CreateTarget (debugger,
639 debugger.GetTargetList().SetSelectedTarget(target);
650 process_sp = m_remote_platform_sp->Attach (attach_info, debugger, target, listener, error);
612 Attach(ProcessAttachInfo &attach_info, Debugger &debugger, Target *target, Listener &listener, Error &error) argument
H A DPlatformDarwinKernel.cpp234 PlatformDarwinKernel::DebuggerInitialize (lldb_private::Debugger &debugger) argument
236 if (!PluginManager::GetSettingForPlatformPlugin (debugger, PlatformDarwinKernelProperties::GetSettingName()))
239 PluginManager::CreateSettingForPlatformPlugin (debugger,
/external/smack/src/org/jivesoftware/smack/
H A DConnection.java41 import org.jivesoftware.smack.debugger.SmackDebugger;
178 protected SmackDebugger debugger = null; field in class:Connection
181 * The Reader which is used for the {@see debugger}.
186 * The Writer which is used for the {@see debugger}.
752 * Initialize the {@link #debugger}. You can specify a customized {@link SmackDebugger}
764 if (debugger == null) {
765 // Detect the debugger class to use.
792 Class.forName("org.jivesoftware.smack.debugger.ConsoleDebugger");
799 // Create a new debugger instance. If an exception occurs then disable the debugging
804 debugger
[all...]
/external/lldb/source/Core/
H A DDisassembler.cpp129 Debugger &debugger,
153 if (Disassemble (debugger,
175 Debugger &debugger,
216 return Disassemble (debugger,
293 Debugger &debugger,
320 debugger,
340 Debugger &debugger,
370 debugger,
391 Debugger &debugger,
416 SourceManager &source_manager = target_sp ? target_sp->GetSourceManager() : debugger
127 Disassemble( Debugger &debugger, const ArchSpec &arch, const char *plugin_name, const char *flavor, const ExecutionContext &exe_ctx, SymbolContextList &sc_list, uint32_t num_instructions, uint32_t num_mixed_context_lines, uint32_t options, Stream &strm ) argument
173 Disassemble( Debugger &debugger, const ArchSpec &arch, const char *plugin_name, const char *flavor, const ExecutionContext &exe_ctx, const ConstString &name, Module *module, uint32_t num_instructions, uint32_t num_mixed_context_lines, uint32_t options, Stream &strm ) argument
291 Disassemble( Debugger &debugger, const ArchSpec &arch, const char *plugin_name, const char *flavor, const ExecutionContext &exe_ctx, const AddressRange &disasm_range, uint32_t num_instructions, uint32_t num_mixed_context_lines, uint32_t options, Stream &strm ) argument
338 Disassemble( Debugger &debugger, const ArchSpec &arch, const char *plugin_name, const char *flavor, const ExecutionContext &exe_ctx, const Address &start_address, uint32_t num_instructions, uint32_t num_mixed_context_lines, uint32_t options, Stream &strm ) argument
388 PrintInstructions( Disassembler *disasm_ptr, Debugger &debugger, const ArchSpec &arch, const ExecutionContext &exe_ctx, uint32_t num_instructions, uint32_t num_mixed_context_lines, uint32_t options, Stream &strm ) argument
507 Disassemble( Debugger &debugger, const ArchSpec &arch, const char *plugin_name, const char *flavor, const ExecutionContext &exe_ctx, uint32_t num_instructions, uint32_t num_mixed_context_lines, uint32_t options, Stream &strm ) argument
[all...]
H A DPluginManager.cpp1828 PluginManager::DebuggerInitialize (Debugger &debugger) argument
1839 pos->debugger_init_callback (debugger);
1852 pos->debugger_init_callback (debugger);
1865 pos->debugger_init_callback (debugger);
1874 GetDebuggerPropertyForPlugins (Debugger &debugger, argument
1879 lldb::OptionValuePropertiesSP parent_properties_sp (debugger.GetValueProperties());
1915 GetDebuggerPropertyForPluginsOldStyle (Debugger &debugger, argument
1921 lldb::OptionValuePropertiesSP parent_properties_sp (debugger.GetValueProperties());
1953 PluginManager::GetSettingForDynamicLoaderPlugin (Debugger &debugger, const ConstString &setting_name) argument
1956 lldb::OptionValuePropertiesSP plugin_type_properties_sp (GetDebuggerPropertyForPlugins (debugger,
1966 CreateSettingForDynamicLoaderPlugin(Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp, const ConstString &description, bool is_global_property) argument
1991 GetSettingForPlatformPlugin(Debugger &debugger, const ConstString &setting_name) argument
2004 CreateSettingForPlatformPlugin(Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp, const ConstString &description, bool is_global_property) argument
2029 GetSettingForProcessPlugin(Debugger &debugger, const ConstString &setting_name) argument
2042 CreateSettingForProcessPlugin(Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp, const ConstString &description, bool is_global_property) argument
[all...]
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp723 s->Printf ("warning: Host-side kernel file has Mach-O UUID of %s but remote kernel has a UUID of %s -- a mismatched kernel file will result in a poor debugger experience.\n",
840 s->Printf ("WARNING: Unable to locate kernel binary on the debugger system.\n");
1586 DynamicLoaderDarwinKernel::DebuggerInitialize (lldb_private::Debugger &debugger) argument
1588 if (!PluginManager::GetSettingForDynamicLoaderPlugin (debugger, DynamicLoaderDarwinKernelProperties::GetSettingName()))
1591 PluginManager::CreateSettingForDynamicLoaderPlugin (debugger,
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DProcessKDP.cpp793 ProcessKDP::DebuggerInitialize (lldb_private::Debugger &debugger) argument
795 if (!PluginManager::GetSettingForProcessPlugin(debugger, PluginProperties::GetSettingName()))
798 PluginManager::CreateSettingForProcessPlugin (debugger,
/external/qemu-pc-bios/bochs/
H A Dbochs.h135 // so that these functions can be redirected to the debugger when
226 // to the debugger.
248 // debugger not compiled in, use empty stubs
445 bx_bool debugger; member in struct:__anon30290
/external/vixl/src/a64/
H A Ddebugger-a64.cc29 #include "a64/debugger-a64.h"
33 // List of commands supported by the debugger.
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;
241 // All debugger commands must subclass DebugCommand and implement Run, Print
250 // Run the command on the given debugger. The command returns true if
252 virtual bool Run(Debugger * debugger) = 0;
266 // debugger
1243 Run(Debugger* debugger) argument
1268 Run(Debugger* debugger) argument
1285 Run(Debugger* debugger) argument
1360 Run(Debugger* debugger) argument
1474 Run(Debugger* debugger) argument
1557 Run(Debugger* debugger) argument
1581 Run(Debugger* debugger) argument
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dwebkitdirs.pm88 my $debugger;
1483 sub debugger subroutine
1486 return $debugger;
1491 return if defined($debugger);
1495 $debugger = "lldb";
1497 $debugger = "gdb";
1501 $debugger = "lldb";
1505 $debugger = "gdb";
2725 if (debugger() eq "lldb") {
2728 } elsif (debugger() e
[all...]

Completed in 1417 milliseconds

123