Home
last modified time | relevance | path

Searched refs:run_break_set_command (Results 1 – 7 of 7) sorted by relevance

/external/lldb/test/functionalities/alias/
DTestAliases.py85 break_results = lldbutil.run_break_set_command (self, "bp set -n foo")
88 break_results = lldbutil.run_break_set_command (self, "bp set -n sum")
93 break_results = lldbutil.run_break_set_command (self, "bfl main.cpp 32")
/external/lldb/test/functionalities/breakpoint/breakpoint_command/
DTestRegexpBreakCommand.py40 break_results = lldbutil.run_break_set_command (self, "b %d" % self.line)
43 break_results = lldbutil.run_break_set_command (self, "b %s:%d" % (self.source, self.line))
/external/lldb/test/lang/objc/foundation/
DTestFoundationDisassembly.py77 break_results = lldbutil.run_break_set_command (self, "_regexp-break %s"%(symbol_name))
87 …break_results = lldbutil.run_break_set_command (self, "_regexp-break -[NSAutoreleasePool release]")
DTestObjCMethods.py65 …break_results = lldbutil.run_break_set_command(self, "_regexp-break +[NSString stringWithFormat:]")
75 … break_results = lldbutil.run_break_set_command(self, "_regexp-break -[NSAutoreleasePool release]")
/external/lldb/test/functionalities/abbreviation/
DTestAbbreviations.py100 match_object = lldbutil.run_break_set_command (self, "br s -n sum")
103 match_object = lldbutil.run_break_set_command (self, "br s -f main.cpp -l 32")
DTestCommonShortSpellings.py34 match_object = lldbutil.run_break_set_command (self, "br s -n sum")
/external/lldb/test/
Dlldbutil.py321 break_results = run_break_set_command (test, command)
342 break_results = run_break_set_command (test, command)
362 break_results = run_break_set_command (test, command)
378 break_results = run_break_set_command (test, command)
390 break_results = run_break_set_command (test, command)
396 def run_break_set_command (test, command): function