Searched refs:command_string (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | CommandInterpreter.cpp | 1486 llvm::StringRef &command_string) { in GetCommandObjectForCommand() argument 1492 size_t start = command_string.find_first_not_of(k_white_space); in GetCommandObjectForCommand() 1498 end = command_string.find_first_of(k_white_space, start); in GetCommandObjectForCommand() 1500 end = command_string.size(); in GetCommandObjectForCommand() 1502 std::string(command_string.substr(start, end - start)); in GetCommandObjectForCommand() 1526 end >= command_string.size()) in GetCommandObjectForCommand() 1529 start = command_string.find_first_not_of(k_white_space, end); in GetCommandObjectForCommand() 1535 command_string = command_string.substr(end); in GetCommandObjectForCommand() 1573 static bool ExtractCommand(std::string &command_string, std::string &command, in ExtractCommand() argument 1577 StripLeadingSpaces(command_string); in ExtractCommand() [all …]
|
/freebsd/crypto/openssh/ |
H A D | sshconnect.c | 117 char *command_string; in ssh_proxy_fdpass_connect() local 129 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect() 131 debug("Executing proxy dialer command: %.500s", command_string); in ssh_proxy_fdpass_connect() 160 argv[2] = command_string; in ssh_proxy_fdpass_connect() 175 free(command_string); in ssh_proxy_fdpass_connect() 199 char *command_string; in ssh_proxy_connect() local 212 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_connect() 214 debug("Executing proxy command: %.500s", command_string); in ssh_proxy_connect() 243 argv[2] = command_string; in ssh_proxy_connect() 266 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
|