Home
last modified time | relevance | path

Searched refs:cmd_str (Results 1 – 4 of 4) sorted by relevance

/xnu-11215.81.4/tools/lldbmacros/
H A Dutils.py41 cmd_str = enable_log_base_cmd + ' lldb api'
42 print(cmd_str)
43 print(lldb_run_command(cmd_str))
44 cmd_str = enable_log_base_cmd + ' gdb-remote packets'
45 print(cmd_str)
46 print(lldb_run_command(cmd_str))
47 cmd_str = enable_log_base_cmd + ' kdp-remote packets'
48 print(cmd_str)
49 print(lldb_run_command(cmd_str))
465 cmd_str = "target modules add --uuid %s" % uuid
[all …]
H A Dxnutriage.py21 cmd_str = "image lookup -a {:#x}".format(a)
22 cmd_out = lldb_run_command(cmd_str)
64 cmd_str = "di -s {:#x} -c 1".format(link_register)
65 cmd_out = lldb_run_command(cmd_str)
H A Dkext.py445 cmd_str = "target modules load --file \"{:s}\" --slide {:s}".format(filename, str(slide))
446 debuglog(cmd_str)
448 cmd_str = "target modules load --file \"{:s}\"".format(filename)
450 cmd_str += " {:s} {:#0x} ".format(s.name, s.vmaddr)
451 debuglog(cmd_str)
453 lldb.debugger.HandleCommand(cmd_str)
/xnu-11215.81.4/tests/sched/
H A Dzero_to_n_tests.c43 char cmd_str[MAX_CMD_STR] = ""; in log_cmd() local
47 strlcat(cmd_str, s, MAX_CMD_STR); in log_cmd()
48 strlcat(cmd_str, " ", MAX_CMD_STR); in log_cmd()
51 T_LOG("%s\n", cmd_str); in log_cmd()