Home
last modified time | relevance | path

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

/Linux-v5.4/Documentation/sphinx/
Dcdomain.py87 rettype, fullname, arglist, _const = m.groups()
88 arglist = arglist.strip()
89 if rettype or not arglist:
92 arglist = arglist.replace('`', '').replace('\\ ', '') # remove markup
93 arglist = [a.strip() for a in arglist.split(",")]
96 if len(arglist[0].split(" ")) > 1:
104 for argname in arglist:
/Linux-v5.4/arch/powerpc/xmon/
Dansidecl.h99 #define DEFUN(name, arglist, args) name(args) argument
102 #define PROTO(type, name, arglist) type name arglist argument
123 #define DEFUN(name, arglist, args) name arglist args; argument
125 #define PROTO(type, name, arglist) type name () argument
/Linux-v5.4/arch/um/drivers/
Dvector_user.h50 struct arglist { struct
72 extern struct arglist *uml_parse_vector_ifspec(char *arg); argument
76 struct arglist *parsed
80 struct arglist *ifspec,
Dvector_user.c58 char *uml_vector_fetch_arg(struct arglist *ifspec, char *token) in uml_vector_fetch_arg()
70 struct arglist *uml_parse_vector_ifspec(char *arg) in uml_parse_vector_ifspec()
72 struct arglist *result; in uml_parse_vector_ifspec()
78 result = uml_kmalloc(sizeof(struct arglist), UM_GFP_KERNEL); in uml_parse_vector_ifspec()
189 static struct vector_fds *user_init_tap_fds(struct arglist *ifspec) in user_init_tap_fds()
228 static struct vector_fds *user_init_hybrid_fds(struct arglist *ifspec) in user_init_hybrid_fds()
273 static struct vector_fds *user_init_unix_fds(struct arglist *ifspec, int id) in user_init_unix_fds()
353 static struct vector_fds *user_init_raw_fds(struct arglist *ifspec) in user_init_raw_fds()
431 static struct vector_fds *user_init_socket_fds(struct arglist *ifspec, int id) in user_init_socket_fds()
559 struct arglist *parsed in uml_vector_user_open()
Dvector_kern.c68 static void vector_eth_configure(int n, struct arglist *def);
118 static int get_mtu(struct arglist *def) in get_mtu()
131 static int get_depth(struct arglist *def) in get_depth()
143 static int get_headroom(struct arglist *def) in get_headroom()
155 static int get_req_size(struct arglist *def) in get_req_size()
171 static int get_transport_options(struct arglist *def) in get_transport_options()
728 struct arglist *parsed; in vector_config()
1456 struct arglist *def in vector_eth_configure()
1579 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-v5.4/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-v5.4/Documentation/translations/zh_CN/process/
Dcoding-style.rst516 (defun c-lineup-arglist-tabs-only (ignored)
531 (arglist-close . c-lineup-arglist-tabs-only)
532 (arglist-cont-nonempty .
533 (c-lineup-gcc-asm-reg c-lineup-arglist-tabs-only))
534 (arglist-intro . +)
/Linux-v5.4/scripts/mod/
Dmodpost.c59 va_list arglist; in fatal() local
63 va_start(arglist, fmt); in fatal()
64 vfprintf(stderr, fmt, arglist); in fatal()
65 va_end(arglist); in fatal()
72 va_list arglist; in warn() local
76 va_start(arglist, fmt); in warn()
77 vfprintf(stderr, fmt, arglist); in warn()
78 va_end(arglist); in warn()
83 va_list arglist; in merror() local
87 va_start(arglist, fmt); in merror()
[all …]
/Linux-v5.4/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-v5.4/Documentation/process/
Dcoding-style.rst589 (defun c-lineup-arglist-tabs-only (ignored)
604 (arglist-close . c-lineup-arglist-tabs-only)
605 (arglist-cont-nonempty .
606 (c-lineup-gcc-asm-reg c-lineup-arglist-tabs-only))
607 (arglist-intro . +)
/Linux-v5.4/Documentation/translations/it_IT/process/
Dcoding-style.rst597 (defun c-lineup-arglist-tabs-only (ignored)
612 (arglist-close . c-lineup-arglist-tabs-only)
613 (arglist-cont-nonempty .
614 (c-lineup-gcc-asm-reg c-lineup-arglist-tabs-only))
615 (arglist-intro . +)
/Linux-v5.4/tools/power/pm-graph/
DREADME377 arglist: A list of arguments from registers/stack addresses. See URL:
Dsleepgraph.py576 arglist = dict()
579 arglist[arg] = ''
582 arglist[arg] = m.group('arg')
586 arglist[arg] = m.group('arg')
587 out = fmt.format(**arglist)