Lines Matching full:integer
3 * Functions corresponding to integer type attributes under BIOS Integer GUID for use with
13 get_instance_id(integer);
32 ret = snprintf(buf, PAGE_SIZE, "%lld\n", obj->package.elements[CURRENT_VAL].integer.value); in current_value_show()
55 * validate input to avoid setting 0 when integer input passed with + sign in validate_integer_input()
63 attribute_s_property_show(display_name_language_code, integer);
67 attribute_s_property_show(display_name, integer);
71 attribute_n_property_show(default_value, integer);
75 attribute_property_store(current_value, integer);
79 attribute_s_property_show(dell_modifier, integer);
83 attribute_n_property_show(min_value, integer);
87 attribute_n_property_show(max_value, integer);
91 attribute_n_property_show(scalar_increment, integer);
98 return sprintf(buf, "integer\n"); in type_show()
135 * populate_int_data() - Populate all properties of an instance under integer attribute
136 * @integer_obj: ACPI object with integer data
144 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()