Home
last modified time | relevance | path

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

/xnu-11417.121.6/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))
481 cmd_str = "target modules add --uuid %s" % uuid
[all …]
H A Dxnutriage.py20 cmd_str = "image lookup -a {:#x}".format(a)
21 cmd_out = lldb_run_command(cmd_str)
61 cmd_str = "di -s {:#x} -c 1".format(link_register)
62 cmd_out = lldb_run_command(cmd_str)
H A Dkext.py447 cmd_str = "target modules load --file \"{:s}\" --slide {:s}".format(filename, str(slide))
448 debuglog(cmd_str)
450 cmd_str = "target modules load --file \"{:s}\"".format(filename)
452 cmd_str += " {:s} {:#0x} ".format(s.name, s.vmaddr)
453 debuglog(cmd_str)
455 lldb.debugger.HandleCommand(cmd_str)
/xnu-11417.121.6/tests/sched/
H A Dzero_to_n_tests.c44 char cmd_str[MAX_CMD_STR] = ""; in log_cmd() local
48 strlcat(cmd_str, s, MAX_CMD_STR); in log_cmd()
49 strlcat(cmd_str, " ", MAX_CMD_STR); in log_cmd()
52 T_LOG("%s\n", cmd_str); in log_cmd()