Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp2767 StreamString command_stream; in LoadScriptingModule() local
2768 command_stream.Printf("if not (sys.path.__contains__('%s')):\n " in LoadScriptingModule()
2772 ExecuteMultipleLines(command_stream.GetData(), in LoadScriptingModule()
2837 StreamString command_stream; in LoadScriptingModule() local
2838 command_stream.Clear(); in LoadScriptingModule()
2839 command_stream.Printf("sys.modules.__contains__('%s')", module_name.c_str()); in LoadScriptingModule()
2845 command_stream.GetData(), in LoadScriptingModule()
2853 command_stream.Clear(); in LoadScriptingModule()
2854 command_stream.Printf("sys.getrefcount(%s)", module_name.c_str()); in LoadScriptingModule()
2862 command_stream.Clear(); in LoadScriptingModule()
[all …]
/external/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
DStructuredDataDarwinLog.cpp1029 StreamString command_stream; in RunEnableCommand() local
1031 command_stream << "plugin structured-data darwin-log enable"; in RunEnableCommand()
1034 command_stream << ' '; in RunEnableCommand()
1035 command_stream << enable_options; in RunEnableCommand()
1040 interpreter.HandleCommand(command_stream.GetData(), eLazyBoolNo, in RunEnableCommand()