Lines Matching refs:Entry
92 EFI_MEMORY_DESCRIPTOR *Entry;
116 Entry = (EFI_MEMORY_DESCRIPTOR *) (PiSmmCommunicationRegionTable + 1);
120 if (Entry->Type == EfiConventionalMemory) {
121 Size = EFI_PAGES_TO_SIZE ((UINTN) Entry->NumberOfPages);
126 CommBuffer = (EFI_SMM_COMMUNICATE_HEADER *) (UINTN) Entry->PhysicalStart;
130 Entry = (EFI_MEMORY_DESCRIPTOR *) ((UINT8 *) Entry + PiSmmCommunicationRegionTable->DescriptorSize);
198 The user Entry Point for Application. The user code starts with this function
199 as the real entry point for the image goes into a library that calls this
205 @retval EFI_SUCCESS The entry point is executed successfully.
206 @retval other Some error occurs when executing this entry point.
218 VARIABLE_INFO_ENTRY *Entry;
220 Status = EfiGetSystemConfigurationTable (&gEfiVariableGuid, (VOID **)&Entry);
221 if (EFI_ERROR (Status) || (Entry == NULL)) {
222 Status = EfiGetSystemConfigurationTable (&gEfiAuthenticatedVariableGuid, (VOID **)&Entry);
225 if (EFI_ERROR (Status) || (Entry == NULL)) {
232 if (!EFI_ERROR (Status) && (Entry != NULL)) {
234 VariableInfo = Entry;
252 VariableInfo = Entry;