Lines Matching refs:cmd_str
41 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
482 debuglog(cmd_str)
483 lldb.debugger.HandleCommand(cmd_str)
500 cmd_str = "target modules load --uuid %s --slide %d" % ( uuid, load_address)
501 debuglog(cmd_str)
503 cmd_str = "target modules load --uuid {} ".format(uuid)
507 cmd_str += sections_str
508 debuglog(cmd_str)
510 lldb.debugger.HandleCommand(cmd_str)