Home
last modified time | relevance | path

Searched refs:arguments (Results 1 - 25 of 73) sorted by relevance

123

/kernel/linux/linux-5.10/drivers/acpi/acpica/
H A Ddbexec.c112 /* 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[ in acpi_db_method_thread()
657 acpi_db_create_execution_thread(char *method_name_arg, char **arguments, acpi_object_type *types) acpi_db_create_execution_thread() argument
[all...]
H A Ddsmthdat.c4 * 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 Ddbutils.c28 * arguments - Array of commands to match against
38 struct acpi_db_argument_info *arguments) in acpi_db_match_argument()
46 for (i = 0; arguments[i].name; i++) { in acpi_db_match_argument()
47 if (strstr(ACPI_CAST_PTR(char, arguments[i].name), in acpi_db_match_argument()
49 user_argument)) == arguments[i].name) { in acpi_db_match_argument()
37 acpi_db_match_argument(char *user_argument, struct acpi_db_argument_info *arguments) acpi_db_match_argument() argument
H A Ddbobject.c42 /* 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()
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()
H A Dacdebug.h24 u8 min_args; /* Minimum arguments required */
200 char **arguments, acpi_object_type *types);
217 struct acpi_db_argument_info *arguments);
H A Ddsutils.c342 * arguments to a control method invocation (a call from one
356 * Method arguments are passed by reference, not by value. This means in acpi_ds_resolve_operands()
582 opcode = AML_ZERO_OP; /* Has no arguments! */ in acpi_ds_create_operand()
656 * DESCRIPTION: Convert an operator's arguments from a parse tree format to
668 union acpi_parse_object *arguments[ACPI_OBJ_NUM_OPERANDS]; in acpi_ds_create_operands() local
677 /* Get all arguments in the list */ in acpi_ds_create_operands()
685 arguments[index] = arg; in acpi_ds_create_operands()
699 /* Create the interpreter arguments, in reverse order */ in acpi_ds_create_operands()
704 arg = arguments[index]; in acpi_ds_create_operands()
/kernel/linux/linux-6.6/drivers/acpi/acpica/
H A Ddbexec.c112 /* 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[ in acpi_db_method_thread()
657 acpi_db_create_execution_thread(char *method_name_arg, char **arguments, acpi_object_type *types) acpi_db_create_execution_thread() argument
[all...]
H A Ddsmthdat.c4 * 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 Ddbutils.c28 * arguments - Array of commands to match against
38 struct acpi_db_argument_info *arguments) in acpi_db_match_argument()
46 for (i = 0; arguments[i].name; i++) { in acpi_db_match_argument()
47 if (strstr(ACPI_CAST_PTR(char, arguments[i].name), in acpi_db_match_argument()
49 user_argument)) == arguments[i].name) { in acpi_db_match_argument()
37 acpi_db_match_argument(char *user_argument, struct acpi_db_argument_info *arguments) acpi_db_match_argument() argument
H A Ddbobject.c42 /* 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()
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()
H A Dacdebug.h24 u8 min_args; /* Minimum arguments required */
200 char **arguments, acpi_object_type *types);
217 struct acpi_db_argument_info *arguments);
/kernel/linux/linux-6.6/Documentation/sphinx/
H A Dkernel_feat.py90 os.path.join(srctree, 'Documentation', self.arguments[0]),
93 if len(self.arguments) > 1:
94 args.extend(['--arch', self.arguments[1]])
112 nodeList = self.nestedParse(out_lines, self.arguments[0])
H A Dkernel_include.py64 os.path.expandvars(self.arguments[0]))
72 self.arguments[0] = path
92 path = directives.path(self.arguments[0])
183 [self.options.pop('code')], # arguments
H A Dkernel_abi.py84 '--dir', os.path.join(srctree, 'Documentation', self.arguments[0]),
91 nodeList = self.nestedParse(lines, self.arguments[0])
/kernel/linux/linux-5.10/Documentation/sphinx/
H A Dkernel_include.py63 os.path.expandvars(self.arguments[0]))
71 self.arguments[0] = path
89 path = directives.path(self.arguments[0])
180 [self.options.pop('code')], # arguments
H A Dkernel_abi.py94 cmd += self.arguments[0]
113 nodeList = self.nestedParse(lines, self.arguments[0])
H A Dkfigure.py359 uri = self.arguments[0]
395 uri = self.arguments[0]
488 srclang = self.arguments[0].strip()
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_acpi.c323 struct atif_qbtc_arguments arguments; in amdgpu_atif_query_backlight_caps() local
328 arguments.size = sizeof(arguments); in amdgpu_atif_query_backlight_caps()
329 arguments.requested_display = ATIF_QBTC_REQUEST_LCD1; in amdgpu_atif_query_backlight_caps()
331 params.length = sizeof(arguments); in amdgpu_atif_query_backlight_caps()
332 params.pointer = (void *)&arguments; in amdgpu_atif_query_backlight_caps()
/kernel/linux/linux-5.10/arch/alpha/lib/
H A Dcallback_srm.S21 mov $20,$21 # Shift arguments right.
48 lda $25,2($31) # two integer arguments
/kernel/linux/linux-6.6/arch/alpha/lib/
H A Dcallback_srm.S21 mov $20,$21 # Shift arguments right.
48 lda $25,2($31) # two integer arguments
/kernel/linux/linux-6.6/tools/testing/cxl/test/
H A Dmock.c83 struct acpi_object_list *arguments, in __wrap_acpi_evaluate_integer()
91 status = ops->acpi_evaluate_integer(handle, pathname, arguments, in __wrap_acpi_evaluate_integer()
94 status = acpi_evaluate_integer(handle, pathname, arguments, in __wrap_acpi_evaluate_integer()
81 __wrap_acpi_evaluate_integer(acpi_handle handle, acpi_string pathname, struct acpi_object_list *arguments, unsigned long long *data) __wrap_acpi_evaluate_integer() argument
H A Dmock.h16 struct acpi_object_list *arguments,
/kernel/linux/linux-5.10/drivers/acpi/
H A Dutils.c268 struct acpi_object_list *arguments, unsigned long long *data) in acpi_evaluate_integer()
279 status = acpi_evaluate_object(handle, pathname, arguments, &buffer); in acpi_evaluate_integer()
302 struct acpi_object_list *arguments, in acpi_evaluate_reference()
318 status = acpi_evaluate_object(handle, pathname, arguments, &buffer); in acpi_evaluate_reference()
266 acpi_evaluate_integer(acpi_handle handle, acpi_string pathname, struct acpi_object_list *arguments, unsigned long long *data) acpi_evaluate_integer() argument
300 acpi_evaluate_reference(acpi_handle handle, acpi_string pathname, struct acpi_object_list *arguments, struct acpi_handle_list *list) acpi_evaluate_reference() argument
/kernel/linux/linux-6.6/drivers/acpi/
H A Dutils.c249 struct acpi_object_list *arguments, unsigned long long *data) in acpi_evaluate_integer()
260 status = acpi_evaluate_object(handle, pathname, arguments, &buffer); in acpi_evaluate_integer()
335 struct acpi_object_list *arguments, in acpi_evaluate_reference()
351 status = acpi_evaluate_object(handle, pathname, arguments, &buffer); in acpi_evaluate_reference()
247 acpi_evaluate_integer(acpi_handle handle, acpi_string pathname, struct acpi_object_list *arguments, unsigned long long *data) acpi_evaluate_integer() argument
333 acpi_evaluate_reference(acpi_handle handle, acpi_string pathname, struct acpi_object_list *arguments, struct acpi_handle_list *list) acpi_evaluate_reference() argument
/kernel/linux/linux-6.6/drivers/net/wwan/iosm/
H A Diosm_ipc_flash.h193 * @arguments: Argument value sent to modem
199 __le32 arguments; member

Completed in 13 milliseconds

123