Home
last modified time | relevance | path

Searched refs:arglist (Results 1 – 13 of 13) sorted by relevance

/Linux-v4.19/Documentation/sphinx/
Dcdomain.py84 rettype, fullname, arglist, _const = m.groups()
85 arglist = arglist.strip()
86 if rettype or not arglist:
89 arglist = arglist.replace('`', '').replace('\\ ', '') # remove markup
90 arglist = [a.strip() for a in arglist.split(",")]
93 if len(arglist[0].split(" ")) > 1:
101 for argname in arglist:
/Linux-v4.19/arch/powerpc/xmon/
Dansidecl.h110 #define DEFUN(name, arglist, args) name(args) argument
113 #define PROTO(type, name, arglist) type name arglist argument
134 #define DEFUN(name, arglist, args) name arglist args; argument
136 #define PROTO(type, name, arglist) type name () argument
/Linux-v4.19/arch/um/drivers/
Dvector_user.h45 struct arglist { struct
67 extern struct arglist *uml_parse_vector_ifspec(char *arg); argument
71 struct arglist *parsed
75 struct arglist *ifspec,
Dvector_user.c54 char *uml_vector_fetch_arg(struct arglist *ifspec, char *token) in uml_vector_fetch_arg()
66 struct arglist *uml_parse_vector_ifspec(char *arg) in uml_parse_vector_ifspec()
68 struct arglist *result; in uml_parse_vector_ifspec()
74 result = uml_kmalloc(sizeof(struct arglist), UM_GFP_KERNEL); in uml_parse_vector_ifspec()
118 static struct vector_fds *user_init_tap_fds(struct arglist *ifspec) in user_init_tap_fds()
206 static struct vector_fds *user_init_raw_fds(struct arglist *ifspec) in user_init_raw_fds()
317 static struct vector_fds *user_init_socket_fds(struct arglist *ifspec, int id) in user_init_socket_fds()
446 struct arglist *parsed in uml_vector_user_open()
Dvector_kern.c68 static void vector_eth_configure(int n, struct arglist *def);
117 static int get_mtu(struct arglist *def) in get_mtu()
129 static int get_depth(struct arglist *def) in get_depth()
141 static int get_headroom(struct arglist *def) in get_headroom()
153 static int get_req_size(struct arglist *def) in get_req_size()
169 static int get_transport_options(struct arglist *def) in get_transport_options()
723 struct arglist *parsed; in vector_config()
1432 struct arglist *def in vector_eth_configure()
1554 struct arglist *parsed; in vector_init()
Dvector_kern.h89 struct arglist *parsed;
Dvector_transports.c217 struct arglist *def, char *param, unsigned int *result) in get_uint_param()
229 struct arglist *def, char *param, unsigned long *result) in get_ulong_param()
/Linux-v4.19/scripts/
Dcheckkconfigsymbols.py280 arglist = []
282 arglist.append((part, ignore))
284 for res in pool.map(parse_kconfig_files, arglist):
338 arglist = partition(source_files, cpu_count())
339 for res in pool.map(parse_source_files, arglist):
343 arglist = []
345 arglist.append((part, ignore))
346 for res in pool.map(parse_kconfig_files, arglist):
/Linux-v4.19/scripts/mod/
Dmodpost.c58 va_list arglist; in fatal() local
62 va_start(arglist, fmt); in fatal()
63 vfprintf(stderr, fmt, arglist); in fatal()
64 va_end(arglist); in fatal()
71 va_list arglist; in warn() local
75 va_start(arglist, fmt); in warn()
76 vfprintf(stderr, fmt, arglist); in warn()
77 va_end(arglist); in warn()
82 va_list arglist; in merror() local
86 va_start(arglist, fmt); in merror()
[all …]
/Linux-v4.19/Documentation/translations/zh_CN/
Dcoding-style.rst529 (defun c-lineup-arglist-tabs-only (ignored)
544 (arglist-cont-nonempty
546 c-lineup-arglist-tabs-only))))))
/Linux-v4.19/tools/power/pm-graph/config/
Dcustom-timeline-functions.cfg107 # arglist: A list of arguments from registers/stack addresses. See URL:
172 # arglist: A list of arguments from registers/stack addresses. See URL:
/Linux-v4.19/Documentation/process/
Dcoding-style.rst586 (defun c-lineup-arglist-tabs-only (ignored)
601 (arglist-cont-nonempty
603 c-lineup-arglist-tabs-only))))))
/Linux-v4.19/tools/power/pm-graph/
Dsleepgraph.py497 arglist = dict()
500 arglist[arg] = ''
503 arglist[arg] = m.group('arg')
507 arglist[arg] = m.group('arg')
508 out = fmt.format(**arglist)