Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp2364 StreamString command_stream; in LoadScriptingModule() local
2365 command_stream.Printf("if not (sys.path.__contains__('%s')):\n " in LoadScriptingModule()
2369 ExecuteMultipleLines(command_stream.GetData(), exc_options).Success(); in LoadScriptingModule()
2444 StreamString command_stream; in LoadScriptingModule() local
2445 command_stream.Clear(); in LoadScriptingModule()
2446 command_stream.Printf("sys.modules.__contains__('%s')", module_name.c_str()); in LoadScriptingModule()
2451 command_stream.GetData(), in LoadScriptingModule()
2462 command_stream.Clear(); in LoadScriptingModule()
2466 command_stream.Printf("import %s ; reload_module(%s)", in LoadScriptingModule()
2469 command_stream.Printf("reload_module(%s)", module_name.c_str()); in LoadScriptingModule()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1027 StreamString command_stream; in RunEnableCommand() local
1029 command_stream << "plugin structured-data darwin-log enable"; in RunEnableCommand()
1032 command_stream << ' '; in RunEnableCommand()
1033 command_stream << enable_options; in RunEnableCommand()
1038 interpreter.HandleCommand(command_stream.GetData(), eLazyBoolNo, in RunEnableCommand()