Lines Matching refs:this_name

79 								     *this_name)  in acpi_ut_get_next_predefined_method()
86 if ((this_name->info.expected_btypes & ACPI_RTYPE_PACKAGE) && in acpi_ut_get_next_predefined_method()
87 (this_name->info.expected_btypes != ACPI_RTYPE_ALL)) { in acpi_ut_get_next_predefined_method()
88 this_name++; in acpi_ut_get_next_predefined_method()
91 this_name++; in acpi_ut_get_next_predefined_method()
92 return (this_name); in acpi_ut_get_next_predefined_method()
109 const union acpi_predefined_info *this_name; in acpi_ut_match_predefined_method() local
119 this_name = acpi_gbl_predefined_methods; in acpi_ut_match_predefined_method()
120 while (this_name->info.name[0]) { in acpi_ut_match_predefined_method()
121 if (ACPI_COMPARE_NAME(name, this_name->info.name)) { in acpi_ut_match_predefined_method()
122 return (this_name); in acpi_ut_match_predefined_method()
125 this_name = acpi_ut_get_next_predefined_method(this_name); in acpi_ut_match_predefined_method()
226 const union acpi_predefined_info *this_name; in acpi_ut_match_resource_name() local
236 this_name = acpi_gbl_resource_names; in acpi_ut_match_resource_name()
237 while (this_name->info.name[0]) { in acpi_ut_match_resource_name()
238 if (ACPI_COMPARE_NAME(name, this_name->info.name)) { in acpi_ut_match_resource_name()
239 return (this_name); in acpi_ut_match_resource_name()
242 this_name++; in acpi_ut_match_resource_name()
266 const union acpi_predefined_info *this_name, in acpi_ut_display_predefined_method() argument
276 this_name->info.argument_list); in acpi_ut_display_predefined_method()
283 this_name->info.name, in acpi_ut_display_predefined_method()
284 (this_name->info.argument_list & ARG_COUNT_IS_MINIMUM) ? in acpi_ut_display_predefined_method()
299 if (this_name->info.expected_btypes) { in acpi_ut_display_predefined_method()
301 this_name->info. in acpi_ut_display_predefined_method()