Searched defs:lldb (Results 151 - 175 of 421) sorted by relevance

1234567891011>>

/external/lldb/test/expression_command/issue_11588/
H A DTest11588.py9 import lldb namespace
35 breakpoint = target.BreakpointCreateBySourceRegex('Set breakpoint here.',lldb.SBFileSpec ("main.cpp", False))
39 self.assertTrue (process.GetState() == lldb.eStateStopped, "Stopped it too.")
55 target = lldb.debugger.GetSelectedTarget()
79 lldb.SBDebugger.Initialize()
80 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/expression_command/test/
H A DTestExprs.py11 Throw some expression commands with quotes at lldb.
16 import lldb namespace
81 # (const char *) $8 = 0x... "/Volumes/data/lldb/svn/trunk/test/expression_command/test/a.out"
94 filespec = lldb.SBFileSpec("main.cpp", False)
110 if process.GetState() != lldb.eStateStopped:
117 if thread.GetStopReason() != lldb.eStopReasonBreakpoint:
174 options = lldb.SBExpressionOptions()
185 """Throw some expression commands with quotes at lldb."""
234 lldb.SBDebugger.Initialize()
235 atexit.register(lambda: lldb
[all...]
/external/lldb/test/functionalities/abbreviation/
H A DTestAbbreviations.py2 Test some lldb command abbreviations.
7 import lldb namespace
50 self.expect("com sou ./change_prompt.lldb",
51 patterns = ["Executing commands in '.*change_prompt.lldb'"])
59 startstr = 'prompt (string) = "(lldb) "')
71 startstr = 'prompt (string) = "(lldb) "')
176 lldb.SBDebugger.Initialize()
177 atexit.register(lambda: lldb.SBDebugger.Terminate())
H A DTestCommonShortSpellings.py2 Test some lldb command abbreviations to make sure the common short spellings of
8 import lldb namespace
68 lldb.SBDebugger.Initialize()
69 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/alias/
H A DTestAliases.py2 Test lldb command aliases.
7 import lldb namespace
165 lldb.SBDebugger.Initialize()
166 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/archives/
H A DTestBSDArchives.py5 import lldb namespace
61 lldb.SBDebugger.Initialize()
62 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/breakpoint/breakpoint_command/
H A DTestRegexpBreakCommand.py7 import lldb namespace
56 lldb.SBDebugger.Initialize()
57 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/breakpoint/breakpoint_ids/
H A DTestBreakpointIDs.py2 Test lldb breakpoint ids.
7 import lldb namespace
61 lldb.SBDebugger.Initialize()
62 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/breakpoint/breakpoint_locations/
H A DTestBreakpointLocations.py7 import lldb namespace
96 lldb.SBDebugger.Initialize()
97 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/breakpoint/inlined_breakpoints/
H A DTestInlinedBreakpoints.py8 import lldb namespace
64 lldb.SBDebugger.Initialize()
65 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/command_script/
H A DTestCommandScript.py2 Test lldb Python commands.
7 import lldb namespace
144 lldb.SBDebugger.Initialize()
145 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/command_script/import/rdar-12586188/
H A DTestRdar12586188.py5 import lldb namespace
31 lldb.SBDebugger.Initialize()
32 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/conditional_break/
H A DTestConditionalBreak.py8 import lldb, lldbutil namespace
12 # lldb not able to digest the clang-generated debug info correctly with respect to function name
38 """Simulate a user using lldb commands to break on c() if called from a()."""
45 """Simulate a user using lldb commands to break on c() if called from a()."""
65 self.assertTrue(process.GetState() == lldb.eStateStopped,
106 """Simulate a user using lldb commands to break on c() if called from a()."""
108 # Sourcing .lldb in the current working directory, which sets the main
110 # breakpoint such that lldb only stops when the caller of c() is a().
113 print "About to source .lldb"
117 self.runCmd("command source .lldb")
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-advanced/
H A DTestDataFormatterAdv.py2 Test lldb data formatter subsystem.
7 import lldb namespace
299 lldb.SBDebugger.Initialize()
300 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/data-formatter/data-formatter-categories/
H A DTestDataFormatterCategories.py2 Test lldb data formatter subsystem.
7 import lldb namespace
337 lldb.SBDebugger.Initialize()
338 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/data-formatter/data-formatter-cpp/
H A DTestDataFormatterCpp.py2 Test lldb data formatter subsystem.
7 import lldb namespace
277 lldb.SBDebugger.Initialize()
278 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/data-formatter/data-formatter-disabling/
H A DTestDataFormatterDisabling.py2 Test lldb data formatter subsystem.
7 import lldb namespace
102 lldb.SBDebugger.Initialize()
103 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/data-formatter/data-formatter-globals/
H A DTestDataFormatterGlobals.py2 Test lldb data formatter subsystem.
7 import lldb namespace
81 lldb.SBDebugger.Initialize()
82 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/data-formatter/data-formatter-named-summaries/
H A DTestDataFormatterNamedSummaries.py2 Test lldb data formatter subsystem.
7 import lldb namespace
136 lldb.SBDebugger.Initialize()
137 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/data-formatter/data-formatter-script/
H A DTestDataFormatterScript.py2 Test lldb data formatter subsystem.
7 import lldb namespace
180 lldb.SBDebugger.Initialize()
181 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/data-formatter/data-formatter-skip-summary/
H A DTestDataFormatterSkipSummary.py2 Test lldb data formatter subsystem.
7 import lldb namespace
185 lldb.SBDebugger.Initialize()
186 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/data-formatter/data-formatter-smart-array/
H A DTestDataFormatterSmartArray.py2 Test lldb data formatter subsystem.
7 import lldb namespace
357 lldb.SBDebugger.Initialize()
358 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/
H A DTestDataFormatterLibccIterator.py2 Test lldb data formatter subsystem.
7 import lldb namespace
76 lldb.SBDebugger.Initialize()
77 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/
H A DTestDataFormatterLibcxxList.py2 Test lldb data formatter subsystem.
7 import lldb namespace
177 lldb.SBDebugger.Initialize()
178 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/
H A DTestDataFormatterLibccMap.py2 Test lldb data formatter subsystem.
7 import lldb namespace
318 lldb.SBDebugger.Initialize()
319 atexit.register(lambda: lldb.SBDebugger.Terminate())

Completed in 330 milliseconds

1234567891011>>