Home
last modified time | relevance | path

Searched refs:command_str (Results 1 – 5 of 5) sorted by relevance

/llvm-project/llvm/utils/lit/lit/llvm/
H A Dsubst.py116 command_str = self.command.resolve(config, search_dirs)
118 command_str = str(self.command)
120 if command_str:
122 command_str = " ".join([command_str] + self.extra_args)
129 command_str = os.path.join(config.config.llvm_tools_dir, tool_name)
146 if command_str:
148 return (self.regex, tool_pipe, command_str)
/llvm-project/lldb/source/Commands/
H A DCommandObjectHelp.cpp26 std::string command_str = command.str(); in GenerateAdditionalHelpAvenuesMessage() local
30 !subcommand_str.empty() ? subcommand_str : command_str; in GenerateAdditionalHelpAvenuesMessage()
31 s->Printf("'%s' is not a known command.\n", command_str.c_str()); in GenerateAdditionalHelpAvenuesMessage()
/llvm-project/lldb/source/Plugins/Platform/Android/
H A DAdbClient.cpp547 const char *command_str = static_cast<const char *>(command); in PullFile()
548 if (strncmp(command_str, kSTAT, stat_len))
550 command_str); in PushFile()
532 const char *command_str = static_cast<const char *>(command); internalStat() local
/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig659 PythonString command_str(command);
660 PythonObject result = pfunc(command_str);
/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp810 std::string command_str = command.str(); in GetEmbeddedInterpreterModuleObjects()
863 Py_BuildValue("(Os)", session_dict.get(), command_str.c_str())); in ExecuteOneLine()
889 "python failed attempting to evaluate '%s'\n", command_str.c_str()); in ExecuteOneLine()
832 std::string command_str = command.str(); ExecuteOneLine() local