Lines Matching defs:size

74 		printf("Capsule header size: 0x%x\n", capsule->header_size);
75 printf("Capsule image size: 0x%x\n",
131 printf("Capsule header size: 0x%x\n", capsule->header_size);
132 printf("Capsule image size: 0x%x\n",
234 efi_uintn_t size;
242 size = sizeof(var_name16);
244 &size, var_name16, NULL);
267 size = 0;
268 ret = efi_get_variable_int(var_name16, &guid, NULL, &size, NULL, NULL);
270 result = malloc(size);
273 ret = efi_get_variable_int(var_name16, &guid, NULL, &size,
283 printf("Result total size: 0x%x\n", result->variable_total_size);
714 * @var_name16_size: variable name buffer size
717 * @fp_size: file_path size
801 efi_uintn_t size;
930 size = efi_serialize_load_option(&lo, (u8 **)&data);
931 if (!size) {
940 size, data, false);
1006 * @size: size of the boot option
1010 static void show_efi_boot_opt_data(u16 *varname16, void *data, size_t *size)
1016 ret = efi_deserialize_load_option(&lo, data, size);
1043 lo.optional_data, *size, true);
1056 efi_uintn_t size;
1059 size = 0;
1061 NULL, &size, NULL, NULL);
1063 data = malloc(size);
1069 NULL, &size, data, NULL);
1071 show_efi_boot_opt_data(varname16, data, &size);
1094 efi_uintn_t buf_size, size;
1108 size = buf_size;
1109 ret = efi_get_next_variable_name_int(&size, var_name16, &guid);
1113 buf_size = size;
1120 ret = efi_get_next_variable_name_int(&size, var_name16,
1147 efi_uintn_t size;
1154 size = 0;
1156 NULL, &size, NULL, NULL);
1165 bootorder = malloc(size);
1171 NULL, &size, bootorder, NULL);
1177 num = size / sizeof(u16);
1182 size = 0;
1185 &size, NULL, NULL);
1191 data = malloc(size);
1198 &size, data, NULL);
1205 ret = efi_deserialize_load_option(&lo, data, &size);
1241 efi_uintn_t size;
1258 size = sizeof(u16);
1263 size, &bootnext, false);
1290 efi_uintn_t size;
1303 size = argc * sizeof(u16);
1304 bootorder = malloc(size);
1324 size, bootorder, true);
1494 printf("Max storage size %llu\n", max_variable_storage_size);
1495 printf("Remaining storage size %llu\n", remain_variable_storage_size);
1496 printf("Max variable size %llu\n", max_variable_size);
1613 " - show size of UEFI variables store\n");