Lines Matching defs:info
300 struct acpi_walk_info info;
326 info.count = 0;
327 info.owner_id = ACPI_OWNER_ID_MAX;
328 info.debug_level = ACPI_UINT32_MAX;
329 info.display_type = ACPI_DISPLAY_SUMMARY | ACPI_DISPLAY_SHORT;
332 (void)acpi_ns_dump_one_object(obj_handle, nesting_level, &info,
418 /* If method returns a package, the info is in the next table entry */
420 if (predefined->info.expected_btypes & ACPI_RTYPE_PACKAGE) {
425 predefined->info.expected_btypes);
428 METHOD_GET_ARG_COUNT(predefined->info.argument_list),
483 * DESCRIPTION: Display short info about objects in the namespace
492 struct acpi_object_info *info = (struct acpi_object_info *)context;
500 info->types[node->type]++;
514 * DESCRIPTION: Display short info about objects in the namespace
523 struct acpi_region_walk_info *info =
533 info->address_space_id) {
537 info->count++;
594 * DESCRIPTION: Display short info about objects in the namespace
603 struct acpi_walk_info *info = (struct acpi_walk_info *)context;
607 info->count++;
622 /* Dump short info about the object */
624 (void)acpi_ns_dump_one_object(obj_handle, nesting_level, info, NULL);
643 struct acpi_walk_info info;
696 info.count = 0;
697 info.owner_id = ACPI_OWNER_ID_MAX;
698 info.debug_level = ACPI_UINT32_MAX;
699 info.display_type = ACPI_DISPLAY_SUMMARY | ACPI_DISPLAY_SHORT;
705 (void *)&info, NULL);
709 info.count, acpi_ut_get_type_name(type));
730 struct acpi_region_walk_info info;
732 info.count = 0;
733 info.owner_id = ACPI_OWNER_ID_MAX;
734 info.debug_level = ACPI_UINT32_MAX;
735 info.display_type = ACPI_DISPLAY_SUMMARY | ACPI_DISPLAY_SHORT;
736 info.address_space_id = address_space_id;
742 acpi_db_walk_for_fields, NULL, (void *)&info,
764 struct acpi_integrity_info *info =
771 info->nodes++;
807 info->objects++;
832 struct acpi_integrity_info info = { 0, 0 };
838 (void *)&info, NULL);
841 info.nodes, info.objects);
923 * DESCRIPTION: Display info about device objects that have a corresponding
937 struct acpi_device_info *info;
963 status = acpi_get_object_info(obj_handle, &info);
973 if (info->flags & ACPI_PCI_ROOT_BRIDGE) {
978 /* _PRT info */
984 if (info->valid & ACPI_VALID_ADR) {
986 ACPI_FORMAT_UINT64(info->address));
991 if (info->valid & ACPI_VALID_HID) {
992 acpi_os_printf("_HID: %s\n", info->hardware_id.string);
997 if (info->valid & ACPI_VALID_UID) {
998 acpi_os_printf("_UID: %s\n", info->unique_id.string);
1003 if (info->valid & ACPI_VALID_CID) {
1004 for (i = 0; i < info->compatible_id_list.count; i++) {
1006 info->compatible_id_list.ids[i].string);
1012 ACPI_FREE(info);
1024 * DESCRIPTION: Display info about system buses.