Lines Matching +full:efi +full:- +full:disk
1 // SPDX-License-Identifier: GPL-2.0+
8 * The efi_selftest_miniapp_exit.efi application is loaded into memory
13 /* Include containing the miniapp.efi application */
16 /* Block size of compressed disk image */
25 /* One 8 byte block of the compressed disk image */
43 * Decompress the disk image.
45 * @image decompressed disk image
56 ret = boottime->allocate_pool(EFI_LOADER_DATA, img.length, in decompress()
62 boottime->set_mem(buf, img.length, 0); in decompress()
70 len = img.length - addr; in decompress()
71 boottime->copy_mem(buf + addr, img.lines[i].line, len); in decompress()
88 boottime = systable->boottime; in setup()
106 r = boottime->free_pool(image); in teardown()
127 ret = boottime->load_image(false, image_handle, NULL, image, in execute()
133 ret = boottime->start_image(handle, NULL, NULL); in execute()