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

/freebsd-10.1-release/contrib/llvm/tools/lldb/tools/driver/
H A DDriver.cpp497 char command_string[PATH_MAX * 2]; local
502 ::snprintf (command_string, sizeof(command_string), "command source -s %i '%s'", m_option_data.m_source_quietly, command);
503 executed_command = command_string;
893 char command_string[PATH_MAX * 2]; local
899 ::snprintf (command_string,
900 sizeof (command_string),
906 ::snprintf (command_string,
907 sizeof(command_string),
912 m_debugger.HandleCommand (command_string);
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1154 CommandInterpreter::GetCommandObjectForCommand (std::string &command_string) argument
1161 size_t start = command_string.find_first_not_of (white_space);
1168 // Get the next word from command_string.
1169 end = command_string.find_first_of (white_space, start);
1171 end = command_string.size();
1172 std::string cmd_word = command_string.substr (start, end - start);
1192 // we are at the end of the command_string, then we are done. Otherwise, find the start of the
1195 if (!cmd_obj || !cmd_obj->IsMultiwordObject() || end >= command_string.size())
1198 start = command_string.find_first_not_of (white_space, end);
1205 if (end == command_string
1257 ExtractCommand(std::string &command_string, std::string &command, std::string &suffix, char &quote_char) argument
[all...]
/freebsd-10.1-release/crypto/openssh/
H A Dsshconnect.c107 char *command_string; local
119 command_string = expand_proxy_command(proxy_command, options.user,
121 debug("Executing proxy dialer command: %.500s", command_string);
149 argv[2] = command_string;
164 free(command_string);
185 char *command_string; local
198 command_string = expand_proxy_command(proxy_command, options.user,
200 debug("Executing proxy command: %.500s", command_string);
226 argv[2] = command_string;
247 free(command_string);
[all...]
H A Dreadconf.c413 char *shell, *command_string; local
425 xasprintf(&command_string, "exec %s", cmd);
451 argv[2] = command_string;
466 free(command_string);

Completed in 668 milliseconds