Home
last modified time | relevance | path

Searched refs:loaded_image (Results 1 – 5 of 5) sorted by relevance

/freebsd/stand/efi/boot1/
H A Dboot1.c67 EFI_LOADED_IMAGE *loaded_image; in try_boot() local
124 (void **)&loaded_image); in try_boot()
134 loaded_image->DeviceHandle = dev->devhandle; in try_boot()
135 loaded_image->LoadOptionsSize = cmdsize; in try_boot()
136 loaded_image->LoadOptions = cmd; in try_boot()
154 loaded_image->LoadOptionsSize = 0; in try_boot()
155 loaded_image->LoadOptions = NULL; in try_boot()
/freebsd/stand/efi/loader/
H A Dmain.c1856 EFI_LOADED_IMAGE *loaded_image; in command_chain() local
1910 (void **)&loaded_image); in command_chain()
1920 loaded_image->LoadOptions = argp = malloc (len); in command_chain()
1921 loaded_image->LoadOptionsSize = len; in command_chain()
1942 loaded_image->DeviceHandle = in command_chain()
1947 loaded_image->DeviceHandle = in command_chain()
1953 loaded_image->DeviceHandle = hd->pd_handle; in command_chain()
1962 loaded_image->DeviceHandle = in command_chain()
1975 free(loaded_image->LoadOptions); in command_chain()
1976 loaded_image->LoadOptions = NULL; in command_chain()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp676 lldb_private::FileSpec *loaded_image) { in DoLoadImage() argument
677 if (loaded_image) in DoLoadImage()
678 loaded_image->Clear(); in DoLoadImage()
914 if (loaded_image && buffer_addr != 0x0) in DoLoadImage()
921 loaded_image->SetFile(name_string, llvm::sys::path::Style::posix); in DoLoadImage()
H A DPlatformPOSIX.h65 lldb_private::FileSpec *loaded_image) override;
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1836 lldb_private::FileSpec *loaded_image) { in DoLoadImage() argument