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

1 2 3 4 5 6 7 8 9

  /external/lldb/test/functionalities/breakpoint/breakpoint_command/
TestRegexpBreakCommand.py 9 import lldbutil namespace
40 break_results = lldbutil.run_break_set_command (self, "b %d" % self.line)
41 lldbutil.check_breakpoint_result (self, break_results, file_name='main.c', line_number=self.line, num_locations=1)
43 break_results = lldbutil.run_break_set_command (self, "b %s:%d" % (self.source, self.line))
44 lldbutil.check_breakpoint_result (self, break_results, file_name='main.c', line_number=self.line, num_locations=1)
TestBreakpointCommand.py 9 import lldbutil namespace
52 lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=1, loc_exact=True)
53 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line, num_expected_locations=1, loc_exact=True)
54 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line, num_expected_locations=1, loc_exact=True)
92 lldbutil.run_break_set_by_regexp (self, r"._MyFunction", num_expected_locations=2)
94 lldbutil.run_break_set_by_regexp (self, r"._MyFunction", extra_options="-f a.c", num_expected_locations=1)
96 lldbutil.run_break_set_by_regexp (self, r"._MyFunction", extra_options="-f a.c -f b.c", num_expected_locations=2)
99 lldbutil.run_break_set_by_source_regexp (self, r"is about to return [12]0", extra_options="-f a.c -f b.c", num_expected_locations=2)
101 lldbutil.run_break_set_by_source_regexp (self, r"is about to return [12]0", extra_options="-f a.c", num_expected_locations=1)
175 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line, num_expected_locations=1, loc_exact=Tru (…)
    [all...]
  /external/lldb/test/python_api/lldbutil/frame/
TestFrameUtils.py 12 mydir = os.path.join("python_api", "lldbutil", "frame")
44 import lldbutil namespace
45 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonBreakpoint)
51 parent = lldbutil.get_parent_frame(frame0)
53 frame0_args = lldbutil.get_args_as_string(frame0)
54 parent_args = lldbutil.get_args_as_string(parent)
57 lldbutil.print_stacktrace(thread)
  /external/lldb/test/functionalities/breakpoint/breakpoint_ids/
TestBreakpointIDs.py 9 import lldbutil namespace
32 bpno = lldbutil.run_break_set_by_symbol (self, 'product', num_expected_locations=-1, sym_exact=False)
35 bpno = lldbutil.run_break_set_by_symbol (self, 'sum', num_expected_locations=-1, sym_exact=False)
38 bpno = lldbutil.run_break_set_by_symbol (self, 'junk', num_expected_locations=0, sym_exact=False)
  /external/lldb/test/functionalities/dead-strip/
TestDeadStrip.py 9 import lldbutil namespace
36 lldbutil.run_break_set_by_symbol (self, "f1", num_expected_locations=1, module_name="a.out")
39 lldbutil.run_break_set_by_symbol (self, "f2", num_expected_locations=0, module_name="a.out")
42 lldbutil.run_break_set_by_symbol (self, "f3", num_expected_locations=1, module_name="a.out")
  /external/lldb/test/lang/objc/foundation/
TestFoundationDisassembly.py 9 import lldbutil namespace
77 break_results = lldbutil.run_break_set_command (self, "_regexp-break %s"%(symbol_name))
78 lldbutil.check_breakpoint_result (self, break_results, symbol_name=symbol_name, num_locations=1)
81 lldbutil.run_break_set_by_symbol (self, '-[MyString initWithNSString:]', num_expected_locations=1, sym_exact=True)
84 lldbutil.run_break_set_by_selector (self, 'description', num_expected_locations=1, module_name='a.out')
87 break_results = lldbutil.run_break_set_command (self, "_regexp-break -[NSAutoreleasePool release]")
88 lldbutil.check_breakpoint_result (self, break_results, symbol_name='-[NSAutoreleasePool release]', num_locations=1)
TestObjCMethods.py 10 import lldbutil namespace
65 break_results = lldbutil.run_break_set_command(self, "_regexp-break +[NSString stringWithFormat:]")
66 lldbutil.check_breakpoint_result (self, break_results, symbol_name='+[NSString stringWithFormat:]', num_locations=1)
69 lldbutil.run_break_set_by_symbol (self, '-[MyString initWithNSString:]', num_expected_locations=1, sym_exact=True)
72 lldbutil.run_break_set_by_selector (self, 'description', num_expected_locations=1, module_name='a.out')
75 break_results = lldbutil.run_break_set_command(self, "_regexp-break -[NSAutoreleasePool release]")
76 lldbutil.check_breakpoint_result (self, break_results, symbol_name='-[NSAutoreleasePool release]', num_locations=1)
127 lldbutil.run_break_set_by_symbol (self, '-[MyString description]', num_expected_locations=1, sym_exact=True)
198 lldbutil.run_break_set_by_file_and_line (self, "main.m", self.line, num_expected_locations=1, loc_exact=True)
229 from lldbutil import stop_reason_to_st
    [all...]
  /external/lldb/test/lang/c/struct_types/
TestStructTypes.py 11 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/exceptions/
TestCPPExceptionBreakpoints.py 8 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)
  /external/lldb/test/lang/c/set_values/
