HomeSort by relevance Sort by last modified time
    Searched refs:lldbutil (Results 126 - 150 of 222) sorted by null

1 2 3 4 56 7 8 9

  /external/lldb/test/lang/objc/objc-struct-return/
TestObjCStructReturn.py 6 import lldbutil namespace
52 thread_list = lldbutil.get_threads_stopped_at_breakpoint (process, bpt)
  /external/lldb/test/lang/objc/objc-super/
TestObjCSuper.py 6 import lldbutil namespace
54 thread_list = lldbutil.get_threads_stopped_at_breakpoint (process, bpt)
  /external/lldb/test/lang/objc/rdar-10967107/
TestRdar10967107.py 9 import lldbutil namespace
46 lldbutil.run_break_set_by_file_and_line (self, self.main_source, self.line, num_expected_locations=1, loc_exact=True)
  /external/lldb/test/lang/objc/rdar-12408181/
TestRdar12408181.py 9 import lldbutil namespace
46 lldbutil.run_break_set_by_file_and_line (self, self.main_source, self.line, num_expected_locations=1, loc_exact=True)
  /external/lldb/test/python_api/objc_type/
TestObjCType.py 8 import lldb, lldbutil namespace
56 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonBreakpoint)
  /external/lldb/test/python_api/rdar-12481949/
Test-rdar-12481949.py 9 import lldbutil namespace
39 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.line, num_expected_locations=1, loc_exact=True)
  /external/lldb/test/functionalities/inline-stepping/
TestInlineStepping.py 6 import lldbutil namespace
68 threads = lldbutil.get_stopped_threads (self.process, lldb.eStopReasonPlanComplete)
129 threads = lldbutil.get_threads_stopped_at_breakpoint (self.process, break_1_in_main)
163 threads = lldbutil.continue_to_breakpoint (self.process, break_2_in_main)
193 threads = lldbutil.continue_to_breakpoint (self.process, break_3_in_main)
225 threads = lldbutil.get_threads_stopped_at_breakpoint (self.process, break_1_in_main)
  /external/lldb/test/functionalities/watchpoint/watchpoint_commands/
TestWatchpointCommands.py 9 import lldbutil namespace
115 lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=1)
170 lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=1)
210 lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=1)
254 lldbutil.run_break_set_by_file_and_line (self, "main.m")
309 lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=1)
349 lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=1)
393 lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=1)
447 lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=1)
448 lldbutil.run_break_set_by_file_and_line (self, None, self.line2, num_expected_locations=1
    [all...]
  /external/lldb/test/functionalities/inferior-assert/
TestInferiorAssert.py 5 import lldb, lldbutil namespace
70 lldbutil.run_break_set_by_file_and_line (self, "main.c", line, num_expected_locations=1, loc_exact=True)
119 lldbutil.state_type_to_str(process.GetState()))
121 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonSignal)
126 lldbutil.print_stacktrace(thread)
  /external/lldb/test/functionalities/inferior-crashing/
TestInferiorCrashing.py 5 import lldb, lldbutil namespace
87 lldbutil.run_break_set_by_file_and_line (self, "main.c", line, num_expected_locations=1, loc_exact=True)
135 lldbutil.state_type_to_str(process.GetState()))
137 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonException)
142 lldbutil.print_stacktrace(thread)
  /external/lldb/test/functionalities/inferior-crashing/recursive-inferior/
TestRecursiveInferior.py 5 import lldb, lldbutil namespace
87 lldbutil.run_break_set_by_file_and_line (self, "main.c", line, num_expected_locations=1, loc_exact=True)
139 lldbutil.state_type_to_str(process.GetState()))
141 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonException)
146 lldbutil.print_stacktrace(thread)
  /external/lldb/test/functionalities/load_unload/
TestLoadUnload.py 10 import lldbutil namespace
120 lldbutil.run_break_set_by_file_and_line (self, "d.c", self.line_d_function, num_expected_locations=1, loc_exact=True)
151 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line, num_expected_locations=1, loc_exact=True)
197 lldbutil.run_break_set_by_symbol (self, "a_function", num_expected_locations=0)
238 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line, num_expected_locations=1, loc_exact=True)
  /external/lldb/test/functionalities/return-value/
