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

/freebsd-10.3-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.3-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.3-release/crypto/openssh/
H A Dsshconnect.c111 char *command_string; local
123 command_string = expand_proxy_command(proxy_command, options.user,
125 debug("Executing proxy dialer command: %.500s", command_string);
153 argv[2] = command_string;
168 free(command_string);
190 char *command_string; local
203 command_string = expand_proxy_command(proxy_command, options.user,
205 debug("Executing proxy command: %.500s", command_string);
231 argv[2] = command_string;
252 free(command_string);
[all...]

Completed in 103 milliseconds