Searched defs:lldbutil (Results 101 - 125 of 216) sorted by relevance

123456789

/external/lldb/test/functionalities/watchpoint/multiple_threads/
H A DTestWatchpointMultipleThreads.py10 import lldbutil namespace
67 lldbutil.run_break_set_by_file_and_line (self, None, self.first_stop, num_expected_locations=1)
112 lldbutil.run_break_set_by_file_and_line (self, None, self.first_stop, num_expected_locations=1)
/external/lldb/test/functionalities/watchpoint/variable_out_of_scope/
H A DTestWatchedVarHitWhenInScope.py9 import lldbutil namespace
53 lldbutil.run_break_set_by_symbol (self, "main", num_expected_locations=-1)
/external/lldb/test/functionalities/watchpoint/watchpoint_commands/command/
H A DTestWatchpointCommandLLDB.py9 import lldbutil namespace
66 lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=1)
115 lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=1)
H A DTestWatchpointCommandPython.py9 import lldbutil namespace
50 lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=1)
/external/lldb/test/functionalities/watchpoint/watchpoint_commands/condition/
H A DTestWatchpointConditionCmd.py9 import lldbutil namespace
50 lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=1)
/external/lldb/test/functionalities/watchpoint/watchpoint_events/
H A DTestWatchpointEvents.py6 import lldbutil namespace
68 threads = lldbutil.get_threads_stopped_at_breakpoint (process, break_in_main)
/external/lldb/test/functionalities/watchpoint/watchpoint_set_command/
H A DTestWatchLocationWithWatchSet.py9 import lldbutil namespace
50 lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=1)
H A DTestWatchpointSetErrorCases.py9 import lldbutil namespace
38 lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=1)
/external/lldb/test/lang/c/bitfields/
H A DTestBitfields.py7 import lldbutil namespace
54 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line, num_expected_locations=1, loc_exact=True)
142 from lldbutil import stop_reason_to_str
/external/lldb/test/lang/c/blocks/
H A DTestBlocks.py7 import lldbutil namespace
41 lldbutil.run_break_set_by_file_and_line (self, "main.c", line, num_expected_locations=1, loc_exact=True)
/external/lldb/test/lang/c/const_variables/
H A DTestConstVariables.py7 import lldbutil namespace
38 lldbutil.run_break_set_by_symbol (self, "main", num_expected_locations=1)
/external/lldb/test/lang/c/enum_types/
H A DTestEnumTypes.py7 import lldbutil namespace
40 bkpt_id = lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line, num_expected_locations=1, loc_exact=True)
82 lldbutil.continue_to_breakpoint (self.process(), bkpt)
/external/lldb/test/lang/c/forward/
H A DTestForwardDeclaration.py7 import lldbutil namespace
36 lldbutil.run_break_set_by_symbol (self, "foo", num_expected_locations=1, sym_exact=True)
/external/lldb/test/lang/c/function_types/
H A DTestFunctionTypes.py7 import lldbutil namespace
51 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line, num_expected_locations=1, loc_exact=True)
74 lldbutil.run_break_set_by_symbol (self, "string_not_empty", num_expected_locations=1, sym_exact=True)
/external/lldb/test/lang/c/global_variables/
H A DTestGlobalVariables.py7 import lldbutil namespace
45 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line, num_expected_locations=1, loc_exact=True)
/external/lldb/test/lang/c/set_values/
H A DTestSetValues.py7 import lldbutil namespace
42 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line1, num_expected_locations=1, loc_exact=True)
44 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line2, num_expected_locations=1, loc_exact=True)
46 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line3, num_expected_locations=1, loc_exact=True)
48 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line4, num_expected_locations=1, loc_exact=True)
50 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line5, num_expected_locations=1, loc_exact=True)
/external/lldb/test/lang/c/shared_lib/
H A DTestSharedLib.py7 import lldbutil namespace
54 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line, num_expected_locations=1, loc_exact=True)
/external/lldb/test/lang/c/shared_lib_stripped_symbols/
H A DTestSharedLibStrippedSymbols.py7 import lldbutil namespace
54 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line, num_expected_locations=1, loc_exact=True)
/external/lldb/test/lang/c/stepping/
H A DTestStepAndBreakpoints.py6 import lldbutil namespace
71 threads = lldbutil.get_threads_stopped_at_breakpoint (process, break_1_in_main)
85 threads = lldbutil.get_threads_stopped_at_breakpoint (process, break_in_a)
98 threads = lldbutil.get_threads_stopped_at_breakpoint (process, break_in_b)
168 threads = lldbutil.get_threads_stopped_at_breakpoint (process, break_in_b)
202 threads = lldbutil.continue_to_breakpoint(process, break_before_complex_1)
211 threads = lldbutil.continue_to_breakpoint (process, break_before_complex_2)
220 threads = lldbutil.continue_to_breakpoint (process, break_before_complex_3)
229 threads = lldbutil.get_stopped_threads(process, lldb.eStopReasonBreakpoint);
243 threads = lldbutil
[all...]
H A DTestThreadStepping.py8 import lldb, lldbutil namespace
10 import lldbutil namespace
44 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line1, num_expected_locations=1, loc_exact=True)
/external/lldb/test/lang/c/struct_types/
H A DTestStructTypes.py11 import lldbutil namespace
54 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line, num_expected_locations=1, loc_exact=False)
55 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.return_line, num_expected_locations=1, loc_exact=True)
63 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonBreakpoint)
76 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonBreakpoint)
/external/lldb/test/lang/cpp/char1632_t/
H A DTestChar1632T.py10 import lldbutil namespace
46 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.line)
/external/lldb/test/lang/cpp/dynamic-value/
H A DTestCppValueCast.py8 import lldb, lldbutil namespace
94 threads = lldbutil.get_threads_stopped_at_breakpoint (process, breakpoint)
122 threads = lldbutil.continue_to_breakpoint (process, breakpoint)
H A DTestDynamicValue.py8 import lldb, lldbutil namespace
128 threads = lldbutil.get_threads_stopped_at_breakpoint (process, first_call_bpt)
150 threads = lldbutil.continue_to_breakpoint (process, do_something_bpt)
211 threads = lldbutil.continue_to_breakpoint (process, second_call_bpt)
223 threads = lldbutil.continue_to_breakpoint (process, do_something_bpt)
/external/lldb/test/lang/cpp/exceptions/
H A DTestCPPExceptionBreakpoints.py8 import lldbutil namespace
51 stopped_threads = lldbutil.get_threads_stopped_at_breakpoint (process, exception_bkpt)
56 frame_functions = lldbutil.get_function_names(thread)
65 stopped_threads = lldbutil.continue_to_breakpoint (process, exception_bkpt)
69 frame_functions = lldbutil.get_function_names(thread)

Completed in 170 milliseconds

123456789