Searched refs:command_string (Results 1 – 4 of 4) sorted by relevance
/external/llvm-project/lldb/source/Interpreter/ |
D | CommandInterpreter.cpp | 1274 llvm::StringRef &command_string) { in GetCommandObjectForCommand() argument 1280 size_t start = command_string.find_first_not_of(k_white_space); in GetCommandObjectForCommand() 1286 end = command_string.find_first_of(k_white_space, start); in GetCommandObjectForCommand() 1288 end = command_string.size(); in GetCommandObjectForCommand() 1290 std::string(command_string.substr(start, end - start)); in GetCommandObjectForCommand() 1314 end >= command_string.size()) in GetCommandObjectForCommand() 1317 start = command_string.find_first_not_of(k_white_space, end); in GetCommandObjectForCommand() 1323 command_string = command_string.substr(end); in GetCommandObjectForCommand() 1361 static bool ExtractCommand(std::string &command_string, std::string &command, in ExtractCommand() argument 1365 StripLeadingSpaces(command_string); in ExtractCommand() [all …]
|
/external/chromium-trace/catapult/common/py_utils/py_utils/ |
D | ts_proxy_server.py | 138 def _IssueCommand(self, command_string, timeout, retries=None): argument 140 logging.info('Issuing command to ts_proxy_server: %s', command_string) 142 self._proc.stdin.write('%s\n' % command_string) 155 raise TsProxyServerError('Failed to execute command: %s', command_string)
|
/external/openssh/ |
D | sshconnect.c | 131 char *command_string; in ssh_proxy_fdpass_connect() local 143 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect() 145 debug("Executing proxy dialer command: %.500s", command_string); in ssh_proxy_fdpass_connect() 174 argv[2] = command_string; in ssh_proxy_fdpass_connect() 189 free(command_string); in ssh_proxy_fdpass_connect() 213 char *command_string; in ssh_proxy_connect() local 226 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_connect() 228 debug("Executing proxy command: %.500s", command_string); in ssh_proxy_connect() 257 argv[2] = command_string; in ssh_proxy_connect() 278 free(command_string); in ssh_proxy_connect()
|
/external/adhd/cras/client/cras_tests/src/ |
D | arguments.rs | 288 let command_string = format!("{} {}", command.0, command.1); in show_control_command_usage() localVariable 289 eprintln!("\t{: <23} {}", command_string, command.2); in show_control_command_usage()
|