Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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)
128 command_str = os.path.join(
145 if command_str:
147 return (self.regex, tool_pipe, command_str)
/llvm-project-15.0.7/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-15.0.7/lldb/source/Plugins/Platform/Android/
H A DAdbClient.cpp532 const char *command_str = static_cast<const char *>(command); in internalStat() local
533 if (strncmp(command_str, kSTAT, stat_len)) in internalStat()
534 return Status("Got invalid stat command: %s", command_str); in internalStat()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp814 std::string command_str = command.str(); in ExecuteOneLine() local
867 Py_BuildValue("(Os)", session_dict.get(), command_str.c_str())); in ExecuteOneLine()
893 "python failed attempting to evaluate '%s'\n", command_str.c_str()); in ExecuteOneLine()