Lines Matching full:enumeration

3  * Functions corresponding to enumeration type attributes under
4 * BIOS Enumeration GUID for use with dell-wmi-sysman
11 get_instance_id(enumeration);
64 attribute_s_property_show(display_name_language_code, enumeration);
68 attribute_s_property_show(display_name, enumeration);
72 attribute_s_property_show(default_value, enumeration);
76 attribute_property_store(current_value, enumeration);
80 attribute_s_property_show(dell_modifier, enumeration);
84 attribute_s_property_show(dell_value_modifier, enumeration);
88 attribute_s_property_show(possible_values, enumeration);
95 return sprintf(buf, "enumeration\n"); in type_show()
132 * populate_enum_data() - Populate all properties of an instance under enumeration attribute
133 * @enumeration_obj: ACPI object with enumeration data
136 * @enum_property_count: Total properties count under enumeration type
144 if (check_property_type(enumeration, ATTR_NAME, ACPI_TYPE_STRING)) in populate_enum_data()
148 if (check_property_type(enumeration, DISPL_NAME_LANG_CODE, ACPI_TYPE_STRING)) in populate_enum_data()
152 if (check_property_type(enumeration, DISPLAY_NAME, ACPI_TYPE_STRING)) in populate_enum_data()
156 if (check_property_type(enumeration, DEFAULT_VAL, ACPI_TYPE_STRING)) in populate_enum_data()
160 if (check_property_type(enumeration, MODIFIER, ACPI_TYPE_STRING)) in populate_enum_data()
170 if (check_property_type(enumeration, next_obj, ACPI_TYPE_INTEGER)) in populate_enum_data()
177 if (check_property_type(enumeration, next_obj, ACPI_TYPE_STRING)) in populate_enum_data()
187 if (check_property_type(enumeration, next_obj, ACPI_TYPE_INTEGER)) in populate_enum_data()
194 if (check_property_type(enumeration, next_obj, ACPI_TYPE_STRING)) in populate_enum_data()