Searched refs:command_string (Results 1 – 3 of 3) sorted by relevance
| /freebsd-10-stable/contrib/llvm/tools/lldb/tools/driver/ |
| D | Driver.cpp | 497 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 …]
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Interpreter/ |
| D | CommandInterpreter.cpp | 1154 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 …]
|
| /freebsd-10-stable/crypto/openssh/ |
| D | sshconnect.c | 111 char *command_string; in ssh_proxy_fdpass_connect() local 123 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect() 125 debug("Executing proxy dialer command: %.500s", command_string); in ssh_proxy_fdpass_connect() 153 argv[2] = command_string; in ssh_proxy_fdpass_connect() 168 free(command_string); in ssh_proxy_fdpass_connect() 190 char *command_string; in ssh_proxy_connect() local 203 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_connect() 205 debug("Executing proxy command: %.500s", command_string); in ssh_proxy_connect() 231 argv[2] = command_string; in ssh_proxy_connect() 252 free(command_string); in ssh_proxy_connect()
|