Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1486 llvm::StringRef &command_string) { in GetCommandObjectForCommand()
1492 size_t start = command_string.find_first_not_of(k_white_space); in GetCommandObjectForCommand()
1497 // Get the next word from command_string. 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()
1522 // a multi-word object, or we are at the end of the command_string, then in StripLeadingSpaces()
1526 end >= command_string.size()) in StripLeadingSpaces()
1529 start = command_string.find_first_not_of(k_white_space, end); in FindArgumentTerminator()
1535 command_string in FindArgumentTerminator()
1463 GetCommandObjectForCommand(llvm::StringRef & command_string) GetCommandObjectForCommand() argument
1550 ExtractCommand(std::string & command_string,std::string & command,std::string & suffix,char & quote_char) ExtractCommand() argument
1871 std::string command_string(command_line); HandleCommand() local
[all...]
/freebsd-src/crypto/openssh/
H A Dsshconnect.c116 char *command_string; in ssh_proxy_fdpass_connect() local
128 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect()
130 debug("Executing proxy dialer command: %.500s", command_string); in ssh_proxy_fdpass_connect()
159 argv[2] = command_string; in ssh_proxy_fdpass_connect()
174 free(command_string); in ssh_proxy_fdpass_connect()
198 char *command_string; in ssh_proxy_connect() local
211 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_connect()
213 debug("Executing proxy command: %.500s", command_string); in ssh_proxy_connect()
242 argv[2] = command_string; in ssh_proxy_connect()
265 free(command_string); in ssh_proxy_connect()
/freebsd-src/bin/sh/tests/invocation/
H A Dsh-c1.01 # Test that -c executes command_string with the given name and arg