Lines Matching defs:name
275 * Extract the name and GPE type from the object, saving this
280 * The name of each GPE control method is of the form:
303 char name[ACPI_NAMESEG_SIZE + 1];
318 * 1) Extract the method name and null terminate it
320 ACPI_MOVE_32_TO_32(name, &method_node->name.integer);
321 name[ACPI_NAMESEG_SIZE] = 0;
325 if (name[0] != '_') {
331 * of the method name
333 switch (name[1]) {
350 "(name not of form _Lxx or _Exx)", name));
354 /* 4) The last two characters of the name are the hex GPE Number */
356 status = acpi_ut_ascii_to_hex_byte(&name[2], &temp_gpe_number);
362 "Could not extract GPE number from name: %s "
363 "(name is not of form _Lxx or _Exx)", name));
419 name, gpe_number));