Home
last modified time | relevance | path

Searched refs:HandleCommand (Results 1 – 25 of 67) sorted by relevance

123

/external/lldb/examples/python/
Ddiagnose_unwind.py169 debugger.HandleCommand("settings show target.process.python-os-plugin-path")
173 debugger.HandleCommand("register read")
210 debugger.HandleCommand('image list %s' % module.GetFileSpec().GetFilename())
226 debugger.HandleCommand('disassemble -F att -a 0x%x' % frame.GetPC())
228 debugger.HandleCommand('disassemble -a 0x%x' % frame.GetPC())
238 debugger.HandleCommand('disassemble -F att -a 0x%x' % address)
240 debugger.HandleCommand('disassemble -a 0x%x' % address)
252 debugger.HandleCommand('image show-unwind -a "0x%x"' % frame.GetPC())
261 debugger.HandleCommand('image show-unwind -a "0x%x"' % address)
269 lldb.debugger.HandleCommand('command script add -f %s.diagnose_unwind diagnose-unwind' % __name__)
Ddelta.py41 …debugger.HandleCommand('log enable --threadsafe --timestamp --file "%s" gdb-remote packets' % log_…
114 lldb.debugger.HandleCommand('command script add -f delta.parse_time_log parse_time_log')
Dprocess_events.py59 command_interpreter.HandleCommand( command, return_obj )
147 debugger.HandleCommand( "_regexp-break %s" % (bp))
200 … debugger.HandleCommand( "_regexp-break %s" % (bp))
Dgdb_disassemble.py23 lldb.debugger.HandleCommand('command script add -f gdb_disassemble.disassemble gdb-disassemble')
Dstacks.py55 lldb.debugger.HandleCommand("command script add -f stacks.stack_frames stack_frames")
/external/llvm/utils/
DlldbDataFormatters.py8 debugger.HandleCommand('type category define -e llvm -l c++')
9 debugger.HandleCommand('type synthetic add -w llvm '
12 debugger.HandleCommand('type synthetic add -w llvm '
15 debugger.HandleCommand('type synthetic add -w llvm '
18 debugger.HandleCommand('type summary add -w llvm '
/external/lldb/examples/summaries/
Dsp_cp.py58 …debugger.HandleCommand('type summary add -x ".*ValueObjectSP" --expand -F sp_cp.ValueObjectSP_Summ…
59 …debugger.HandleCommand('type synthetic add -x ".*ValueObjectSP" -l sp_cp.ValueObjectSP_SyntheticCh…
60 debugger.HandleCommand('type summary add -x ".*SP" --expand -F sp_cp.SharedPtr_SummaryProvider')
61 debugger.HandleCommand('type synthetic add -x ".*SP" -l sp_cp.SharedPtr_SyntheticChildrenProvider')
/external/lldb/test/functionalities/plugins/commands/
DTestPluginCommands.py31 retval = debugger.GetCommandInterpreter().HandleCommand("plugin load plugin.dylib",retobj)
35 …retval = debugger.GetCommandInterpreter().HandleCommand("plugin_loaded_command child abc def ghi",…
45 … retval = debugger.GetCommandInterpreter().HandleCommand("plugin_loaded_ ch abc def ghi",retobj)
/external/lldb/test/functionalities/command_script/import/thepackage/
D__init__.py5 debugger.HandleCommand("command script add -f thepackage.TPunitA.command TPcommandA")
6 debugger.HandleCommand("command script add -f thepackage.TPunitB.command TPcommandB")
/external/lldb/test/python_api/interpreter/
DTestCommandInterpreterAPI.py59 ci.HandleCommand("breakpoint set -f main.c -l %d" % self.line, res)
61 ci.HandleCommand("process launch", res)
67 ci.HandleCommand(None, res)
/external/lldb/test/expression_command/call-restarts/
DTestCallThatRestarts.py70 …self.dbg.GetCommandInterpreter().HandleCommand("process handle SIGCHLD -s 0 -p 1 -n 0", return_obj)
109 …self.dbg.GetCommandInterpreter().HandleCommand("process handle SIGCHLD -s 0 -p 1 -n 1", return_obj)
129 …self.dbg.GetCommandInterpreter().HandleCommand("process handle SIGCHLD -s 1 -p 1 -n 1", return_obj)
136 …self.dbg.GetCommandInterpreter().HandleCommand("process handle SIGCHLD -s 0 -p 1 -n 1", return_obj)
/external/lldb/examples/synthetic/
Dlibcxx.py770 …debugger.HandleCommand('type summary add -F libcxx.stdstring_SummaryProvider "std::__1::string" -w…
771 …debugger.HandleCommand('type summary add -F libcxx.stdstring_SummaryProvider "std::__1::basic_stri…
772 …debugger.HandleCommand('type synthetic add -l libcxx.stdvector_SynthProvider -x "^(std::__1::)vect…
773 …debugger.HandleCommand('type summary add -F libcxx.stdvector_SummaryProvider -e -x "^(std::__1::)v…
774 …debugger.HandleCommand('type synthetic add -l libcxx.stdlist_SynthProvider -x "^(std::__1::)list<.…
775 …debugger.HandleCommand('type summary add -F libcxx.stdlist_SummaryProvider -e -x "^(std::__1::)lis…
776 …debugger.HandleCommand('type synthetic add -l libcxx.stdmap_SynthProvider -x "^(std::__1::)map<.+>…
777 …debugger.HandleCommand('type summary add -F libcxx.stdmap_SummaryProvider -e -x "^(std::__1::)map<…
778 debugger.HandleCommand("type category enable libcxx")
779 …debugger.HandleCommand('type synthetic add -l libcxx.stddeque_SynthProvider -x "^(std::__1::)deque…
[all …]
/external/clang/utils/
DClangDataFormat.py25 …debugger.HandleCommand("type summary add -F ClangDataFormat.SourceLocation_summary clang::SourceLo…
26 debugger.HandleCommand("type summary add -F ClangDataFormat.QualType_summary clang::QualType")
27 debugger.HandleCommand("type summary add -F ClangDataFormat.StringRef_summary llvm::StringRef")
/external/lldb/test/expression_command/timeout/
DTestCallWithTimeout.py73 return_value = interp.HandleCommand ("expr -t 100 -u true -- wait_a_while(10000)", result)
87 … return_value = interp.HandleCommand ("expr -t 1000000 -u true -- wait_a_while(1000)", result)
/external/lldb/test/functionalities/command_script/import/foo/
Dfoo2.py6 debugger.HandleCommand("command script add -f foo2.foo2_function foo2cmd")
/external/lldb/tools/driver/
DDriver.cpp971 m_debugger.GetCommandInterpreter().HandleCommand("process status", result, false); in HandleProcessEvent()
1016 … m_debugger.GetCommandInterpreter().HandleCommand("process status", result, false); in HandleProcessEvent()
1083 m_debugger.GetCommandInterpreter().HandleCommand (command_string, result, true); in HandleIOEvent()
1412 … m_debugger.GetCommandInterpreter().HandleCommand (command_string, result, false); in MainLoop()
1457 m_debugger.HandleCommand (command_string); in MainLoop()
1461 m_debugger.HandleCommand ("settings clear target.run-args"); in MainLoop()
1469 m_debugger.HandleCommand (arg_cstr); in MainLoop()
1479 m_debugger.HandleCommand (command_string);; in MainLoop()
1531 m_debugger.HandleCommand(command_str.c_str()); in MainLoop()
/external/lldb/test/functionalities/command_script/import/bar/
Dbar.py9 debugger.HandleCommand("command script add -f bar.bar_function barothercmd")
/external/lldb/examples/summaries/cocoa/
DNSDate.py266 debugger.HandleCommand("type summary add -F NSDate.NSDate_SummaryProvider NSDate")
267 debugger.HandleCommand("type summary add -F NSDate.CFAbsoluteTime_SummaryProvider CFAbsoluteTime")
268 …debugger.HandleCommand("type summary add -F NSDate.NSTimeZone_SummaryProvider NSTimeZone CFTimeZon…
DNSData.py162 debugger.HandleCommand("type summary add -F NSData.NSData_SummaryProvider NSData")
163 …debugger.HandleCommand("type summary add -F NSData.NSData_SummaryProvider2 CFDataRef CFMutableData…
DNSNumber.py232 debugger.HandleCommand("type summary add -F NSNumber.NSNumber_SummaryProvider NSNumber")
233 debugger.HandleCommand("type summary add -F NSNumber.NSNumber_SummaryProvider __NSCFBoolean")
234 debugger.HandleCommand("type summary add -F NSNumber.NSNumber_SummaryProvider __NSCFNumber")
/external/lldb/test/functionalities/command_script/
Dmysto.py19 debugger.HandleCommand("command script add -f mysto.StepOver mysto")
/external/lldb/examples/customization/import-python/
Dimportcmd.py15 debugger.HandleCommand("script import " + modname)
/external/lldb/scripts/Python/interface/
DSBCommandInterpreter.i115HandleCommand (const char *command_line, lldb::SBCommandReturnObject &result, bool add_to_history …
/external/lldb/test/python_api/debugger/
DTestDebuggerAPI.py17 self.dbg.HandleCommand(None)
/external/lldb/examples/darwin/heap_find/
Dheap.py568 … lldb.debugger.GetCommandInterpreter().HandleCommand(memory_command, cmd_result)
1122 lldb.debugger.HandleCommand('command script add -f %s.ptr_refs ptr_refs' % __name__)
1123 lldb.debugger.HandleCommand('command script add -f %s.cstr_refs cstr_refs' % __name__)
1124 lldb.debugger.HandleCommand('command script add -f %s.malloc_info malloc_info' % __name__)
1128 lldb.debugger.HandleCommand('command script add -f %s.objc_refs objc_refs' % __name__)

123