Home
last modified time | relevance | path

Searched refs:script_interpreter (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/lldb/source/Commands/
DCommandObjectScript.cpp112 ScriptInterpreter *script_interpreter = in DoExecute() local
115 if (script_interpreter == nullptr) { in DoExecute()
126 script_interpreter->ExecuteInterpreterLoop(); in DoExecute()
132 if (script_interpreter->ExecuteOneLine(command, &result)) in DoExecute()
/external/llvm-project/lldb/unittests/ScriptInterpreter/Lua/
DScriptInterpreterTests.cpp56 ScriptInterpreterLua script_interpreter(*debugger_sp); in TEST_F() local
58 EXPECT_TRUE(script_interpreter.ExecuteOneLine("foo = 1", &result)); in TEST_F()
59 EXPECT_FALSE(script_interpreter.ExecuteOneLine("nil = foo", &result)); in TEST_F()
/external/llvm-project/lldb/source/DataFormatters/
DTypeSummary.cpp169 ScriptInterpreter *script_interpreter = in FormatObject() local
172 if (!script_interpreter) { in FormatObject()
177 return script_interpreter->GetScriptedSummary( in FormatObject()
/external/autotest/server/cros/
Dprovisioner.py312 script_interpreter = first_line.lstrip('#!')
313 if script_interpreter:
314 return '%s %s' % (script_interpreter, remote_tmp_script)
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
DScriptInterpreterLua.cpp32 ScriptInterpreterLua &script_interpreter) in IOHandlerLuaInterpreter() argument
36 m_script_interpreter(script_interpreter) { in IOHandlerLuaInterpreter()
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/
DPlatformDarwin.cpp114 ScriptInterpreter *script_interpreter = in LocateExecutableScriptingResources() local
116 if (script_interpreter && in LocateExecutableScriptingResources()
117 script_interpreter->IsReservedWord(module_basename.c_str())) { in LocateExecutableScriptingResources()
/external/llvm-project/lldb/source/Core/
DModule.cpp1523 ScriptInterpreter *script_interpreter = debugger.GetScriptInterpreter(); in LoadScriptingResourceInTarget() local
1524 if (script_interpreter) { in LoadScriptingResourceInTarget()
1546 bool did_load = script_interpreter->LoadScriptingModule( in LoadScriptingResourceInTarget()
DFormatEntity.cpp401 ScriptInterpreter *script_interpreter = in RunScriptFormatKeyword() local
403 if (script_interpreter) { in RunScriptFormatKeyword()
407 if (script_interpreter->RunScriptFormatKeyword(script_function_name, t, in RunScriptFormatKeyword()
/external/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp2915 ScriptInterpreter *script_interpreter = in IOHandlerInterrupt() local
2917 if (script_interpreter) { in IOHandlerInterrupt()
2918 if (script_interpreter->Interrupt()) in IOHandlerInterrupt()
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp220 ScriptInterpreter *script_interpreter = in GetPythonInterpreter() local
222 return static_cast<ScriptInterpreterPythonImpl *>(script_interpreter); in GetPythonInterpreter()