Searched refs:cmdargs (Results 1 – 25 of 46) sorted by relevance
12
/freebsd/usr.sbin/ppp/ |
H A D | nat_cmd.h | 30 struct cmdargs; 32 extern int nat_RedirectPort(struct cmdargs const *); 33 extern int nat_RedirectAddr(struct cmdargs const *); 34 extern int nat_RedirectProto(struct cmdargs const *); 35 extern int nat_ProxyRule(struct cmdargs const *); 36 extern int nat_SetTarget(struct cmdargs const *); 38 extern int nat_PunchFW(struct cmdargs const *); 40 extern int nat_SkinnyPort(struct cmdargs const *);
|
H A D | log.h | 61 struct cmdargs; 92 extern int log_ShowLevel(struct cmdargs const *); 93 extern int log_SetLevel(struct cmdargs const *); 94 extern int log_ShowWho(struct cmdargs const *);
|
H A D | systems.h | 34 struct cmdargs; 41 extern int AllowUsers(struct cmdargs const *); 42 extern int AllowModes(struct cmdargs const *);
|
H A D | command.c | 174 static int ShowCommand(struct cmdargs const *); 175 static int TerminalCommand(struct cmdargs const *); 176 static int QuitCommand(struct cmdargs const *); 177 static int OpenCommand(struct cmdargs const *); 178 static int CloseCommand(struct cmdargs const *); 179 static int DownCommand(struct cmdargs const *); 180 static int SetCommand(struct cmdargs const *); 181 static int LinkCommand(struct cmdargs const *); 182 static int AddCommand(struct cmdargs const *); 183 static int DeleteCommand(struct cmdargs const *); [all …]
|
H A D | mp.h | 32 struct cmdargs; 138 extern int mp_SetDatalinkBandwidth(struct cmdargs const *); 139 extern int mp_ShowStatus(struct cmdargs const *); 141 extern int mp_SetEnddisc(struct cmdargs const *);
|
H A D | command.h | 36 struct cmdargs { struct 50 int (*func) (struct cmdargs const *); argument 73 extern struct link *command_ChooseLink(struct cmdargs const *);
|
H A D | filter.h | 94 struct cmdargs; 96 extern int filter_Show(struct cmdargs const *); 97 extern int filter_Set(struct cmdargs const *);
|
H A D | ipcp.h | 108 struct cmdargs; 117 extern int ipcp_Show(struct cmdargs const *); 123 extern int ipcp_vjset(struct cmdargs const *);
|
H A D | datalink.h | 146 extern int datalink_Show(struct cmdargs const *); 147 extern int datalink_SetRedial(struct cmdargs const *); 148 extern int datalink_SetReconnect(struct cmdargs const *);
|
H A D | iface.h | 60 extern int iface_Descr(struct cmdargs const *); 64 extern int iface_Show(struct cmdargs const *);
|
H A D | nat_cmd.c | 105 nat_RedirectPort(struct cmdargs const *arg) in nat_RedirectPort() 201 nat_RedirectAddr(struct cmdargs const *arg) in nat_RedirectAddr() 238 nat_RedirectProto(struct cmdargs const *arg) in nat_RedirectProto() 392 nat_ProxyRule(struct cmdargs const *arg) in nat_ProxyRule() 415 nat_SetTarget(struct cmdargs const *arg) in nat_SetTarget() 446 nat_PunchFW(struct cmdargs const *arg) in nat_PunchFW() 475 nat_SkinnyPort(struct cmdargs const *arg) in nat_SkinnyPort()
|
H A D | route.h | 32 struct cmdargs; 56 extern int route_Show(struct cmdargs const *);
|
H A D | link.h | 38 struct cmdargs; 81 extern int link_ShowLayers(struct cmdargs const *);
|
H A D | ipv6cp.h | 64 struct cmdargs; 73 extern int ipv6cp_Show(struct cmdargs const *);
|
H A D | hdlc.h | 59 struct cmdargs; 107 extern int hdlc_ReportStatus(struct cmdargs const *);
|
H A D | slcompress.h | 154 struct cmdargs; 161 extern int sl_Show(struct cmdargs const *);
|
H A D | prompt.h | 38 struct cmdargs; 91 extern int PasswdCommand(struct cmdargs const *);
|
H A D | mbuf.h | 101 struct cmdargs; 116 extern int mbuf_Show(struct cmdargs const *);
|
H A D | lcp.h | 130 struct cmdargs; 141 extern int lcp_ReportStatus(struct cmdargs const *);
|
H A D | bundle.h | 174 extern int bundle_ShowLinks(struct cmdargs const *); 175 extern int bundle_ShowStatus(struct cmdargs const *);
|
H A D | physical.h | 27 struct cmdargs; 138 extern int physical_ShowStatus(struct cmdargs const *);
|
H A D | log.c | 426 log_ShowLevel(struct cmdargs const *arg) in log_ShowLevel() 446 log_SetLevel(struct cmdargs const *arg) in log_SetLevel() 518 log_ShowWho(struct cmdargs const *arg) in log_ShowWho()
|
H A D | systems.c | 205 AllowUsers(struct cmdargs const *arg) in AllowUsers() 227 AllowModes(struct cmdargs const *arg) in AllowModes()
|
/freebsd/crypto/openssl/util/perl/OpenSSL/ |
H A D | Test.pm | 316 my @cmdargs = ( @$cmd ); 317 my @prog = __wrap_cmd(shift @cmdargs, $opts{exe_shell} // ()); 319 return __decorate_cmd($num, [ @prog, fixup_cmd_elements(@cmdargs) ], 328 my @cmdargs = ( @{$cmd} ); 329 my @prog = __fixup_prg(__apps_file(shift @cmdargs, __exeext())); 330 return cmd([ @prog, @cmdargs ], 339 my @cmdargs = ( @{$cmd} ); 340 my @prog = __fixup_prg(__fuzz_file(shift @cmdargs, __exeext())); 341 return cmd([ @prog, @cmdargs ], 350 my @cmdargs = ( @{$cmd} ); [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/ |
H A D | channel_common.kshlib | 37 typeset cmdargs=$@ tmpout=$(mktemp) tmperr=$(mktemp) 45 log_note "running: zfs program $cmdargs:" 47 zfs program $cmdargs >$tmpout 2>$tmperr
|
12