Searched defs:lldb (Results 201 - 225 of 421) sorted by path

1234567891011>>

/external/lldb/test/functionalities/data-formatter/rdar-3534688/
H A DTestFormattersOneIsSingular.py2 Test lldb data formatter subsystem.
7 import lldb namespace
100 lldb.SBDebugger.Initialize()
101 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/data-formatter/rdar-9973865/
H A DTest-rdar-9973865.py2 Test lldb data formatter subsystem.
7 import lldb namespace
75 lldb.SBDebugger.Initialize()
76 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/data-formatter/rdar-9973992/
H A DTest-rdar-9973992.py2 Test lldb data formatter subsystem.
7 import lldb namespace
88 lldb.SBDebugger.Initialize()
89 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/data-formatter/rdar-9974002/
H A DTest-rdar-9974002.py2 Test lldb data formatter subsystem.
7 import lldb namespace
147 lldb.SBDebugger.Initialize()
148 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/dead-strip/
H A DTestDeadStrip.py7 import lldb namespace
71 lldb.SBDebugger.Initialize()
72 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/embedded_interpreter/
H A DTestConvenienceVariables.py1 """Test convenience variables when you drop in from lldb prompt into an embedded interpreter."""
5 import lldb namespace
16 """Test convenience variables lldb.debugger, lldb.target, lldb.process, lldb.thread, and lldb.frame."""
21 @skipIfLinux # llvm.org/pr14637: this test case fails sometimes because the input prompt "(lldb)" is missing
23 """Test convenience variables lldb.debugger, lldb
[all...]
/external/lldb/test/functionalities/exec/
H A DTestExec.py2 Test some lldb command abbreviations.
5 import lldb namespace
59 breakpoint = target.BreakpointCreateBySourceRegex ('Set breakpoint 1 here', lldb.SBFileSpec ("main.cpp", False))
68 self.assertTrue(process.GetState() == lldb.eStateStopped,
78 self.assertTrue (stop_reason == lldb.eStopReasonBreakpoint,
84 self.assertTrue(process.GetState() == lldb.eStateStopped,
94 self.assertTrue (stop_reason == lldb.eStopReasonExec,
102 lldb.SBDebugger.Initialize()
103 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/expr-doesnt-deadlock/
H A DTestExprDoesntBlock.py8 import lldb, lldbutil namespace
46 main_file_spec = lldb.SBFileSpec ("locking.c")
60 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
71 lldb.SBDebugger.Initialize()
72 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/fat_archives/
H A DTestFatArchives.py2 Test some lldb command abbreviations.
5 import lldb namespace
50 # Get a section offset address (lldb.SBAddress) from the breakpoint location
60 lldb.SBDebugger.Initialize()
61 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/inferior-assert/
H A DTestInferiorAssert.py1 """Test that lldb functions correctly after the inferior has asserted."""
5 import lldb, lldbutil namespace
14 """Test that lldb reliably catches the inferior asserting (command)."""
19 """Test that lldb reliably catches the inferior asserting (command)."""
25 """Test that lldb reliably reads registers from the inferior after asserting (command)."""
30 """Test that lldb reliably reads registers from the inferior after asserting (command)."""
37 """Test that lldb reliably disassemblers frames after asserting (command)."""
43 """Test that lldb reliably catches the inferior asserting (Python API)."""
49 """Test that the lldb expression interpreter can read from the inferior after asserting (command)."""
54 """Test that the lldb expressio
[all...]
/external/lldb/test/functionalities/inferior-changed/
H A DTestInferiorChanged.py1 """Test lldb reloads the inferior after it was changed during the session."""
5 import lldb namespace
15 """Test lldb reloads the inferior after it was changed during the session."""
25 """Test lldb reloads the inferior after it was changed during the session."""
29 # lldb needs to recognize the inferior has changed. If lldb needs to check the
46 """Inferior crashes upon launching; lldb should catch the event and stop."""
68 """Test lldb reloads the inferior after it was changed during the session."""
79 self.fail("Inferior changed, but lldb did not perform a reload")
100 lldb
[all...]
/external/lldb/test/functionalities/inferior-crashing/
H A DTestInferiorCrashing.py1 """Test that lldb functions correctly after the inferior has crashed."""
5 import lldb, lldbutil namespace
14 """Test that lldb reliably catches the inferior crashing (command)."""
19 """Test that lldb reliably catches the inferior crashing (command)."""
25 """Test that lldb reliably reads registers from the inferior after crashing (command)."""
30 """Test that lldb reliably reads registers from the inferior after crashing (command)."""
36 """Test that lldb reliably catches the inferior crashing (Python API)."""
42 """Test that the lldb expression interpreter can read from the inferior after crashing (command)."""
47 """Test that the lldb expression interpreter can read from the inferior after crashing (command)."""
53 """Test that lldb function
[all...]
/external/lldb/test/functionalities/inferior-crashing/recursive-inferior/
H A DTestRecursiveInferior.py1 """Test that lldb functions correctly after the inferior has crashed while in a recursive routine."""
5 import lldb, lldbutil namespace
14 """Test that lldb reliably catches the inferior crashing (command)."""
20 """Test that lldb reliably catches the inferior crashing (command)."""
26 """Test that lldb reliably reads registers from the inferior after crashing (command)."""
31 """Test that lldb reliably reads registers from the inferior after crashing (command)."""
37 """Test that lldb reliably catches the inferior crashing (Python API)."""
43 """Test that the lldb expression interpreter can read from the inferior after crashing (command)."""
48 """Test that the lldb expression interpreter can read from the inferior after crashing (command)."""
54 """Test that lldb function
[all...]
/external/lldb/test/functionalities/inline-stepping/
H A DTestInlineStepping.py5 import lldb namespace
53 self.main_source_spec = lldb.SBFileSpec (self.main_source)
68 threads = lldbutil.get_stopped_threads (self.process, lldb.eStopReasonPlanComplete)
70 destination_description = lldb.SBStream()
82 destination_description = lldb.SBStream()
85 actual_description = lldb.SBStream()
93 destination_description = lldb.SBStream()
104 target_line_entry = lldb.SBLineEntry()
137 # around a bug in lldb where the breakpoint on the containing line of an inlined function with no return value
242 lldb
[all...]
/external/lldb/test/functionalities/load_unload/
H A DTestLoadUnload.py8 import lldb namespace
140 """Test that lldb process load/unload command work correctly."""
149 # Use lldb's process load command to load the dylib, instead.
160 # Use lldb 'process load' to load the dylib.
179 # Use lldb 'process unload' to unload the dylib.
256 lldb.SBDebugger.Initialize()
257 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/longjmp/
H A DTestLongjmp.py7 import lldb namespace
77 lldb.SBDebugger.Initialize()
78 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/memory/read/
H A DTestMemoryRead.py8 import lldb namespace
55 # (lldb) memory read -f d -c 1 `&argc`
68 # (lldb) memory read --format uint32_t[] --size 4 --count 4 `&argc`
83 # (lldb) memory read --format char[] --size 7 --count 1 `&my_string`
88 # (lldb) memory read --format 'hex float' --size 16 `&argc`
96 # (lldb) memory read --format 'float' --count 1 --size 20 `&my_double`
104 lldb.SBDebugger.Initialize()
105 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/non-overlapping-index-variable-i/
H A DTestIndexVariable.py5 import lldb namespace
48 lldb.SBDebugger.Initialize()
49 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/platform/
H A DTestPlatformCommand.py2 Test some lldb platform commands.
7 import lldb namespace
38 lldb.SBDebugger.Initialize()
39 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/plugins/commands/
H A DTestPluginCommands.py8 import lldb namespace
27 debugger = lldb.SBDebugger.Create()
29 retobj = lldb.SBCommandReturnObject()
55 lldb.SBDebugger.Initialize()
56 atexit.register(lambda: lldb.SBDebugger.Terminate())
H A Dplugin.cpp20 namespace lldb { namespace
22 PluginInitialize (lldb::SBDebugger debugger);
25 class ChildCommand : public lldb::SBCommandPluginInterface
29 DoExecute (lldb::SBDebugger debugger,
31 lldb::SBCommandReturnObject &result)
50 lldb::PluginInitialize (lldb::SBDebugger debugger)
52 lldb::SBCommandInterpreter interpreter = debugger.GetCommandInterpreter();
53 lldb::SBCommand foo = interpreter.AddMultiwordCommand("plugin_loaded_command",NULL);
/external/lldb/test/functionalities/process_attach/
H A DTestProcessAttach.py7 import lldb namespace
82 lldb.SBDebugger.Initialize()
83 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/process_launch/
H A DTestProcessLaunch.py2 Test lldb process launch flags.
7 import lldb namespace
199 lldb.SBDebugger.Initialize()
200 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/recursion/
H A DTestValueObjectRecursion.py2 Test lldb data formatter subsystem.
7 import lldb namespace
72 lldb.SBDebugger.Initialize()
73 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/register/
H A DTestRegisters.py8 import lldb namespace
114 value = frame.FindValue(register, lldb.eValueTypeRegister)
120 error = lldb.SBError()
133 value = frame.FindValue(register, lldb.eValueTypeRegister)
156 self.assertTrue(process.GetState() == lldb.eStateStopped,
267 lldb.SBDebugger.Initialize()
268 atexit.register(lambda: lldb.SBDebugger.Terminate())

Completed in 357 milliseconds

1234567891011>>