Symbol: arglist
arch/powerpc/xmon/ansidecl.h
102
#define PROTO(type, name, arglist) type name arglist
arch/powerpc/xmon/ansidecl.h
123
#define DEFUN(name, arglist, args) name arglist args;
arch/powerpc/xmon/ansidecl.h
125
#define PROTO(type, name, arglist) type name ()
arch/powerpc/xmon/ansidecl.h
99
#define DEFUN(name, arglist, args) name(args)
arch/um/drivers/vector_kern.c
137
static int get_mtu(struct arglist *def)
arch/um/drivers/vector_kern.c
150
static char *get_bpf_file(struct arglist *def)
arch/um/drivers/vector_kern.c
155
static bool get_bpf_flash(struct arglist *def)
arch/um/drivers/vector_kern.c
1579
struct arglist *def
arch/um/drivers/vector_kern.c
167
static int get_depth(struct arglist *def)
arch/um/drivers/vector_kern.c
1683
struct arglist *parsed;
arch/um/drivers/vector_kern.c
179
static int get_headroom(struct arglist *def)
arch/um/drivers/vector_kern.c
191
static int get_req_size(struct arglist *def)
arch/um/drivers/vector_kern.c
207
static int get_transport_options(struct arglist *def)
arch/um/drivers/vector_kern.c
72
static void vector_eth_configure(int n, struct arglist *def);
arch/um/drivers/vector_kern.c
737
struct arglist *parsed;
arch/um/drivers/vector_kern.h
95
struct arglist *parsed;
arch/um/drivers/vector_transports.c
217
struct arglist *def, char *param, unsigned int *result)
arch/um/drivers/vector_transports.c
229
struct arglist *def, char *param, unsigned long *result)
arch/um/drivers/vector_user.c
201
static struct vector_fds *user_init_tap_fds(struct arglist *ifspec)
arch/um/drivers/vector_user.c
259
static struct vector_fds *user_init_hybrid_fds(struct arglist *ifspec)
arch/um/drivers/vector_user.c
310
static struct vector_fds *user_init_unix_fds(struct arglist *ifspec, int id)
arch/um/drivers/vector_user.c
408
static struct vector_fds *user_init_fd_fds(struct arglist *ifspec)
arch/um/drivers/vector_user.c
449
static struct vector_fds *user_init_vde_fds(struct arglist *ifspec)
arch/um/drivers/vector_user.c
518
static struct vector_fds *user_init_raw_fds(struct arglist *ifspec)
arch/um/drivers/vector_user.c
601
static struct vector_fds *user_init_socket_fds(struct arglist *ifspec, int id)
arch/um/drivers/vector_user.c
69
char *uml_vector_fetch_arg(struct arglist *ifspec, char *token)
arch/um/drivers/vector_user.c
729
struct arglist *parsed
arch/um/drivers/vector_user.c
81
struct arglist *uml_parse_vector_ifspec(char *arg)
arch/um/drivers/vector_user.c
83
struct arglist *result;
arch/um/drivers/vector_user.c
89
result = uml_kmalloc(sizeof(struct arglist), UM_GFP_KERNEL);
arch/um/drivers/vector_user.h
72
extern struct arglist *uml_parse_vector_ifspec(char *arg);
arch/um/drivers/vector_user.h
76
struct arglist *parsed
arch/um/drivers/vector_user.h
80
struct arglist *ifspec,
scripts/mod/modpost.c
79
va_list arglist;
scripts/mod/modpost.c
90
va_start(arglist, fmt);
scripts/mod/modpost.c
91
vfprintf(stderr, fmt, arglist);
scripts/mod/modpost.c
92
va_end(arglist);
tools/testing/selftests/bpf/sdt.h
45
# define _SDT_PROBE(provider, name, n, arglist) \
tools/testing/selftests/bpf/sdt.h
46
_SDT_ASM_BODY(provider, name, _SDT_ASM_SUBSTR_1, (_SDT_DEPAREN_##n arglist)) \
tools/testing/selftests/bpf/sdt.h
75
# define _SDT_PROBE(provider, name, n, arglist) \
tools/testing/selftests/bpf/sdt.h
79
:: _SDT_ASM_OPERANDS_##n arglist); \