Lines Matching full:guid
40 * parameters (name, GUID) stored after it as well as any padding
45 * @guid_offset: Offset from the start of this struct to where the GUID
47 * @guid_size: Size of the GUID parameter in bytes, i.e. sizeof(efi_guid_t).
86 * parameters (name, GUID, data) stored after it as well as any
91 * @guid_offset: Offset from the start of this struct to where the GUID
93 * @guid_size: Size of the GUID parameter in bytes, i.e. sizeof(efi_guid_t).
135 * parameters (name, GUID) stored after it as well as any padding
137 * @guid_offset: Offset from the start of this struct to where the GUID
139 * @guid_size: Size of the GUID parameter in bytes, i.e. sizeof(efi_guid_t).
159 * parameters (name, GUID) stored after it as well as any padding
162 * @guid_offset: Offset from the start of this struct to where the GUID
164 * @guid_size: Size of the GUID parameter in bytes, i.e. sizeof(efi_guid_t).
295 const efi_guid_t *guid, u32 *attributes, in qsee_uefi_get_variable() argument
313 if (!name || !guid) in qsee_uefi_get_variable()
326 __field_offs(*guid, &guid_offs) in qsee_uefi_get_variable()
351 req_data->guid_size = sizeof(*guid); in qsee_uefi_get_variable()
358 memcpy(((void *)req_data) + req_data->guid_offset, guid, req_data->guid_size); in qsee_uefi_get_variable()
426 const efi_guid_t *guid, u32 attributes, in qsee_uefi_set_variable() argument
442 if (!name || !guid) in qsee_uefi_set_variable()
460 __field_offs(*guid, &guid_offs) in qsee_uefi_set_variable()
481 req_data->guid_size = sizeof(*guid); in qsee_uefi_set_variable()
490 memcpy(((void *)req_data) + req_data->guid_offset, guid, req_data->guid_size); in qsee_uefi_set_variable()
518 efi_guid_t *guid) in qsee_uefi_get_next_variable() argument
533 if (!name_size || !name || !guid) in qsee_uefi_get_next_variable()
541 __field_offs(*guid, &guid_offs) in qsee_uefi_get_next_variable()
547 __field(*guid) in qsee_uefi_get_next_variable()
565 req_data->guid_size = sizeof(*guid); in qsee_uefi_get_next_variable()
570 memcpy(((void *)req_data) + req_data->guid_offset, guid, req_data->guid_size); in qsee_uefi_get_next_variable()
618 if (rsp_data->guid_size != sizeof(*guid)) in qsee_uefi_get_next_variable()
621 memcpy(guid, ((void *)rsp_data) + rsp_data->guid_offset, rsp_data->guid_size); in qsee_uefi_get_next_variable()