Searched defs:lldb (Results 101 - 125 of 421) sorted by relevance

1234567891011>>

/external/lldb/test/expression_command/persistent_types/
H A DTestPersistentTypes.py2 Test that lldb persistent types works correctly.
7 import lldb namespace
15 """Test that lldb persistent types works correctly."""
49 lldb.SBDebugger.Initialize()
50 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/expression_command/persistent_variables/
H A DTestPersistentVariables.py2 Test that lldb persistent variables works correctly.
7 import lldb namespace
15 """Test that lldb persistent variables works correctly."""
55 lldb.SBDebugger.Initialize()
56 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/expression_command/radar_8638051/
H A DTest8638051.py2 Test the robustness of lldb expression parser.
7 import lldb namespace
33 # lldb expression command: Could this crash be avoided
41 lldb.SBDebugger.Initialize()
42 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/expression_command/radar_9531204/
H A DTestPrintfAfterUp.py7 import lldb namespace
43 lldb.SBDebugger.Initialize()
44 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/expression_command/radar_9673664/
H A DTestExprHelpExamples.py2 Test example snippets from the lldb 'help expression' output.
7 import lldb namespace
35 # rdar://problem/9673664 lldb expression evaluation problem
45 lldb.SBDebugger.Initialize()
46 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/expression_command/test/
H A DTestExprs2.py7 import lldb namespace
62 lldb.SBDebugger.Initialize()
63 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/expression_command/timeout/
H A DTestCallWithTimeout.py6 import lldb namespace
19 self.main_source_spec = lldb.SBFileSpec (self.main_source)
59 options = lldb.SBExpressionOptions()
72 result = lldb.SBCommandReturnObject()
74 self.assertTrue (return_value == lldb.eReturnStatusFailed)
86 result = lldb.SBCommandReturnObject()
88 self.assertTrue(return_value == lldb.eReturnStatusSuccessFinishResult)
92 lldb.SBDebugger.Initialize()
93 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/expression_command/two-files/
H A DTestObjCTypeQueryFromOtherCompileUnit.py8 import lldb namespace
53 lldb.SBDebugger.Initialize()
54 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/backticks/
H A DTestBackticksWithoutATarget.py7 import lldb namespace
21 lldb.SBDebugger.Initialize()
22 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/command_history/
H A DTestCommandHistory.py7 import lldb namespace
70 lldb.SBDebugger.Initialize()
71 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/command_regex/
H A DTestCommandRegex.py2 Test lldb 'commands regex' command which allows the user to create a regular expression command.
7 import lldb namespace
17 prompt = "(lldb) "
25 # So that the spawned lldb session gets shutdown durng teardown.
42 lldb.SBDebugger.Initialize()
43 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/command_source/
H A DTestCommandSource.py2 Test that lldb command "command source" works correctly.
9 import lldb namespace
17 """Test that lldb command "command source" works correctly."""
19 # Sourcing .lldb in the current working directory, which in turn imports
21 self.runCmd("command source .lldb")
44 lldb.SBDebugger.Initialize()
45 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/connect_remote/
H A DTestConnectRemote.py2 Test lldb 'process connect' command.
7 import lldb namespace
42 lldb.SBDebugger.Initialize()
43 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/data-formatter/data-formatter-python-synth/
H A Dftsp.py1 import lldb namespace
24 self.char = self.valobj.GetType().GetBasicType(lldb.eBasicTypeChar)
/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/plugins/commands/
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/set-data/
H A DTestSetData.py7 import lldb namespace
40 my_data = lldb.SBData.CreateDataFromSInt32Array(lldb.eByteOrderLittle, 8, [4])
41 err = lldb.SBError()
55 my_data = lldb.SBData.CreateDataFromUInt64Array(process.GetByteOrder(), 8, [0])
57 my_data = lldb.SBData.CreateDataFromUInt32Array(process.GetByteOrder(), 4, [0])
59 err = lldb.SBError()
68 lldb.SBDebugger.Initialize()
69 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/functionalities/single-quote-in-filename-to-lldb/
H A DTestSingleQuoteInFilename.py2 Test the lldb command line takes a filename with single quote chars.
7 import lldb namespace
13 mydir = os.path.join("functionalities", "single-quote-in-filename-to-lldb")
26 @skipIfLinux # llvm.org/pr14637: this test case fails sometimes because the input prompt "(lldb)" is missing
28 """Test that 'lldb my_file_name' works where my_file_name is a string with a single quote char in it."""
32 # The default lldb prompt.
33 prompt = "(lldb) "
72 lldb.SBDebugger.Initialize()
73 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/lang/c/strings/
H A DTestCStrings.py4 import lldb namespace
75 lldb.SBDebugger.Initialize()
76 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/lang/cpp/bool/
H A DTestCPPBool.py4 import lldb namespace
50 lldb.SBDebugger.Initialize()
51 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/lang/cpp/call-function/
H A DTestCallCPPFunction.py5 import lldb namespace
48 lldb.SBDebugger.Initialize()
49 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/lang/cpp/overloaded-functions/
H A DTestOverloadedFunctions.py5 import lldb namespace
51 lldb.SBDebugger.Initialize()
52 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/lang/cpp/rvalue-references/
H A DTestRvalueReferences.py5 import lldb namespace
48 # With gcc 4.8.1, lldb reports the type as (int &&const)
71 lldb.SBDebugger.Initialize()
72 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/lang/cpp/static_members/
H A DTestCPPStaticMembers.py4 import lldb namespace
73 lldb.SBDebugger.Initialize()
74 atexit.register(lambda: lldb.SBDebugger.Terminate())
/external/lldb/test/lang/cpp/static_methods/
H A DTestCPPStaticMethods.py5 import lldb namespace
52 lldb.SBDebugger.Initialize()
53 atexit.register(lambda: lldb.SBDebugger.Terminate())

Completed in 4537 milliseconds

1234567891011>>