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))
465 cmd_str = "target modules add --uuid %s" % uuid
466 debuglog(cmd_str)
467 lldb.debugger.HandleCommand(cmd_str)
484 cmd_str = "target modules load --uuid %s --slide %d" % ( uuid, load_address)
485 debuglog(cmd_str)
487 cmd_str = "target modules load --uuid {} ".format(uuid)
491 cmd_str += sections_str
492 debuglog(cmd_str)
494 lldb.debugger.HandleCommand(cmd_str)