Lines Matching refs:name
33 * PARAMETERS: this_name - Entry in the predefined method/name table
38 * cases where a package info entry follows a method name that
49 * Skip next entry in the table if this name returns a Package
65 * PARAMETERS: name - Name to find
69 * DESCRIPTION: Check an object name against the predefined object list.
73 const union acpi_predefined_info *acpi_ut_match_predefined_method(char *name)
77 /* Quick check for a predefined name, first character must be underscore */
79 if (name[0] != '_') {
83 /* Search info table for a predefined method/object name */
86 while (this_name->info.name[0]) {
87 if (ACPI_COMPARE_NAMESEG(name, this_name->info.name)) {
127 /* If one of the expected types, concatenate the name of this type */
131 j = 0; /* Use name separator from now on */
150 /* Types that can be returned externally by a predefined name */
178 * PARAMETERS: name - Name to find
183 * DESCRIPTION: Check an object name against the predefined resource
188 const union acpi_predefined_info *acpi_ut_match_resource_name(char *name)
193 * Quick check for a predefined name, first character must
196 if (name[0] != '_') {
200 /* Search info table for a predefined method/object name */
203 while (this_name->info.name[0]) {
204 if (ACPI_COMPARE_NAMESEG(name, this_name->info.name)) {
219 * this_name - Entry in the predefined method/name table
249 this_name->info.name,