Home
last modified time | relevance | path

Searched refs:commands_stream (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/lldb/tools/driver/
H A DDriver.cpp486 SBStream commands_stream; in MainLoop() local
490 WriteCommandsForSourcing(eCommandPlacementBeforeFile, commands_stream); in MainLoop()
500 commands_stream.Printf("target create --arch=%s %s", arch_name, in MainLoop()
503 commands_stream.Printf("target create %s", in MainLoop()
507 commands_stream.Printf(" --core %s", in MainLoop()
510 commands_stream.Printf("\n"); in MainLoop()
513 commands_stream.Printf("settings set -- target.run-args "); in MainLoop()
515 commands_stream.Printf( in MainLoop()
517 commands_stream.Printf("\n"); in MainLoop()
520 commands_stream.Printf("target create --core %s\n", in MainLoop()
[all …]
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dcrashlog.py1135 commands_stream = lldb.SBStream()
1136 commands_stream.Print("process status --verbose\n")
1137 commands_stream.Print("thread backtrace --extended true\n")
1138 error = debugger.SetInputString(commands_stream.GetData())