TestReturnValue.py 8 import lldb, lldbutil namespace
41 thread_list = lldbutil.get_threads_stopped_at_breakpoint (self.process, bkpt)
107 thread = lldbutil.get_stopped_thread (self.process, lldb.eStopReasonBreakpoint)
133 thread_list = lldbutil.get_threads_stopped_at_breakpoint (self.process, inner_sint_bkpt)
164 thread_list = lldbutil.get_threads_stopped_at_breakpoint (self.process, inner_float_bkpt)
  /external/lldb/test/lang/cpp/dynamic-value/
TestDynamicValue.py 8 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/objc/objc-dynamic-value/
TestObjCDynamicValue.py 8 import lldb, lldbutil namespace
84 threads = lldbutil.get_threads_stopped_at_breakpoint (process, main_before_setProperty_bkpt)
129 threads = lldbutil.get_stopped_threads (process, lldb.eStopReasonPlanComplete)
138 threads = lldbutil.continue_to_breakpoint (process, handle_SourceBase_bkpt)
173 threads = lldbutil.continue_to_breakpoint (process, handle_SourceBase_bkpt)
  /external/lldb/test/python_api/event/
TestEvents.py 8 import lldb, lldbutil namespace
95 lldbutil.print_stacktraces(process)
112 desc = lldbutil.get_description(event)
115 print "Process state:", lldbutil.state_type_to_str(process.GetState())
179 #print "Event type:", lldbutil.state_type_to_str(event.GetType())
257 desc = lldbutil.get_description(event)
  /external/lldb/test/python_api/frame/
TestFrames.py 9 import lldb, lldbutil namespace
99 # but they should be valid. Uses get_GPRs() from the lldbutil module.
100 gpr_reg_set = lldbutil.get_GPRs(frame)
192 lldbutil.print_stacktrace(thread)
202 lldbutil.print_stacktrace(thread)
213 lldbutil.print_stacktrace(thread)
  /external/lldb/test/python_api/hello_world/
TestHelloWorld.py 127 from lldbutil import stop_reason_to_str
153 import lldbutil namespace
154 stacktraces = lldbutil.print_stacktraces(process, string_buffer=True)
191 import lldbutil namespace
192 stacktraces = lldbutil.print_stacktraces(process, string_buffer=True)
  /external/lldb/test/python_api/value/
TestValueAPI.py 8 import lldb, lldbutil namespace
60 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonBreakpoint)
85 fmt = lldbutil.BasicFormatter()
86 cvf = lldbutil.ChildVisitingFormatter(indent_child=2)
87 rdf = lldbutil.RecursiveDecentFormatter(indent_child=2)
  /external/lldb/test/functionalities/breakpoint/breakpoint_ignore_count/
TestBreakpointIgnoreCount.py 8 import lldb, lldbutil namespace
59 lldbutil.run_break_set_by_file_and_line (self, 'main.c', self.line1, extra_options='-i 1', num_expected_locations=1, loc_exact=True)
134 #lldbutil.print_stacktraces(process)
135 from lldbutil import get_stopped_thread
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/
TestDataFormatterStdList.py 9 import lldbutil namespace
41 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.line, num_expected_locations=-1)
163 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.final_line, num_expected_locations=-1)
  /external/lldb/test/functionalities/watchpoint/multiple_threads/
TestWatchpointMultipleThreads.py 10 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/watchpoint_commands/command/
TestWatchpointCommandLLDB.py 9 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)
  /external/lldb/test/lang/cpp/class_static/
TestStaticVariables.py 9 import lldbutil namespace
58 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.line, num_expected_locations=1, loc_exact=True)
96 from lldbutil import stop_reason_to_str
  /external/lldb/test/lang/cpp/enum_types/
TestCPP11EnumTypes.py 7 import lldbutil namespace
129 bkpt_id = lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.line, num_expected_locations=1, loc_exact=True)
171 lldbutil.continue_to_breakpoint (self.process(), bkpt)

Completed in 819 milliseconds

1 2 3 4 56 7 8 9