Home
last modified time | relevance | path

Searched refs:check_property_type (Results 1 – 5 of 5) sorted by relevance

/linux-5.19.10/drivers/platform/x86/dell/dell-wmi-sysman/
Denum-attributes.c143 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()
Dint-attributes.c144 if (check_property_type(integer, ATTR_NAME, ACPI_TYPE_STRING)) in populate_int_data()
148 if (check_property_type(integer, DISPL_NAME_LANG_CODE, ACPI_TYPE_STRING)) in populate_int_data()
152 if (check_property_type(integer, DISPLAY_NAME, ACPI_TYPE_STRING)) in populate_int_data()
156 if (check_property_type(integer, DEFAULT_VAL, ACPI_TYPE_INTEGER)) in populate_int_data()
160 if (check_property_type(integer, MODIFIER, ACPI_TYPE_STRING)) in populate_int_data()
164 if (check_property_type(integer, MIN_VALUE, ACPI_TYPE_INTEGER)) in populate_int_data()
168 if (check_property_type(integer, MAX_VALUE, ACPI_TYPE_INTEGER)) in populate_int_data()
172 if (check_property_type(integer, SCALAR_INCR, ACPI_TYPE_INTEGER)) in populate_int_data()
Dstring-attributes.c128 if (check_property_type(str, ATTR_NAME, ACPI_TYPE_STRING)) in populate_str_data()
132 if (check_property_type(str, DISPL_NAME_LANG_CODE, ACPI_TYPE_STRING)) in populate_str_data()
136 if (check_property_type(str, DISPLAY_NAME, ACPI_TYPE_STRING)) in populate_str_data()
140 if (check_property_type(str, DEFAULT_VAL, ACPI_TYPE_STRING)) in populate_str_data()
144 if (check_property_type(str, MODIFIER, ACPI_TYPE_STRING)) in populate_str_data()
148 if (check_property_type(str, MIN_LEN, ACPI_TYPE_INTEGER)) in populate_str_data()
151 if (check_property_type(str, MAX_LEN, ACPI_TYPE_INTEGER)) in populate_str_data()
Dpassobj-attributes.c162 if (check_property_type(po, ATTR_NAME, ACPI_TYPE_STRING)) in populate_po_data()
166 if (check_property_type(po, MIN_PASS_LEN, ACPI_TYPE_INTEGER)) in populate_po_data()
170 if (check_property_type(po, MAX_PASS_LEN, ACPI_TYPE_INTEGER)) in populate_po_data()
Ddell-wmi-sysman.h155 #define check_property_type(attr, prop, valuetype) \ macro