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

/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1124 CommandInterpreter::GetCommandObjectForCommand (std::string &command_string) argument
1131 size_t start = command_string.find_first_not_of (white_space);
1138 // Get the next word from command_string.
1139 end = command_string.find_first_of (white_space, start);
1141 end = command_string.size();
1142 std::string cmd_word = command_string.substr (start, end - start);
1162 // we are at the end of the command_string, then we are done. Otherwise, find the start of the
1165 if (!cmd_obj || !cmd_obj->IsMultiwordObject() || end >= command_string.size())
1168 start = command_string.find_first_not_of (white_space, end);
1175 if (end == command_string
1227 ExtractCommand(std::string &command_string, std::string &command, std::string &suffix, char &quote_char) argument
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/tools/driver/
H A DDriver.cpp1072 const char *command_string = SBEvent::GetCStringFromEvent(event); local
1073 if (command_string == NULL)
1074 command_string = "";
1083 m_debugger.GetCommandInterpreter().HandleCommand (command_string, result, true);
1403 char command_string[PATH_MAX * 2]; local
1411 ::snprintf (command_string, sizeof(command_string), "command source '%s'", command_file);
1412 m_debugger.GetCommandInterpreter().HandleCommand (command_string, result, false);
1444 ::snprintf (command_string,
1445 sizeof (command_string),
[all...]
/freebsd-10.0-release/crypto/openssh/
H A Dsshconnect.c88 char *command_string, *tmp; local
114 command_string = percent_expand(tmp, "h", host, "p", strport,
123 debug("Executing proxy command: %.500s", command_string);
149 argv[2] = command_string;
170 free(command_string);

Completed in 88 milliseconds