Home
last modified time | relevance | path

Searched full:argument (Results 1 – 25 of 1740) sorted by relevance

12345678910>>...70

/linux/tools/net/sunrpc/xdrgen/generators/
H A Dprogram.py40 arguments[procedure.argument.type_name] = None
43 template = environment.get_template("declaration/argument.j2")
44 for argument in arguments:
45 print(template.render(program=program, argument=argument))
61 """Emit server argument decoders for each RPC version's procedures"""
65 arguments[procedure.argument.type_name] = None
67 template = environment.get_template("decoder/argument.j2")
68 for argument in arguments:
69 print(template.render(program=program, argument=argument))
89 """Emit client argument encoders for each RPC version's procedures"""
[all …]
/linux/Documentation/networking/
H A Dradiotap-headers.rst22 if the possible argument associated with that bit is present or not. So if b0
24 the header for argument index 0 (IEEE80211_RADIOTAP_TSFT) is present in the
25 argument area.
30 [ <possible argument bitmap extensions ... > ]
31 [ <argument> ... ]
33 At the moment there are only 13 possible argument indexes defined, but in case
36 argument bitmap extensions..." above), and the start of the arguments is moved
46 After the fixed part of the header, the arguments follow for each argument
52 - the argument payload for a given argument index has a fixed size. So
53 IEEE80211_RADIOTAP_TSFT being present always indicates an 8-byte argument is
[all …]
H A Dppp_generic.rst291 instance the "owner" of the interface. The argument should point to
298 The argument should point to an int containing the unit number.
302 The argument should point to an int containing the channel number.
308 argument should point to an int containing the interface unit
317 * PPPIOCBRIDGECHAN bridges a channel with another. The argument should
339 The argument should point to an int containing the new MRU value.
342 interface. The argument should be a pointer to an int containing
368 interface unit. The argument should point to an int where the ioctl
380 decompression. The argument should point to a ppp_option_data
388 * PPPIOCGUNIT returns, in the int pointed to by the argument, the unit
[all …]
/linux/drivers/acpi/acpica/
H A Dpstree.c28 * PARAMETERS: op - Get an argument for this op
29 * argn - Nth argument to get
31 * RETURN: The argument (as an Op object). NULL if argument does not exist
33 * DESCRIPTION: Get the specified op's argument.
60 /* Check if this opcode requires argument sub-objects */ in acpi_ps_get_arg()
64 /* Has no linked argument objects */ in acpi_ps_get_arg()
69 /* Get the requested argument object */ in acpi_ps_get_arg()
84 * PARAMETERS: op - Append an argument to this Op.
85 * arg - Argument Op to append
89 * DESCRIPTION: Append an argument to an op's argument list (a NULL arg is OK)
[all …]
/linux/tools/net/sunrpc/xdrgen/templates/C/program/decoder/
H A Dargument.j24 * {{ program }}_svc_decode_{{ argument }} - Decode a {{ argument }} argument
12 bool {{ program }}_svc_decode_{{ argument }}(struct svc_rqst *rqstp, struct xdr_stream *xdr)
14 {% if argument == 'void' %}
17 struct {{ argument }} *argp = rqstp->rq_argp;
19 return xdrgen_decode_{{ argument }}(xdr, argp);
/linux/drivers/firmware/meson/
H A Dmeson_sm.c97 * @arg0: SMC32 Argument 0
98 * @arg1: SMC32 Argument 1
99 * @arg2: SMC32 Argument 2
100 * @arg3: SMC32 Argument 3
101 * @arg4: SMC32 Argument 4
134 * @arg0: SMC32 Argument 0
135 * @arg1: SMC32 Argument 1
136 * @arg2: SMC32 Argument 2
137 * @arg3: SMC32 Argument 3
138 * @arg4: SMC32 Argument 4
[all …]
/linux/Documentation/misc-devices/
H A Dpci-endpoint-test.rst32 should be passed as argument.
37 to be tested should be passed as argument.
40 to be tested should be passed as argument.
43 should be passed as argument (0: Legacy, 1:MSI, 2:MSI-X).
48 as argument.
51 as argument.
54 as argument.
/linux/include/uapi/drm/
H A Dvmwgfx_drm.h138 * Argument to the DRM_VMW_GET_PARAM Ioctl.
160 * Output argument to the DRM_VMW_CREATE_CONTEXT Ioctl.
161 * Input argument to the DRM_VMW_UNREF_CONTEXT Ioctl.
223 * Input argument to the DRM_VMW_UNREF_SURFACE Ioctl.
224 * Input argument to the DRM_VMW_REF_SURFACE Ioctl.
256 * Argument to the DRM_VMW_CREATE_SURFACE Ioctl.
284 * Argument to the DRM_VMW_REF_SURFACE Ioctl.
328 * Argument to the DRM_VMW_EXECBUF Ioctl.
442 * Argument to the DRM_VMW_ALLOC_BO Ioctl.
492 * Argument to the DRM_VMW_CONTROL_STREAM Ioctl.
[all …]
/linux/tools/power/acpi/common/
H A Dgetopt.c15 * "f:" - Option requires an argument
16 * "f+" - Option has an optional argument
41 * RETURN: 0 if an argument was found, -1 otherwise. Sets acpi_gbl_Optarg
42 * to point to the next argument.
44 * DESCRIPTION: Get the next argument. Used to obtain arguments for the
46 * Note: Either the argument starts at the next character after
63 ACPI_OPTION_ERROR("\nOption requires an argument", 0); in acpi_getopt_argument()
122 /* Option requires an argument? */ in acpi_getopt()
130 ACPI_OPTION_ERROR("Option requires an argument: -", in acpi_getopt()
142 /* Option has an optional argument? */ in acpi_getopt()
[all …]
/linux/tools/net/sunrpc/xdrgen/templates/C/program/encoder/
H A Dargument.j24 /* Encode {{ argument }} arguments */
6 static void {{ program }}_xdr_enc_{{ argument }}(struct rpc_rqst *req,
9 {% if argument == 'void' %}
12 const struct {{ argument }} *args = data;
14 xdrgen_encode_{{ argument }}(xdr, args);
/linux/arch/mips/kernel/
H A Dscall32-o32.S61 load_a4: user_lw(t5, 16(t0)) # argument #5 from usp
62 load_a5: user_lw(t6, 20(t0)) # argument #6 from usp
63 load_a6: user_lw(t7, 24(t0)) # argument #7 from usp
64 load_a7: user_lw(t8, 28(t0)) # argument #8 from usp
67 sw t5, PT_ARG4(sp) # argument #5 to ksp
68 sw t6, PT_ARG5(sp) # argument #6 to ksp
69 sw t7, PT_ARG6(sp) # argument #7 to ksp
70 sw t8, PT_ARG7(sp) # argument #8 to ksp
135 lw a0, PT_R4(sp) # Restore argument registers
191 move a0, a1 # shift argument registers
H A Dscall64-o32.S11 * Hairy, the userspace application uses a different argument passing
69 load_a4: lw a4, 16(t0) # argument #5 from usp
70 load_a5: lw a5, 20(t0) # argument #6 from usp
71 load_a6: lw a6, 24(t0) # argument #7 from usp
72 load_a7: lw a7, 28(t0) # argument #8 from usp
126 sd a4, PT_R8(sp) # Save argument registers
138 ld a0, PT_R4(sp) # Restore argument registers
203 move a0, a1 # shift argument registers
/linux/include/uapi/linux/usb/
H A Draw_gadget.h19 * struct usb_raw_init - argument for USB_RAW_IOCTL_INIT ioctl.
61 * struct usb_raw_event - argument for USB_RAW_IOCTL_EVENT_FETCH ioctl.
90 * struct usb_raw_ep_io - argument for USB_RAW_IOCTL_EP0/EP_WRITE/READ ioctls.
157 * struct usb_raw_eps_info - argument for USB_RAW_IOCTL_EPS_INFO ioctl.
166 * Accepts a pointer to the usb_raw_init struct as an argument.
189 * Accepts a pointer to the usb_raw_ep_io struct as an argument.
199 * Accepts a pointer to the usb_raw_ep_descs struct as an argument.
206 * Accepts endpoint handle as an argument.
216 * Accepts a pointer to the usb_raw_ep_io struct as an argument.
231 * Accepts current limit in 2 mA units as an argument.
[all …]
/linux/drivers/gpu/drm/xe/
H A Dxe_args.h41 * This helper macro allows manipulation the argument list before passing it
55 * FIRST_ARG - Returns the first argument.
58 * This helper macro allows manipulation the argument list before passing it
72 * LAST_ARG - Returns the last argument.
75 * This helper macro allows manipulation the argument list before passing it
91 * PICK_ARG - Returns the n-th argument.
92 * @n: argument number to be returned
95 * This helper macro allows manipulation the argument list before passing it
/linux/kernel/trace/
H A Dtrace_dynevent.c281 * @arg: The argument to append to the current cmd
284 * Append an argument to a dynevent_cmd. The argument string will be
286 * applicable. Before the argument is added, the @check_arg function,
320 * @arg_pair: The argument pair to append to the current cmd
323 * Append an argument pair to a dynevent_cmd. An argument pair
324 * consists of a left-hand-side argument and a right-hand-side
325 * argument separated by an operator, which can be whitespace, all
329 * The lhs argument string will be appended to the current cmd string,
332 * argument is added, the @check_arg function, if present, will be
449 * represents an object used to append argument pairs such as 'type
[all …]
H A Dtrace_probe.h92 FETCH_OP_ARG, /* Function argument : .param */
111 FETCH_OP_TP_ARG, /* Trace Point argument */
229 unsigned int offset; /* Offset from argument entry */
231 const char *name; /* Name of this argument */
232 const char *comm; /* Command of this argument */
234 const struct fetch_type *type; /* Type of this argument */
495 C(BAD_ARG_NUM, "Invalid argument number"), \
509 C(BAD_FETCH_ARG, "Invalid fetch argument"), \
515 C(BAD_STRING, "String accepts only memory argument"), \
518 C(ARG_NAME_TOO_LONG, "Argument name is too long"), \
[all …]
/linux/tools/testing/selftests/ftrace/test.d/kprobe/
H A Dkprobe_args_vfs.tc3 # description: Kprobe event VFS type argument
6 : "Test argument %pd with name"
15 : "Test argument %pd without name"
24 : "Test argument %pD with name"
33 : "Test argument %pD without name"
/linux/tools/include/uapi/drm/
H A Ddrm.h135 * DRM_IOCTL_VERSION ioctl argument type.
152 * DRM_IOCTL_GET_UNIQUE ioctl argument type.
171 * DRM_IOCTL_CONTROL ioctl argument type.
218 * argument type.
234 * DRM_IOCTL_GET_CLIENT ioctl argument type.
266 * DRM_IOCTL_GET_STATS ioctl argument type.
292 * DRM_IOCTL_LOCK, DRM_IOCTL_UNLOCK and DRM_IOCTL_FINISH ioctl argument type.
331 * DRM_IOCTL_ADD_BUFS and DRM_IOCTL_MARK_BUFS ioctl argument type.
354 * DRM_IOCTL_INFO_BUFS ioctl argument type.
362 * DRM_IOCTL_FREE_BUFS ioctl argument type.
[all …]
/linux/tools/testing/selftests/ftrace/test.d/dynevent/
H A Dfprobe_args_vfs.tc3 # description: Fprobe event VFS type argument
7 : "Test argument %pd with name for fprobe"
16 : "Test argument %pd without name for fprobe"
25 : "Test argument %pD with name for fprobe"
34 : "Test argument %pD without name for fprobe"
/linux/Documentation/kbuild/
H A Dkconfig-macro-language.rst89 internally. (In other words, "variable" is "function with zero argument".)
99 In Make, every built-in function takes at least one argument. Kconfig allows
100 zero argument for built-in functions, such as $(filename), $(lineno). You could
109 The "shell" function accepts a single argument that is expanded and passed
117 The "info" function takes a single argument and prints it to stdout.
133 The 'filename' takes no argument, and $(filename) is expanded to the file
138 The 'lineno' takes no argument, and $(lineno) is expanded to the line number
152 The function name and the first argument are separated by at least one
153 whitespace. Then, leading whitespaces are trimmed from the first argument,
180 In Make, some functions treat commas verbatim instead of argument separators.
/linux/drivers/net/wwan/iosm/
H A Diosm_ipc_task_queue.h17 * @msg: Message argument for tasklet function. (optional, can be NULL)
21 * @arg: Generic integer argument for tasklet function (optional)
22 * @size: Message size argument for tasklet function (optional)
84 * @arg: Integer argument for func
85 * @msg: Message pointer argument for func
86 * @size: Size argument for func
/linux/include/uapi/linux/
H A Dpsample.h27 PSAMPLE_ATTR_SAMPLE_PROBABILITY,/* no argument, interpret rate in
48 PSAMPLE_TUNNEL_KEY_ATTR_DONT_FRAGMENT, /* No argument, set DF. */
49 PSAMPLE_TUNNEL_KEY_ATTR_CSUM, /* No argument. CSUM packet. */
50 PSAMPLE_TUNNEL_KEY_ATTR_OAM, /* No argument. OAM frame. */
59 PSAMPLE_TUNNEL_KEY_ATTR_IPV4_INFO_BRIDGE, /* No argument. IPV4_INFO_BRIDGE mode.*/
/linux/tools/testing/selftests/bpf/progs/
H A Dverifier_btf_ctx_access.c14 r2 = *(u64 *)(r1 + 8); /* load 2nd argument value (int pointer) */\ in btf_ctx_access_accept()
26 r2 = *(u64 *)(r1 + 0); /* load 1nd argument value (u32 pointer) */\ in ctx_access_u32_pointer_accept()
38 r2 = *(u32 *)(r1 + 0); /* load 1st argument with narrow load */\ in ctx_access_u32_pointer_reject_32()
50 r2 = *(u16 *)(r1 + 0); /* load 1st argument with narrow load */\ in ctx_access_u32_pointer_reject_16()
62 r2 = *(u8 *)(r1 + 0); /* load 1st argument with narrow load */\ in ctx_access_u32_pointer_reject_8()
74 r2 = *(u64 *)(r1 + 0); /* load 1st argument value (const void pointer) */\
/linux/scripts/coccinelle/misc/
H A Dbadty.cocci2 /// Correct the size argument to alloc functions
4 //# This makes an effort to find cases where the argument to sizeof is wrong
6 //# when it is a double pointer and ensuring the sizeof argument takes a pointer
8 //# sizeof argument is not used in constructing the return value. The result
69 coccilib.org.print_todo(p[0], "WARNING sizeof argument should be pointer type, not structure type")
75 msg="WARNING: Use correct pointer type argument for sizeof"
/linux/include/linux/
H A Dsort.h9 * @l: the left argument
10 * @r: the right argument
12 * Return: 1 if the left argument is greater than the right one; 0 if the
13 * arguments are equal; -1 if the left argument is less than the right one.

12345678910>>...70