Searched refs:command_string (Results 1 – 4 of 4) sorted by relevance
/external/lldb/source/Interpreter/ |
D | CommandInterpreter.cpp | 1124 CommandInterpreter::GetCommandObjectForCommand (std::string &command_string) in GetCommandObjectForCommand() argument 1131 size_t start = command_string.find_first_not_of (white_space); in GetCommandObjectForCommand() 1139 end = command_string.find_first_of (white_space, start); in GetCommandObjectForCommand() 1141 end = command_string.size(); in GetCommandObjectForCommand() 1142 std::string cmd_word = command_string.substr (start, end - start); in GetCommandObjectForCommand() 1165 if (!cmd_obj || !cmd_obj->IsMultiwordObject() || end >= command_string.size()) in GetCommandObjectForCommand() 1168 start = command_string.find_first_not_of (white_space, end); in GetCommandObjectForCommand() 1175 if (end == command_string.size()) in GetCommandObjectForCommand() 1176 command_string.clear(); in GetCommandObjectForCommand() 1178 command_string = command_string.substr(end); in GetCommandObjectForCommand() [all …]
|
/external/lldb/tools/driver/ |
D | Driver.cpp | 1072 const char *command_string = SBEvent::GetCStringFromEvent(event); in HandleIOEvent() local 1073 if (command_string == NULL) in HandleIOEvent() 1074 command_string = ""; in HandleIOEvent() 1083 m_debugger.GetCommandInterpreter().HandleCommand (command_string, result, true); in HandleIOEvent() 1403 char command_string[PATH_MAX * 2]; in MainLoop() local 1411 … ::snprintf (command_string, sizeof(command_string), "command source '%s'", command_file); in MainLoop() 1412 … m_debugger.GetCommandInterpreter().HandleCommand (command_string, result, false); in MainLoop() 1444 ::snprintf (command_string, in MainLoop() 1445 sizeof (command_string), in MainLoop() 1451 ::snprintf (command_string, in MainLoop() [all …]
|
/external/openssh/ |
D | sshconnect.c | 109 char *command_string; in ssh_proxy_fdpass_connect() local 121 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect() 123 debug("Executing proxy dialer command: %.500s", command_string); in ssh_proxy_fdpass_connect() 151 argv[2] = command_string; in ssh_proxy_fdpass_connect() 166 free(command_string); in ssh_proxy_fdpass_connect() 187 char *command_string; in ssh_proxy_connect() local 200 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_connect() 202 debug("Executing proxy command: %.500s", command_string); in ssh_proxy_connect() 228 argv[2] = command_string; in ssh_proxy_connect() 249 free(command_string); in ssh_proxy_connect()
|
D | readconf.c | 417 char *shell, *command_string; in execute_in_shell() local 429 xasprintf(&command_string, "exec %s", cmd); in execute_in_shell() 455 argv[2] = command_string; in execute_in_shell() 470 free(command_string); in execute_in_shell()
|