TestSetValues.py 7 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/python_api/watchpoint/
TestSetWatchpoint.py 8 import lldb, lldbutil namespace
60 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonBreakpoint)
81 lldbutil.print_stacktraces(process)
83 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonWatchpoint)
91 lldbutil.print_stacktraces(process)
93 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonWatchpoint)
  /external/lldb/test/expression_command/radar_9531204/
TestPrintfAfterUp.py 9 import lldbutil namespace
22 lldbutil.run_break_set_by_symbol (self, 'foo', sym_exact=True, num_expected_locations=1)
  /external/lldb/test/expression_command/radar_9673664/
TestExprHelpExamples.py 9 import lldbutil namespace
31 lldbutil.run_break_set_by_file_and_line (self, self.main_source, self.line, num_expected_locations=1, loc_exact=True)
  /external/lldb/test/expression_command/test/
TestExprs2.py 8 import lldbutil namespace
29 lldbutil.run_break_set_by_file_and_line(self, "main.cpp", self.line, num_expected_locations=1,loc_exact=False)
  /external/lldb/test/lang/cpp/class_types/
TestClassTypes.py 6 import lldbutil namespace
8 import lldbutil namespace
74 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.line, num_expected_locations=-1)
134 lldbutil.state_type_to_str(process.GetState()))
139 from lldbutil import stop_reason_to_str
145 self.expect("%s:%d" % (lldbutil.get_filenames(thread)[0],
146 lldbutil.get_line_numbers(thread)[0]),
170 lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=-1)
  /external/lldb/test/functionalities/abbreviation/
TestCommonShortSpellings.py 10 import lldbutil namespace
34 match_object = lldbutil.run_break_set_command (self, "br s -n sum")
35 lldbutil.check_breakpoint_result (self, match_object, symbol_name='sum', symbol_match_exact=False, num_locations=1)
TestAbbreviations.py 9 import lldbutil namespace
100 match_object = lldbutil.run_break_set_command (self, "br s -n sum")
101 lldbutil.check_breakpoint_result (self, match_object, symbol_name='sum', symbol_match_exact=False, num_locations=1)
103 match_object = lldbutil.run_break_set_command (self, "br s -f main.cpp -l 32")
104 lldbutil.check_breakpoint_result (self, match_object, file_name='main.cpp', line_number=32, num_locations=1)
  /external/lldb/test/functionalities/archives/
TestBSDArchives.py 7 import lldbutil namespace
30 lldbutil.run_break_set_by_file_and_line (self, "a.c", self.line, num_expected_locations=1, loc_exact=True)
46 lldbutil.run_break_set_by_symbol (self, "b", num_expected_locations=1, sym_exact=True)
  /external/lldb/test/functionalities/breakpoint/inlined_breakpoints/
TestInlinedBreakpoints.py 10 import lldbutil namespace
42 lldbutil.run_break_set_by_file_and_line (self, "basic_type.cpp", self.line, num_expected_locations=0)
50 lldbutil.run_break_set_by_file_and_line (self, "basic_type.cpp", self.line, num_expected_locations=1, loc_exact=True)
  /external/lldb/test/lang/c/enum_types/
TestEnumTypes.py 7 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/python_api/lldbutil/process/
TestPrintStackTraces.py 2 Test SBprocess and SBThread APIs with printing of the stack traces using lldbutil.
13 mydir = "python_api/lldbutil/process"
45 import lldbutil namespace
49 lldbutil.state_type_to_str(process.GetState()))
51 stacktraces = lldbutil.print_stacktraces(process, string_buffer=True)
  /external/lldb/test/functionalities/thread/thread_exit/
TestThreadExit.py 9 import lldbutil namespace
46 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.break_1, num_expected_locations=1)
47 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.break_2, num_expected_locations=1)
48 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.break_3, num_expected_locations=1)
49 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.break_4, num_expected_locations=1)
  /external/lldb/test/python_api/lldbutil/iter/
TestRegistersIterator.py 13 mydir = os.path.join("python_api", "lldbutil", "iter")
25 """Test iterator works correctly for lldbutil.iter_registers()."""
44 import lldbutil namespace
48 # Dump the registers of this frame using lldbutil.get_GPRs() and friends.
52 REGs = lldbutil.get_GPRs(frame)
61 REGs = lldbutil.get_FPRs(frame)
70 REGs = lldbutil.get_ESRs(frame)
83 REGs = lldbutil.get_registers(frame, kind)
  /external/lldb/test/python_api/watchpoint/watchlocation/
TestSetWatchlocation.py 8 import lldb, lldbutil namespace
63 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonBreakpoint)
89 lldbutil.print_stacktraces(process)
91 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonWatchpoint)
96 self.expect(lldbutil.print_stacktrace(thread, string_buffer=True), exe=False,
  /external/lldb/test/functionalities/alias/
TestAliases.py 9 import lldbutil namespace
85 break_results = lldbutil.run_break_set_command (self, "bp set -n foo")
86 lldbutil.check_breakpoint_result (self, break_results, num_locations=1, symbol_name='foo', symbol_match_exact=False)
88 break_results = lldbutil.run_break_set_command (self, "bp set -n sum")
89 lldbutil.check_breakpoint_result (self, break_results, num_locations=1, symbol_name='sum', symbol_match_exact=False)
93 break_results = lldbutil.run_break_set_command (self, "bfl main.cpp 32")
94 lldbutil.check_breakpoint_result (self, break_results, num_locations=1, file_name='main.cpp', line_number=32)

Completed in 3520 milliseconds

1 2 3 4 5 6 7 8 9