Lines Matching refs:attributes
60 const efi_guid_t *vendor, u32 *attributes, in efi_get_variable() argument
65 EFI_ENTRY("\"%ls\" %pUs %p %p %p", variable_name, vendor, attributes, in efi_get_variable()
68 ret = efi_get_variable_int(variable_name, vendor, attributes, in efi_get_variable()
72 if (attributes) in efi_get_variable()
73 *attributes &= EFI_VARIABLE_MASK; in efi_get_variable()
94 const efi_guid_t *vendor, u32 attributes, in efi_set_variable() argument
99 EFI_ENTRY("\"%ls\" %pUs %x %zu %p", variable_name, vendor, attributes, in efi_set_variable()
103 if (attributes & ~(u32)EFI_VARIABLE_MASK) in efi_set_variable()
106 ret = efi_set_variable_int(variable_name, vendor, attributes, in efi_set_variable()
157 u32 attributes, u64 *maximum_variable_storage_size, in efi_query_variable_info() argument
163 EFI_ENTRY("%x %p %p %p", attributes, maximum_variable_storage_size, in efi_query_variable_info()
171 ret = efi_query_variable_info_int(attributes, in efi_query_variable_info()
181 u32 *attributes, efi_uintn_t *data_size, void *data) in efi_get_variable_runtime() argument
185 ret = efi_get_variable_mem(variable_name, guid, attributes, data_size, data, NULL); in efi_get_variable_runtime()
188 if (attributes) in efi_get_variable_runtime()
189 *attributes &= EFI_VARIABLE_MASK; in efi_get_variable_runtime()