Home
last modified time | relevance | path

Searched refs:command_string (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1480 llvm::StringRef &command_string) { in GetCommandObjectForCommand() argument
1486 size_t start = command_string.find_first_not_of(k_white_space); in GetCommandObjectForCommand()
1492 end = command_string.find_first_of(k_white_space, start); in GetCommandObjectForCommand()
1494 end = command_string.size(); in GetCommandObjectForCommand()
1496 std::string(command_string.substr(start, end - start)); in GetCommandObjectForCommand()
1520 end >= command_string.size()) in GetCommandObjectForCommand()
1523 start = command_string.find_first_not_of(k_white_space, end); in GetCommandObjectForCommand()
1529 command_string = command_string.substr(end); in GetCommandObjectForCommand()
1567 static bool ExtractCommand(std::string &command_string, std::string &command, in ExtractCommand() argument
1571 StripLeadingSpaces(command_string); in ExtractCommand()
[all …]
/openbsd-src/usr.bin/ssh/
H A Dsshconnect.c105 char *command_string; in ssh_proxy_fdpass_connect() local
117 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect()
119 debug("Executing proxy dialer command: %.500s", command_string); in ssh_proxy_fdpass_connect()
148 argv[2] = command_string; in ssh_proxy_fdpass_connect()
163 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()
231 argv[2] = command_string; in ssh_proxy_connect()
254 free(command_string); in ssh_proxy_connect()
[all...]