Home
last modified time | relevance | path

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

/drivers/acpi/acpica/
Dutxferror.c73 va_list arg_list; in acpi_error() local
78 va_start(arg_list, format); in acpi_error()
79 acpi_os_vprintf(format, arg_list); in acpi_error()
81 va_end(arg_list); in acpi_error()
107 va_list arg_list; in ACPI_EXPORT_SYMBOL() local
121 va_start(arg_list, format); in ACPI_EXPORT_SYMBOL()
122 acpi_os_vprintf(format, arg_list); in ACPI_EXPORT_SYMBOL()
124 va_end(arg_list); in ACPI_EXPORT_SYMBOL()
147 va_list arg_list; in ACPI_EXPORT_SYMBOL() local
152 va_start(arg_list, format); in ACPI_EXPORT_SYMBOL()
[all …]
Duterror.c80 va_list arg_list; in acpi_ut_predefined_warning() local
92 va_start(arg_list, format); in acpi_ut_predefined_warning()
93 acpi_os_vprintf(format, arg_list); in acpi_ut_predefined_warning()
95 va_end(arg_list); in acpi_ut_predefined_warning()
122 va_list arg_list; in acpi_ut_predefined_info() local
134 va_start(arg_list, format); in acpi_ut_predefined_info()
135 acpi_os_vprintf(format, arg_list); in acpi_ut_predefined_info()
137 va_end(arg_list); in acpi_ut_predefined_info()
165 va_list arg_list; in acpi_ut_predefined_bios_error() local
177 va_start(arg_list, format); in acpi_ut_predefined_bios_error()
[all …]
Dpsscope.c160 scope->parse_scope.arg_list = remaining_args; in acpi_ps_push_scope()
200 union acpi_parse_object **op, u32 * arg_list, u32 * arg_count) in acpi_ps_pop_scope() argument
214 *arg_list = scope->parse_scope.arg_list; in acpi_ps_pop_scope()
225 *arg_list = 0; in acpi_ps_pop_scope()
Dhwesleep.c67 struct acpi_object_list arg_list; in acpi_hw_execute_sleep_method() local
75 arg_list.count = 1; in acpi_hw_execute_sleep_method()
76 arg_list.pointer = &arg; in acpi_hw_execute_sleep_method()
80 status = acpi_evaluate_object(NULL, method_pathname, &arg_list, NULL); in acpi_hw_execute_sleep_method()
Dhwxfsleep.c305 struct acpi_object_list arg_list; in acpi_enter_sleep_state_prep() local
320 arg_list.count = 1; in acpi_enter_sleep_state_prep()
321 arg_list.pointer = &arg; in acpi_enter_sleep_state_prep()
326 acpi_evaluate_object(NULL, METHOD_PATHNAME__PTS, &arg_list, NULL); in acpi_enter_sleep_state_prep()
Dacpredef.h144 #define METHOD_GET_ARG_COUNT(arg_list) ((arg_list) & METHOD_ARG_MASK) argument
145 #define METHOD_GET_NEXT_TYPE(arg_list) (((arg_list) >>= METHOD_ARG_BIT_WIDTH) & METHOD_ARG_MASK) argument
Dacparser.h185 union acpi_parse_object **op, u32 *arg_list, u32 *arg_count);
Daclocal.h639 u32 arg_list; /* Next argument to parse */ member
/drivers/platform/x86/
Dintel_menlow.c69 struct acpi_object_list arg_list; in memory_get_max_bandwidth() local
73 arg_list.count = 1; in memory_get_max_bandwidth()
74 arg_list.pointer = &arg; in memory_get_max_bandwidth()
78 &arg_list, &value); in memory_get_max_bandwidth()
95 struct acpi_object_list arg_list; in memory_get_cur_bandwidth() local
99 arg_list.count = 1; in memory_get_cur_bandwidth()
100 arg_list.pointer = &arg; in memory_get_cur_bandwidth()
104 &arg_list, &result); in memory_get_cur_bandwidth()
117 struct acpi_object_list arg_list; in memory_set_cur_bandwidth() local
129 arg_list.count = 1; in memory_set_cur_bandwidth()
[all …]
Dfujitsu-laptop.c237 struct acpi_object_list arg_list = { 4, &params[0] }; in call_fext_func() local
253 status = acpi_evaluate_integer(handle, NULL, &arg_list, &value); in call_fext_func()
/drivers/acpi/
Ddock.c330 struct acpi_object_list arg_list; in handle_dock() local
337 arg_list.count = 1; in handle_dock()
338 arg_list.pointer = &arg; in handle_dock()
341 status = acpi_evaluate_integer(ds->handle, "_DCK", &arg_list, &value); in handle_dock()
Dutils.c452 struct acpi_object_list arg_list = {3, params}; in acpi_evaluate_ost() local
464 return acpi_evaluate_object(handle, "_OST", &arg_list, NULL); in acpi_evaluate_ost()
562 struct acpi_object_list arg_list = { .count = 1, .pointer = &obj, }; in acpi_execute_simple_method() local
566 return acpi_evaluate_object(handle, method, &arg_list, NULL); in acpi_execute_simple_method()
Dpower.c510 struct acpi_object_list arg_list = { 3, in_arg }; in acpi_device_sleep_wake() local
530 status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL); in acpi_device_sleep_wake()
/drivers/pci/hotplug/
Dacpiphp_glue.c431 struct acpi_object_list arg_list; in acpiphp_set_acpi_region() local
434 arg_list.count = 2; in acpiphp_set_acpi_region()
435 arg_list.pointer = params; in acpiphp_set_acpi_region()
441 acpi_evaluate_object(func_to_handle(func), "_REG", &arg_list, in acpiphp_set_acpi_region()
/drivers/staging/most/aim-sound/
Dsound.c558 struct kobject *parent, char *arg_list) in audio_probe_channel() argument
592 ret = split_arg_list(arg_list, &card_name, &pcm_format); in audio_probe_channel()