Lines Matching full:arguments

111 	/* Pass through any command-line arguments */  in acpi_db_execute_method()
115 /* Get arguments passed on the command line */ in acpi_db_execute_method()
126 "While parsing method arguments")); in acpi_db_execute_method()
496 * acpi_gbl_db_method_info.Arguments will be passed as method arguments. in acpi_db_method_thread()
500 * Note: The arguments we are passing are used by the ASL test suite in acpi_db_method_thread()
517 local_info.args = local_info.arguments; in acpi_db_method_thread()
518 local_info.arguments[0] = local_info.num_threads_str; in acpi_db_method_thread()
519 local_info.arguments[1] = local_info.id_of_thread_str; in acpi_db_method_thread()
520 local_info.arguments[2] = local_info.index_of_thread_str; in acpi_db_method_thread()
521 local_info.arguments[3] = NULL; in acpi_db_method_thread()
625 * arguments - Array of arguments to the method
631 * arguments passed on command line for control methods.
637 char **arguments, acpi_object_type *types) in acpi_db_create_execution_thread() argument
645 acpi_gbl_db_method_info.args = acpi_gbl_db_method_info.arguments; in acpi_db_create_execution_thread()
648 /* Setup method arguments, up to 7 (0-6) */ in acpi_db_create_execution_thread()
650 for (i = 0; (i < ACPI_METHOD_NUM_ARGS) && *arguments; i++) { in acpi_db_create_execution_thread()
651 acpi_gbl_db_method_info.arguments[i] = *arguments; in acpi_db_create_execution_thread()
652 arguments++; in acpi_db_create_execution_thread()
711 /* Get the arguments */ in acpi_db_create_execution_threads()
785 /* Init arguments to be passed to method */ in acpi_db_create_execution_threads()
788 acpi_gbl_db_method_info.args = acpi_gbl_db_method_info.arguments; in acpi_db_create_execution_threads()
789 acpi_gbl_db_method_info.arguments[0] = in acpi_db_create_execution_threads()
791 acpi_gbl_db_method_info.arguments[1] = in acpi_db_create_execution_threads()
793 acpi_gbl_db_method_info.arguments[2] = in acpi_db_create_execution_threads()
795 acpi_gbl_db_method_info.arguments[3] = NULL; in acpi_db_create_execution_threads()