Home | History | Annotate | Download | only in Protocol

Lines Matching full:coff

31   Retrieves information about a PE/COFF image.

37 If the PE/COFF image accessed through the ImageRead service in the ImageContext
38 structure is not a supported PE/COFF image type, then return RETURN_UNSUPPORTED.
45 @param ImageContext Pointer to the image context structure that describes the PE/COFF
48 @retval RETURN_SUCCESS The information on the PE/COFF image was collected.
50 @retval RETURN_UNSUPPORTED The PE/COFF image is not supported.
61 Applies relocation fixups to a PE/COFF image that was loaded with PeCoffLoaderLoadImage().
77 prior to transferring control to a PE/COFF image that is loaded using this library.
79 @param ImageContext Pointer to the image context structure that describes the PE/COFF
82 @retval RETURN_SUCCESS The PE/COFF image was relocated.
84 @retval RETURN_LOAD_ERROR The image in not a valid PE/COFF image.
98 Loads a PE/COFF image into memory.
100 Loads the PE/COFF image accessed through the ImageRead service of ImageContext into the buffer
112 prior to transferring control to a PE/COFF image that is loaded using this library.
114 @param ImageContext Pointer to the image context structure that describes the PE/COFF
117 @retval RETURN_SUCCESS The PE/COFF image was loaded into the buffer specified by
122 @retval RETURN_LOAD_ERROR The PE/COFF image is an EFI Runtime image with no relocations.
137 Reads contents of a PE/COFF image from a buffer in system memory.
140 that assumes FileHandle pointer to the beginning of a PE/COFF image.
141 This function reads contents of the PE/COFF image that starts at the system memory
143 PE/COFF image starting at byte offset FileOffset into the buffer specified by Buffer.
151 @param FileOffset Offset into the PE/COFF image to begin the read operation.
154 @param Buffer Output buffer that contains the data read from the PE/COFF image.
174 This function reapplies relocation fixups to the PE/COFF image specified by ImageBase
175 and ImageSize so the image will execute correctly when the PE/COFF image is mapped
178 after this PE/COFF image was relocated with PeCoffLoaderRelocateImage().
182 prior to transferring control to a PE/COFF image that is loaded using this library.
184 @param ImageBase Base address of a PE/COFF image that has been loaded
186 @param VirtImageBase The request virtual address that the PE/COFF image is to
188 @param ImageSize The size, in bytes, of the PE/COFF image.
189 @param RelocationData A pointer to the relocation data that was collected when the PE/COFF
205 Unloads a loaded PE/COFF image from memory and releases its taken resource.
209 For NT32 emulator, the PE/COFF image loaded by system needs to release.
210 For real platform, the PE/COFF image loaded by Core doesn't needs to be unloaded,
215 @param ImageContext Pointer to the image context structure that describes the PE/COFF
218 @retval RETURN_SUCCESS The PE/COFF image was unloaded successfully.