Searched refs:proxy_command (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectMultiword.cpp | 265 CommandObject *proxy_command = GetProxyCommandObject(); in GetOptions() local 266 if (proxy_command) in GetOptions() 267 return proxy_command->GetOptions(); in GetOptions() 272 CommandObject *proxy_command = GetProxyCommandObject(); in GetHelp() local 273 if (proxy_command) in GetHelp() 274 return proxy_command->GetHelp(); in GetHelp() 279 CommandObject *proxy_command = GetProxyCommandObject(); in GetSyntax() local 280 if (proxy_command) in GetSyntax() 281 return proxy_command->GetSyntax(); in GetSyntax() 286 CommandObject *proxy_command = GetProxyCommandObject(); in GetHelpLong() local [all …]
|
/external/openssh/ |
D | sshconnect.c | 88 expand_proxy_command(const char *proxy_command, const char *user, in expand_proxy_command() argument 94 xasprintf(&tmp, "exec %s", proxy_command); in expand_proxy_command() 129 const char *host_arg, u_short port, const char *proxy_command) in ssh_proxy_fdpass_connect() argument 143 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect() 211 u_short port, const char *proxy_command) in ssh_proxy_connect() argument 226 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_connect() 555 if (options.proxy_command == NULL) { in ssh_connect() 558 } else if (strcmp(options.proxy_command, "-") == 0) { in ssh_connect() 571 options.proxy_command); in ssh_connect() 574 options.proxy_command); in ssh_connect() [all …]
|
D | ssh.c | 479 direct = option_clear_or_none(options.proxy_command) && in resolve_canonicalize() 847 if (options.proxy_command != NULL) in main() 851 options.proxy_command = xstrdup("none"); in main() 1191 direct = option_clear_or_none(options.proxy_command) && in main() 1254 if (options.proxy_command != NULL) in main() 1259 xasprintf(&options.proxy_command, in main() 1280 options.proxy_command); in main() 1290 if (options.proxy_command != NULL && in main() 1291 strcmp(options.proxy_command, "-") == 0 && in main() 1487 if (addrs == NULL && options.proxy_command == NULL) { in main()
|
D | readconf.h | 74 char *proxy_command; /* Proxy command for connecting the host. */ member
|
D | readconf.c | 1220 charptr = &options->proxy_command; in process_config_line_depth() 1962 options->proxy_command = NULL; in initialize_options() 2252 CLEAR_ON_NONE(options->proxy_command); in fill_default_options() 2486 active &= o->proxy_command == NULL && o->jump_host == NULL; in parse_jump() 2520 o->proxy_command = xstrdup("none"); in parse_jump() 2864 dump_cfg_string(oProxyCommand, o->proxy_command); in dump_client_config()
|
D | clientloop.c | 1258 } else if (!option_clear_or_none(options.proxy_command) || in client_loop()
|