Lines Matching +full:fetch +full:- +full:depth

64     # Respect --apple-sdk <path> if it's specified. If the SDK is simply
88 subprocess.check_output(["xcrun", "--sdk", sdk, "--show-sdk-version"])
90 .decode("utf-8")
96 subprocess.check_output(["xcrun", "--sdk", sdk, "--show-sdk-path"])
98 .decode("utf-8")
104 subprocess.check_output(["xcrun", "-sdk", sdk, "-f", "clang"])
106 .decode("utf-8")
220 def _enum_names(prefix: str) -> Dict[int, str]:
233 def state_type_to_str(enum: int) -> str:
244 def stop_reason_to_str(enum: int) -> str:
255 def symbol_type_to_str(enum: int) -> str:
266 def value_type_to_str(enum: int) -> str:
327 command = "breakpoint set -P " + class_name
349 If num_expected_locations is -1, we check that we got AT LEAST one location. If num_expected_locations is -2, we don't
356 command = "breakpoint set -l %d" % (line_number)
358 command = 'breakpoint set -f "%s" -l %d' % (file_name, line_number)
361 command += " --shlib '%s'" % (module_name)
389 num_expected_locations=-1,
397 command = 'breakpoint set -n "%s"' % (symbol)
400 command += " --shlib '%s'" % (module_name)
424 test, selector, extra_options=None, num_expected_locations=-1, module_name=None
428 command = 'breakpoint set -S "%s"' % (selector)
431 command += ' --shlib "%s"' % (module_name)
456 test, regexp, extra_options=None, num_expected_locations=-1
460 command = 'breakpoint set -r "%s"' % (regexp)
472 test, regexp, extra_options=None, num_expected_locations=-1
475 command = 'breakpoint set -p "%s"' % (regexp)
493 num_expected_locations=-1,
495 command = 'breakpoint set -y "%s"' % (specifier)
514 """Run the command passed in - it must be some break set variant - and analyze the result.
515 Returns a dictionary of information gleaned from the command-line results.
519 bpno - breakpoint of the newly created breakpoint, -1 on error.
520 num_locations - number of locations set for the breakpoint.
523 file - source file name
524 line_no - source line number
525 column - source column number
526 symbol - symbol name
527 inline_symbol - inlined symbol name
528 offset - offset from the original symbol
529 module - module
530 address - address at which the breakpoint was set."""
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]+)$",
541 # We always insert the breakpoint number, setting it to -1 if we couldn't find it
544 break_results["bpno"] = -1
577 line_number=-1,
582 offset=-1,
583 num_locations=-1,
587 if num_locations == -1:
591 elif num_locations != -2:
607 if line_number != -1:
608 out_line_number = -1
646 out_symbol_name.find(symbol_name) != -1,
657 module_name.find(out_module_name) != -1,
680 test - test context
681 bpno - breakpoint number to test
682 expected_locations - expected number of locations for this breakpoint. If 'None' this parameter is not tested.
683 expected_resolved_count - expected resolved locations number for the breakpoint. If 'None' - all locations should be resolved.
684 expected_hit_count - expected hit count for this breakpoint. If 'None' this parameter is not tested.
685 location_id - If not 'None' sets the location ID for the breakpoint to test.
686 expected_location_resolved - Extected resolved status for the location_id (True/False). Default - True.
687 expected_location_hit_count - Expected hit count for the breakpoint at location_id. Must be set if the location_id parameter is set.
854 "settings set target.env-vars {}".format(lldbtest_config.inferior_env)
883 retry -= 1
1085 depth = thread.GetNumFrames()
1086 if depth <= 1:
1167 depth = thread.GetNumFrames()
1188 for i in range(depth):
1196 symbol_offset = file_addr - start_addr
1243 expect. Stop-and-restart events (where GetRestartedFromEvent() returns true) are ignored.
1287 """Fetch one event from the listener and return it if it matches the provided broadcaster.
1308 test.fail("couldn't fetch an event before reaching the timeout.")
1507 if lldb.remote_platform.GetName() == "remote-windows":
1545 command += " -t"
1567 command += " -p {0}".format(pass_action)
1569 command += " -s {0}".format(stop_action)
1571 command += " -n {0}".format(notify_action)
1666 """parse a gdb-remote packet log file and extract the response to qProcessInfo"""
1684 """parse a gdb-remote packet log file and extract the *last* complete
1698 dylib_info = json.loads(line.replace("}]", "}")[:-4])