Lines Matching defs:bpno
519 bpno - breakpoint of the newly created breakpoint, -1 on error.
533 r"^Breakpoint (?P<bpno>[0-9]+): (?P<num_locations>[0-9]+) locations\.$",
534 r"^Breakpoint (?P<bpno>[0-9]+): (?P<num_locations>no) locations \(pending\)\.",
535 r"^Breakpoint (?P<bpno>[0-9]+): where = (?P<module>.*)`(?P<symbol>[+\-]{0,1}[^+]+)( \+ (?P<offset>[0-9]+)){0,1}( \[inlined\] (?P<inline_symbol>.*)){0,1} at (?P<file>[^:]+):(?P<line_no>[0-9]+)(?P<column>(:[0-9]+)?), address = (?P<address>0x[0-9a-fA-F]+)$",
536 r"^Breakpoint (?P<bpno>[0-9]+): where = (?P<module>.*)`(?P<symbol>.*)( \+ (?P<offset>[0-9]+)){0,1}, address = (?P<address>0x[0-9a-fA-F]+)$",
543 if not "bpno" in break_results:
544 break_results["bpno"] = -1
546 break_results["bpno"] = int(break_results["bpno"])
570 return int(break_results["bpno"])
665 bpno,
677 To test a breakpoint location, breakpoint number (bpno) and location_id must be set. In this case
681 bpno - breakpoint number to test
694 bkpt = target.FindBreakpointByID(bpno)