Home
last modified time | relevance | path

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

/xnu-10002.1.13/tools/lldbmacros/
H A Dutils.py49 cmd_str = enable_log_base_cmd + ' lldb api'
50 print(cmd_str)
51 print(lldb_run_command(cmd_str))
52 cmd_str = enable_log_base_cmd + ' gdb-remote packets'
53 print(cmd_str)
54 print(lldb_run_command(cmd_str))
55 cmd_str = enable_log_base_cmd + ' kdp-remote packets'
56 print(cmd_str)
57 print(lldb_run_command(cmd_str))
470 cmd_str = "target modules add --uuid %s" % uuid
[all …]
H A Dxnutriage.py23 cmd_str = "image lookup -a {:#x}".format(a)
24 cmd_out = lldb_run_command(cmd_str)
66 cmd_str = "di -s {:#x} -c 1".format(link_register)
67 cmd_out = lldb_run_command(cmd_str)
H A Dkext.py435 cmd_str = "target modules load --file \"{:s}\" --slide {:s}".format(filename, str(slide))
436 debuglog(cmd_str)
438 cmd_str = "target modules load --file \"{:s}\"".format(filename)
440 cmd_str += " {:s} {:#0x} ".format(s.name, s.vmaddr)
441 debuglog(cmd_str)
443 lldb.debugger.HandleCommand(cmd_str)
/xnu-10002.1.13/tests/
H A Dzero_to_n_tests.c39 char cmd_str[MAX_CMD_STR] = ""; in log_cmd() local
43 strlcat(cmd_str, s, MAX_CMD_STR); in log_cmd()
44 strlcat(cmd_str, " ", MAX_CMD_STR); in log_cmd()
47 T_LOG("%s\n", cmd_str); in log_cmd()