Home
last modified time | relevance | path

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

/trueos/contrib/llvm/tools/lldb/tools/driver/
HDDriver.cpp497 char command_string[PATH_MAX * 2]; in ExecuteInitialCommands() local
502 …::snprintf (command_string, sizeof(command_string), "command source -s %i '%s'", m_option_data.m_s… in ExecuteInitialCommands()
503 executed_command = command_string; in ExecuteInitialCommands()
893 char command_string[PATH_MAX * 2]; in MainLoop() local
899 ::snprintf (command_string, in MainLoop()
900 sizeof (command_string), in MainLoop()
906 ::snprintf (command_string, in MainLoop()
907 sizeof(command_string), in MainLoop()
912 m_debugger.HandleCommand (command_string); in MainLoop()
930 ::snprintf (command_string, in MainLoop()
[all …]
/trueos/contrib/llvm/tools/lldb/source/Interpreter/
HDCommandInterpreter.cpp1154 CommandInterpreter::GetCommandObjectForCommand (std::string &command_string) in GetCommandObjectForCommand() argument
1161 size_t start = command_string.find_first_not_of (white_space); in GetCommandObjectForCommand()
1169 end = command_string.find_first_of (white_space, start); in GetCommandObjectForCommand()
1171 end = command_string.size(); in GetCommandObjectForCommand()
1172 std::string cmd_word = command_string.substr (start, end - start); in GetCommandObjectForCommand()
1195 if (!cmd_obj || !cmd_obj->IsMultiwordObject() || end >= command_string.size()) in GetCommandObjectForCommand()
1198 start = command_string.find_first_not_of (white_space, end); in GetCommandObjectForCommand()
1205 if (end == command_string.size()) in GetCommandObjectForCommand()
1206 command_string.clear(); in GetCommandObjectForCommand()
1208 command_string = command_string.substr(end); in GetCommandObjectForCommand()
[all …]
/trueos/crypto/openssh/
HDsshconnect.c107 char *command_string; in ssh_proxy_fdpass_connect() local
119 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect()
121 debug("Executing proxy dialer command: %.500s", command_string); in ssh_proxy_fdpass_connect()
149 argv[2] = command_string; in ssh_proxy_fdpass_connect()
164 free(command_string); in ssh_proxy_fdpass_connect()
185 char *command_string; in ssh_proxy_connect() local
198 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_connect()
200 debug("Executing proxy command: %.500s", command_string); in ssh_proxy_connect()
226 argv[2] = command_string; in ssh_proxy_connect()
247 free(command_string); in ssh_proxy_connect()
HDreadconf.c413 char *shell, *command_string; in execute_in_shell() local
425 xasprintf(&command_string, "exec %s", cmd); in execute_in_shell()
451 argv[2] = command_string; in execute_in_shell()
466 free(command_string); in execute_in_shell()