Lines Matching defs:next
122 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(region.next), "Next"}
210 {ACPI_EXD_HDLR_LIST, ACPI_EXD_OFFSET(address_space.next), "Next"},
223 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.next[0]),
225 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.next[1]), "Next Device Notify"}
338 union acpi_operand_object *next;
440 next = start;
442 acpi_os_printf("%20s : %p ", name, next);
443 if (next) {
446 (next), next->common.type);
448 while (next->common.next_object) {
449 if ((next->common.type ==
451 data = next;
454 next = next->common.next_object;
455 acpi_os_printf("->%p(%s %2.2X)", next,
457 (next),
458 next->common.type);
460 if ((next == start) || (next == data)) {
476 next = start;
478 acpi_os_printf("%20s : %p", name, next);
479 if (next) {
482 (next),
483 next->address_space.space_id);
485 while (next->address_space.next) {
486 if ((next->common.type ==
488 data = next;
491 next = next->address_space.next;
492 acpi_os_printf("->%p(%s %2.2X)", next,
494 (next),
495 next->address_space.
498 if ((next == start) || (next == data)) {
512 next = start;
514 acpi_os_printf("%20s : %p", name, next);
515 if (next) {
518 (next), next->common.type);
520 while (next->region.next) {
521 if ((next->common.type ==
523 data = next;
526 next = next->region.next;
527 acpi_os_printf("->%p(%s %2.2X)", next,
529 (next),
530 next->common.type);
532 if ((next == start) || (next == data)) {