| /linux/rust/syn/ |
| H A D | path.rs | 45 /// path arguments, and 83 /// path arguments. 87 && self.segments[0].arguments.is_none() in get_ident() 110 /// A segment of a path together with any path arguments on that segment. 114 pub arguments: PathArguments, 125 arguments: PathArguments::None, in from() 131 /// Angle bracketed or parenthesized arguments of a path segment. 184 /// NOTE: Identity expressions are represented as Type arguments, as 199 /// Angle bracketed arguments of a path segment: the `<K, V>` in `HashMap<K, 246 /// Arguments of a function path segment: the `(A, B) -> C` in `Fn(A,B) -> [all …]
|
| H A D | discouraged.rs | 44 /// `<` token as the start of generic arguments, and reset to the `<` if 63 /// pub arguments: PathArguments, 73 /// # arguments: PathArguments::None, 93 /// arguments: PathArguments::AngleBracketed(input.parse()?), 98 /// if let Ok(arguments) = fork.parse() { 102 /// arguments: PathArguments::AngleBracketed(arguments), 124 /// If this is parsed as generic arguments, we can provide the error message 136 /// arguments, and tries to interpret the `&'a` as the start of a labelled
|
| /linux/tools/net/sunrpc/xdrgen/generators/ |
| H A D | program.py | 38 arguments = dict.fromkeys([]) 43 arguments[procedure.argument.type_name] = None 44 if len(arguments) > 0: 47 for argument in arguments: 67 arguments = dict.fromkeys([]) 72 arguments[procedure.argument.type_name] = None 75 for argument in arguments: 97 arguments = dict.fromkeys([]) 100 arguments[procedure.argument.type_name] = None 103 for argument in arguments:
|
| /linux/drivers/acpi/acpica/ |
| H A D | dbexec.c | 112 /* Pass through any command-line arguments */ in acpi_db_execute_method() 116 /* Get arguments passed on the command line */ in acpi_db_execute_method() 127 "While parsing method arguments")); in acpi_db_execute_method() 517 * acpi_gbl_db_method_info.Arguments will be passed as method arguments. in acpi_db_method_thread() 521 * Note: The arguments we are passing are used by the ASL test suite in acpi_db_method_thread() 538 local_info.args = local_info.arguments; in acpi_db_method_thread() 539 local_info.arguments[0] = local_info.num_threads_str; in acpi_db_method_thread() 540 local_info.arguments[1] = local_info.id_of_thread_str; in acpi_db_method_thread() 541 local_info.arguments[2] = local_info.index_of_thread_str; in acpi_db_method_thread() 542 local_info.arguments[3] = NULL; in acpi_db_method_thread() [all …]
|
| H A D | dsmthdat.c | 4 * Module Name: dsmthdat - control method arguments and local variables 42 * DESCRIPTION: Initialize the data structures that hold the method's arguments 61 /* Init the method arguments */ in acpi_ds_method_data_init() 64 ACPI_MOVE_32_TO_32(&walk_state->arguments[i].name, in acpi_ds_method_data_init() 67 walk_state->arguments[i].name.integer |= (i << 24); in acpi_ds_method_data_init() 68 walk_state->arguments[i].descriptor_type = ACPI_DESC_TYPE_NAMED; in acpi_ds_method_data_init() 69 walk_state->arguments[i].type = ACPI_TYPE_ANY; in acpi_ds_method_data_init() 70 walk_state->arguments[i].flags = ANOBJ_METHOD_ARG; in acpi_ds_method_data_init() 97 * DESCRIPTION: Delete method locals and arguments. Arguments are only 124 /* Detach the arguments */ in acpi_ds_method_data_delete_all() [all …]
|
| H A D | dbobject.c | 42 /* There are no locals or arguments for the module-level code case */ in acpi_db_dump_method_info() 71 /* Display the method locals and arguments */ in acpi_db_dump_method_info() 267 obj_desc = walk_state->arguments in acpi_db_display_internal_object() 455 * DESCRIPTION: Display all arguments for the currently running control method 468 /* There are no arguments for the module-level code case */ in acpi_db_decode_arguments() 485 /* Are any arguments actually set? */ in acpi_db_decode_arguments() 488 obj_desc = walk_state->arguments[i].object; in acpi_db_decode_arguments() 498 acpi_os_printf("Initialized Arguments for Method [%4.4s]: " in acpi_db_decode_arguments() 499 "(%X arguments defined for method invocation)\n", in acpi_db_decode_arguments() 504 obj_desc = walk_state->arguments[i].object; in acpi_db_decode_arguments() [all …]
|
| /linux/tools/power/pm-graph/config/ |
| H A D | custom-timeline-functions.cfg | 3 # all the tool arguments so that they don't have to be given on the 86 # Required Arguments: 90 # name with no arguments. 94 # Optional Arguments: 107 # arglist: A list of arguments from registers/stack addresses. See URL: 151 # Required Arguments: 155 # name with no arguments. 159 # Optional Arguments: 172 # arglist: A list of arguments from registers/stack addresses. See URL:
|
| /linux/Documentation/firmware-guide/acpi/ |
| H A D | chromeos-acpi-device.rst | 52 Arguments: 83 Arguments: 99 Arguments: 113 Arguments: 126 Arguments: 188 Arguments: 261 Arguments: 297 Arguments: 311 Arguments: 326 Arguments: [all …]
|
| /linux/arch/mips/kernel/ |
| H A D | bmips_5xxx_init.S | 110 * Arguments: None 205 * Arguments: None 298 * Arguments: None 321 * Arguments: None 408 * Arguments: none 444 * Arguments: none 478 * Arguments: set link uncached. 501 * Arguments: set CWF and TSE bits 521 * Arguments: set clock ratio specified by a0 545 * Arguments: None [all …]
|
| /linux/arch/powerpc/xmon/ |
| H A D | ansidecl.h | 27 ARGLIST lists the arguments, separated by commas and enclosed in 30 ARGS list the arguments with their types. It becomes a prototype in 31 ANSI C, and the type declarations in traditional C. Arguments should 33 arguments, the last thing listed should be `DOTS'. 37 Defines a function NAME, which takes no arguments. 45 For a function that takes no arguments, PROTOTYPE should be `(void)'.
|
| /linux/drivers/tee/qcomtee/ |
| H A D | shm.c | 24 * specifically the number of IB and OB arguments. If an invocation 33 * @u: array of arguments for the current invocation. 36 * arguments in @u. It allocates the buffers from the teedev pool. 48 /* Start offset in a message for buffer arguments. */ in qcomtee_msg_buffers_alloc() 54 /* Add size of IB arguments. */ in qcomtee_msg_buffers_alloc() 61 /* Add size of OB arguments. */ in qcomtee_msg_buffers_alloc()
|
| /linux/Documentation/networking/ |
| H A D | radiotap-headers.rst | 36 argument bitmap extensions..." above), and the start of the arguments is moved 40 covered by the ieee80211_radiotap_header and any arguments following. 43 Requirements for arguments 46 After the fixed part of the header, the arguments follow for each argument 50 - the arguments are all stored little-endian! 57 - the arguments must be aligned to a boundary of the argument size using 75 - The arguments for a given argument index can be a compound of multiple types
|
| /linux/include/uapi/drm/ |
| H A D | pvr_drm.h | 44 * ioctl infrastructure is supporting that by padding ioctl arguments with zeros 48 * from the main ioctl arguments structure: the stride basically defines the size 482 * struct drm_pvr_ioctl_dev_query_args - Arguments for %DRM_IOCTL_PVR_DEV_QUERY. 545 * struct drm_pvr_ioctl_create_bo_args - Arguments for %DRM_IOCTL_PVR_CREATE_BO 577 * struct drm_pvr_ioctl_get_bo_mmap_offset_args - Arguments for 601 * struct drm_pvr_ioctl_create_vm_context_args - Arguments for 613 * struct drm_pvr_ioctl_destroy_vm_context_args - Arguments for 643 * struct drm_pvr_ioctl_vm_map_args - Arguments for %DRM_IOCTL_PVR_VM_MAP. 692 * struct drm_pvr_ioctl_vm_unmap_args - Arguments for %DRM_IOCTL_PVR_VM_UNMAP. 721 * enum drm_pvr_ctx_priority - Arguments for [all …]
|
| /linux/Documentation/devicetree/bindings/pinctrl/ |
| H A D | mediatek,mt8365-pinctrl.yaml | 82 resistance. Valid arguments are described as below: 96 different resistance. Valid arguments are described as below: 135 Valid arguments are described as below: 144 So the valid arguments are from 0 to 7. 153 configure those special pins. Valid arguments are described as 167 configure those special pins. Valid arguments are described as 179 cycle when asserted (high pulse width adjustment). Valid arguments 186 when asserted (high pulse width adjustment). Valid arguments are
|
| /linux/net/batman-adv/ |
| H A D | log.h | 74 * @arg: variable arguments 98 * @arg: format string and variable arguments 107 * @arg: format string and variable arguments 116 * @arg: variable arguments 134 * @arg: variable arguments
|
| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | get_func_args_test.c | 19 /* valid arguments */ in BPF_PROG() 52 /* valid arguments */ in BPF_PROG() 79 /* valid arguments */ in BPF_PROG() 108 /* valid arguments */ in BPF_PROG() 155 /* valid arguments */ in BPF_PROG()
|
| /linux/tools/testing/selftests/bpf/prog_tests/ |
| H A D | test_struct_ops_arena.c | 11 * Attach callbacks with __arena and __arena__nullable arguments and drive 81 ASSERT_HAS_SUBSTR(log_buf, "Cannot attach to a target with arena context arguments", in arena_arg_attach_one() 114 * Arena struct_ops arguments need JIT support, currently x86-64 and in serial_test_struct_ops_arena() 116 * arena arguments", so the programs cannot even load. in serial_test_struct_ops_arena()
|
| /linux/Documentation/trace/ |
| H A D | fprobetrace.rst | 43 FETCHARGS : Arguments. Each probe can have up to 128 args. 74 the stack. But this only support the arguments via registers. 83 Function arguments at exit 85 Function arguments can be accessed at exit probe using $arg<N> fetcharg. This 91 BTF arguments 123 If user unsures the name of arguments, ``$arg*`` will be helpful. The ``$arg*`` 124 is expanded to all function arguments of the function or the tracepoint. :: 156 For these BTF arguments and fields, ``:string`` and ``:ustring`` change the 175 and exit, with BTF arguments. 196 You can see all function arguments and return values are recorded as signed int. [all …]
|
| H A D | kprobetrace.rst | 47 FETCHARGS : Arguments. Each probe can have up to 128 args. 78 the stack. But this only support the arguments via registers. 85 Function arguments at kretprobe 87 Function arguments can be accessed at kretprobe using $arg<N> fetcharg. This 100 respectively. 'x' prefix implies it is unsigned. Traced arguments are shown 112 Char type can be used to show the character value of traced arguments. 164 probe and gives you what arguments will be shown in trace buffer. If an event 215 1st to 4th arguments as "myprobe" event. Note, which register/stack entry is 219 As this example shows, users can choose more familiar names for each arguments. 250 You can see that the event has 4 arguments as in the expressions you specified.
|
| /linux/net/ethtool/ |
| H A D | cmis.h | 63 * struct ethtool_cmis_cdb_cmd_args - CDB commands execution arguments 84 * struct ethtool_cmis_cdb_rpl_hdr - CDB commands reply header arguments 94 * struct ethtool_cmis_cdb_rpl - CDB commands reply arguments 95 * @hdr: CDB commands reply header arguments.
|
| /linux/tools/perf/Documentation/ |
| H A D | perf-script-perl.txt | 45 Most of the event's field values are passed as arguments to the 87 The $common_* arguments in the handler's argument list are the set of 88 arguments passed to all event handlers; some of the fields correspond 91 to every event as arguments but are available as library functions. 104 counterparts as handler function arguments of the same name, as can be 153 of common arguments are passed into it:
|
| /linux/arch/x86/include/asm/ |
| H A D | efi.h | 39 * arguments. The macros below allows us to check at build time that we don't 40 * try to call them with too many arguments. 42 * __efi_nargs() will return the number of arguments if it is 7 or less, and 44 * impossible to calculate the exact number of arguments beyond some 45 * pre-defined limit. The maximum number of arguments currently supported by 64 * represents more than n arguments. 73 #f " called with too many arguments (" #p ">" #n ")"); \ 213 * The following macros allow translating arguments if necessary from native to 216 * which must be split up into two arguments to be thunked properly.
|
| /linux/Documentation/sphinx/ |
| H A D | kernel_feat.py | 91 feature_dir = os.path.join(srctree, 'Documentation', self.arguments[0]) 96 if len(self.arguments) > 1: 97 arch = self.arguments[1] 116 nodeList = self.nestedParse(out_lines, self.arguments[0])
|
| /linux/Documentation/RCU/ |
| H A D | UP.rst | 25 Now, if call_rcu() were to directly invoke its arguments, then upon return 37 by having call_rcu() directly invoke its arguments only if it was called 47 its arguments would cause it to fail to make the fundamental guarantee 48 underlying RCU, namely that call_rcu() defers invoking its arguments until 100 Permitting call_rcu() to immediately invoke its arguments breaks RCU,
|
| /linux/Documentation/arch/arm64/ |
| H A D | tagged-address-abi.rst | 58 - The ``range.start``, ``start`` and ``dst`` arguments to the 80 Arguments ``arg3``, ``arg4``, and ``arg5`` must be 0. 85 Arguments ``arg2``, ``arg3``, ``arg4``, and ``arg5`` must be 0. 119 indirectly as arguments to be accessed by the kernel. 122 indirectly as arguments to be accessed by the kernel.
|