Lines Matching refs:handle
55 void **handle, u64 *file_sz) in __file_size32() argument
72 *handle = h; in __file_size32()
108 void **handle, u64 *file_sz) in __file_size64() argument
125 *handle = h; in __file_size64()
160 efi_char16_t *filename_16, void **handle, u64 *file_sz) in efi_file_size() argument
163 return __file_size64(__fh, filename_16, handle, file_sz); in efi_file_size()
165 return __file_size32(__fh, filename_16, handle, file_sz); in efi_file_size()
169 efi_file_read(void *handle, unsigned long *size, void *addr) in efi_file_read() argument
174 efi_file_handle_64_t *fh = handle; in efi_file_read()
177 return efi_early->call(func, handle, size, addr); in efi_file_read()
179 efi_file_handle_32_t *fh = handle; in efi_file_read()
182 return efi_early->call(func, handle, size, addr); in efi_file_read()
186 efi_status_t efi_file_close(void *handle) in efi_file_close() argument
189 efi_file_handle_64_t *fh = handle; in efi_file_close()
191 return efi_early->call((unsigned long)fh->close, handle); in efi_file_close()
193 efi_file_handle_32_t *fh = handle; in efi_file_close()
195 return efi_early->call((unsigned long)fh->close, handle); in efi_file_close()
206 void *handle = (void *)(unsigned long)image->device_handle; in __open_volume32() local
209 status = efi_call_early(handle_protocol, handle, in __open_volume32()
232 void *handle = (void *)(unsigned long)image->device_handle; in __open_volume64() local
235 status = efi_call_early(handle_protocol, handle, in __open_volume64()
877 u32 handle = handles[i]; in setup_uga32() local
879 status = efi_call_early(handle_protocol, handle, in setup_uga32()
884 efi_call_early(handle_protocol, handle, &pciio_proto, &pciio); in setup_uga32()
922 u64 handle = handles[i]; in setup_uga64() local
924 status = efi_call_early(handle_protocol, handle, in setup_uga64()
929 efi_call_early(handle_protocol, handle, &pciio_proto, &pciio); in setup_uga64()
1050 void *options, *handle; in make_boot_params() local
1063 handle = (void *)(unsigned long)efi_early->image_handle; in make_boot_params()
1074 status = efi_call_early(handle_protocol, handle, in make_boot_params()
1297 void *handle, bool is64) in exit_boot() argument
1352 status = efi_call_early(exit_boot_services, handle, key); in exit_boot()
1395 void *handle; in efi_main() local
1402 handle = (void *)(unsigned long)efi_early->image_handle; in efi_main()
1454 status = exit_boot(boot_params, handle, is64); in efi_main()