Searched refs:command_string (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandInterpreter.cpp | 1574 llvm::StringRef &command_string) { in GetCommandObjectForCommand() argument 1580 size_t start = command_string.find_first_not_of(k_white_space); in GetCommandObjectForCommand() 1586 end = command_string.find_first_of(k_white_space, start); in GetCommandObjectForCommand() 1588 end = command_string.size(); in GetCommandObjectForCommand() 1590 std::string(command_string.substr(start, end - start)); in GetCommandObjectForCommand() 1614 end >= command_string.size()) in GetCommandObjectForCommand() 1617 start = command_string.find_first_not_of(k_white_space, end); in GetCommandObjectForCommand() 1623 command_string = command_string.substr(end); in GetCommandObjectForCommand() 1661 static bool ExtractCommand(std::string &command_string, std::string &command, in ExtractCommand() argument 1665 StripLeadingSpaces(command_string); in ExtractCommand() [all …]
|
| /freebsd/crypto/openssh/ |
| H A D | sshconnect.c | 103 char *command_string; in ssh_proxy_fdpass_connect() local 115 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect() 117 debug("Executing proxy dialer command: %.500s", command_string); in ssh_proxy_fdpass_connect() 146 argv[2] = command_string; in ssh_proxy_fdpass_connect() 161 free(command_string); in ssh_proxy_fdpass_connect() 185 char *command_string; in ssh_proxy_connect() local 198 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_connect() 200 debug("Executing proxy command: %.500s", command_string); in ssh_proxy_connect() 229 argv[2] = command_string; in ssh_proxy_connect() 252 free(command_string); in ssh_proxy_connect()
|
| /freebsd/bin/sh/tests/invocation/ |
| H A D | sh-c1.0 | 1 # Test that -c executes command_string with the given name and arg
|