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);
63 attribute_s_property_show(display_name_language_code, enumeration);
67 attribute_s_property_show(display_name, enumeration);
71 attribute_s_property_show(default_value, enumeration);
75 attribute_property_store(current_value, enumeration);
79 attribute_s_property_show(dell_modifier, enumeration);
83 attribute_s_property_show(dell_value_modifier, enumeration);
87 attribute_s_property_show(possible_values, enumeration);
94 return sprintf(buf, "enumeration\n"); in type_show()
131 * populate_enum_data() - Populate all properties of an instance under enumeration attribute
132 * @enumeration_obj: ACPI object with enumeration data
135 * @enum_property_count: Total properties count under enumeration type
143 if (check_property_type(enumeration, ATTR_NAME, ACPI_TYPE_STRING)) in populate_enum_data()
147 if (check_property_type(enumeration, DISPL_NAME_LANG_CODE, ACPI_TYPE_STRING)) in populate_enum_data()
151 if (check_property_type(enumeration, DISPLAY_NAME, ACPI_TYPE_STRING)) in populate_enum_data()
155 if (check_property_type(enumeration, DEFAULT_VAL, ACPI_TYPE_STRING)) in populate_enum_data()
159 if (check_property_type(enumeration, MODIFIER, ACPI_TYPE_STRING)) in populate_enum_data()
169 if (check_property_type(enumeration, next_obj, ACPI_TYPE_INTEGER)) in populate_enum_data()
176 if (check_property_type(enumeration, next_obj, ACPI_TYPE_STRING)) in populate_enum_data()
186 if (check_property_type(enumeration, next_obj, ACPI_TYPE_INTEGER)) in populate_enum_data()
193 if (check_property_type(enumeration, next_obj, ACPI_TYPE_STRING)) in populate_enum_data()