Home
last modified time | relevance | path

Searched refs:break_results (Results 1 – 5 of 5) sorted by relevance

/external/lldb/test/
Dlldbutil.py321 break_results = run_break_set_command (test, command)
324 …check_breakpoint_result (test, break_results, num_locations=num_expected_locations, file_name = fi…
326 check_breakpoint_result (test, break_results, num_locations = num_expected_locations)
328 return get_bpno_from_match (break_results)
342 break_results = run_break_set_command (test, command)
345 …check_breakpoint_result (test, break_results, num_locations = num_expected_locations, symbol_name …
347 check_breakpoint_result (test, break_results, num_locations = num_expected_locations)
349 return get_bpno_from_match (break_results)
362 break_results = run_break_set_command (test, command)
365 …check_breakpoint_result (test, break_results, num_locations = num_expected_locations, symbol_name …
[all …]
/external/lldb/test/functionalities/alias/
DTestAliases.py85 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_…
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_…
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…
/external/lldb/test/functionalities/breakpoint/breakpoint_command/
DTestRegexpBreakCommand.py40 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, …
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, …
/external/lldb/test/lang/objc/foundation/
DTestFoundationDisassembly.py77 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)
87break_results = lldbutil.run_break_set_command (self, "_regexp-break -[NSAutoreleasePool release]")
88 …lldbutil.check_breakpoint_result (self, break_results, symbol_name='-[NSAutoreleasePool release]',…
DTestObjCMethods.py65break_results = lldbutil.run_break_set_command(self, "_regexp-break +[NSString stringWithFormat:]")
66 …lldbutil.check_breakpoint_result (self, break_results, symbol_name='+[NSString stringWithFormat:]'…
75break_results = lldbutil.run_break_set_command(self, "_regexp-break -[NSAutoreleasePool release]")
76 …lldbutil.check_breakpoint_result (self, break_results, symbol_name='-[NSAutoreleasePool release]',…