OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cmdargs
(Results
1 - 25
of
43
) sorted by null
1
2
/external/libppp/src/
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 *);
systems.h
34
struct
cmdargs
;
41
extern int AllowUsers(struct
cmdargs
const *);
42
extern int AllowModes(struct
cmdargs
const *);
command.h
36
struct
cmdargs
{
struct
50
int (*func) (struct
cmdargs
const *);
73
extern struct link *command_ChooseLink(struct
cmdargs
const *);
filter.h
94
struct
cmdargs
;
96
extern int filter_Show(struct
cmdargs
const *);
97
extern int filter_Set(struct
cmdargs
const *);
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 *);
route.h
32
struct
cmdargs
;
56
extern int route_Show(struct
cmdargs
const *);
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 *);
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 *);
ipcp.h
108
struct
cmdargs
;
117
extern int ipcp_Show(struct
cmdargs
const *);
123
extern int ipcp_vjset(struct
cmdargs
const *);
iface.h
61
extern int iface_Show(struct
cmdargs
const *);
hdlc.h
59
struct
cmdargs
;
107
extern int hdlc_ReportStatus(struct
cmdargs
const *);
ipv6cp.h
64
struct
cmdargs
;
73
extern int ipv6cp_Show(struct
cmdargs
const *);
link.h
38
struct
cmdargs
;
81
extern int link_ShowLayers(struct
cmdargs
const *);
prompt.h
38
struct
cmdargs
;
91
extern int PasswdCommand(struct
cmdargs
const *);
slcompress.h
154
struct
cmdargs
;
161
extern int sl_Show(struct
cmdargs
const *);
lcp.h
130
struct
cmdargs
;
141
extern int lcp_ReportStatus(struct
cmdargs
const *);
mbuf.h
101
struct
cmdargs
;
116
extern int mbuf_Show(struct
cmdargs
const *);
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
...]
nat_cmd.c
104
nat_RedirectPort(struct
cmdargs
const *arg)
200
nat_RedirectAddr(struct
cmdargs
const *arg)
237
nat_RedirectProto(struct
cmdargs
const *arg)
391
nat_ProxyRule(struct
cmdargs
const *arg)
414
nat_SetTarget(struct
cmdargs
const *arg)
445
nat_PunchFW(struct
cmdargs
const *arg)
474
nat_SkinnyPort(struct
cmdargs
const *arg)
bundle.h
174
extern int bundle_ShowLinks(struct
cmdargs
const *);
175
extern int bundle_ShowStatus(struct
cmdargs
const *);
physical.h
29
struct
cmdargs
;
140
extern int physical_ShowStatus(struct
cmdargs
const *);
ccp.h
158
extern int ccp_ReportStatus(struct
cmdargs
const *);
ncp.h
72
extern int ncp_Show(struct
cmdargs
const *);
log.c
415
log_ShowLevel(struct
cmdargs
const *arg)
435
log_SetLevel(struct
cmdargs
const *arg)
507
log_ShowWho(struct
cmdargs
const *arg)
/external/chromium_org/tools/gyp/
gyptest.py
74
cmdargs
= shlex.split(command)
75
if
cmdargs
[0] == 'cd':
76
command = (os.chdir,) + tuple(
cmdargs
[1:])
Completed in 639 milliseconds
1
2