Lines Matching refs:cmd_str
49 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
471 debuglog(cmd_str)
472 lldb.debugger.HandleCommand(cmd_str)
489 cmd_str = "target modules load --uuid %s --slide %d" % ( uuid, load_address)
490 debuglog(cmd_str)
492 cmd_str = "target modules load --uuid {} ".format(uuid)
496 cmd_str += sections_str
497 debuglog(cmd_str)
499 lldb.debugger.HandleCommand(cmd_str)