Home
last modified time | relevance | path

Searched refs:proxy_command (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMultiword.cpp309 CommandObject *proxy_command = GetProxyCommandObject(); in GetOptions()
310 if (proxy_command) in GetOptions() local
311 return proxy_command->GetOptions(); in GetOptions()
316 CommandObject *proxy_command = GetProxyCommandObject(); in GetHelp()
317 if (proxy_command) in GetHelp() local
318 return proxy_command->GetHelp(); in GetHelp()
323 CommandObject *proxy_command = GetProxyCommandObject(); in GetSyntax()
324 if (proxy_command) in GetSyntax() local
325 return proxy_command->GetSyntax(); in GetSyntax()
330 CommandObject *proxy_command
331 CommandObject *proxy_command = GetProxyCommandObject(); GetHelpLong() local
338 const CommandObject *proxy_command = IsRemovable() local
346 CommandObject *proxy_command = GetProxyCommandObject(); IsMultiwordObject() local
353 CommandObject *proxy_command = GetProxyCommandObject(); GetAsMultiwordCommand() local
360 CommandObject *proxy_command = GetProxyCommandObject(); GenerateHelpText() local
370 CommandObject *proxy_command = GetProxyCommandObject(); GetSubcommandSP() local
378 CommandObject *proxy_command = GetProxyCommandObject(); GetSubcommandObject() local
386 CommandObject *proxy_command = GetProxyCommandObject(); LoadSubCommand() local
393 CommandObject *proxy_command = GetProxyCommandObject(); WantsRawCommandString() local
400 CommandObject *proxy_command = GetProxyCommandObject(); WantsCompletion() local
407 CommandObject *proxy_command = GetProxyCommandObject(); HandleCompletion() local
414 CommandObject *proxy_command = GetProxyCommandObject(); HandleArgumentCompletion() local
422 CommandObject *proxy_command = GetProxyCommandObject(); GetRepeatCommand() local
434 CommandObject *proxy_command = GetProxyCommandObject(); Execute() local
[all...]
/freebsd/crypto/openssh/
H A Dsshconnect.c89 expand_proxy_command(const char *proxy_command, const char *user, in expand_proxy_command() argument
97 xasprintf(&tmp, "exec %s", proxy_command); in expand_proxy_command()
115 const char *host_arg, u_short port, const char *proxy_command) in ssh_proxy_fdpass_connect() argument
129 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect()
197 u_short port, const char *proxy_command) in ssh_proxy_connect() argument
212 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_connect()
552 if (options.proxy_command == NULL) { in ssh_connect()
555 } else if (strcmp(options.proxy_command, "-") == 0) { in ssh_connect()
568 options.proxy_command); in ssh_connect()
571 options.proxy_command); in ssh_connect()
[all …]
H A Dssh.c466 direct = option_clear_or_none(options.proxy_command) && in resolve_canonicalize()
914 if (options.proxy_command != NULL) in main()
918 options.proxy_command = xstrdup("none"); in main()
1263 direct = option_clear_or_none(options.proxy_command) && in main()
1333 if (options.proxy_command != NULL) in main()
1338 xasprintf(&options.proxy_command, in main()
1359 options.proxy_command); in main()
1369 if (options.proxy_command != NULL && in main()
1370 strcmp(options.proxy_command, "-") == 0 && in main()
1686 if (addrs == NULL && options.proxy_command == NULL) { in main()
H A Dreadconf.h74 char *proxy_command; /* Proxy command for connecting the host. */ member
H A Dreadconf.c1531 charptr = &options->proxy_command; in process_config_line_depth()
2691 options->proxy_command = NULL; in initialize_options()
3022 CLEAR_ON_NONE(options->proxy_command); in fill_default_options()
3094 free(o->proxy_command); in free_options()
3376 active &= o->proxy_command == NULL && o->jump_host == NULL; in parse_jump()
3418 o->proxy_command = xstrdup("none"); in parse_jump()
3824 dump_cfg_string(oProxyCommand, o->proxy_command); in dump_client_config()
H A Dclientloop.c1477 } else if (!option_clear_or_none(options.proxy_command) || in client_loop()