Lines Matching defs:info
31 * walk_state - Current walk info
377 /* Get the object info for number of method parameters */
453 struct acpi_db_execute_walk *info =
475 info->count++;
476 if (info->count >= info->max_count) {
503 struct acpi_db_execute_walk *info =
507 if (!ACPI_COMPARE_NAMESEG(node->name.ascii, info->name_seg)) {
525 info->count++;
544 struct acpi_db_execute_walk info;
546 info.count = 0;
547 info.max_count = ACPI_UINT32_MAX;
553 NULL, (void *)&info, NULL);
556 info.count);
575 struct acpi_db_execute_walk info;
577 info.count = 0;
578 info.max_count = ACPI_UINT32_MAX;
579 ACPI_COPY_NAMESEG(info.name_seg, name_seg);
580 info.name_seg[ACPI_NAMESEG_SIZE] = 0;
586 NULL, (void *)&info, NULL);
588 acpi_os_printf("Evaluated %u names in the namespace\n", info.count);