HomeSort by relevance Sort by last modified time
    Searched defs:EmuIoThunk (Results 1 - 8 of 8) sorted by null

  /device/linaro/bootloader/edk2/EmulatorPkg/Library/DxeEmuLib/
DxeEmuLib.c 72 EMU_IO_THUNK_PROTOCOL *EmuIoThunk;
74 for (Status = EFI_SUCCESS, EmuIoThunk = NULL; !EFI_ERROR (Status); ) {
75 Status = gEmuThunk->GetNextProtocol (FALSE, &EmuIoThunk);
80 if (EmuIoThunk->Instance == Instance) {
81 if (CompareGuid (EmuIoThunk->Protocol, Protocol)) {
82 return EmuIoThunk;
  /device/linaro/bootloader/edk2/EmulatorPkg/EmuBusDriverDxe/
EmuBusDriverDxe.h 22 #include <Protocol/EmuIoThunk.h>
57 EMU_IO_THUNK_PROTOCOL EmuIoThunk;
71 CR(a, EMU_IO_DEVICE, EmuIoThunk, EMU_IO_DEVICE_SIGNATURE)
EmuBusDriverDxe.c 146 EMU_IO_THUNK_PROTOCOL *EmuIoThunk;
219 for (Status = EFI_SUCCESS, EmuIoThunk = NULL; !EFI_ERROR (Status); ) {
220 Status = EmuThunk->GetNextProtocol (TRUE, &EmuIoThunk);
242 if (CompareGuid (&Node->VendorDevicePath.Guid, EmuIoThunk->Protocol) && Node->Instance == EmuIoThunk->Instance) {
261 CopyMem (&EmuDevice->EmuIoThunk, EmuIoThunk, sizeof (EMU_IO_THUNK_PROTOCOL));
265 StrnCpy (ComponentName, EmuIoThunk->ConfigString, sizeof (ComponentName)/sizeof (CHAR16));
269 EmuIoThunk->Protocol,
270 EmuIoThunk->Instance
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/EmuGopDxe/
GopDriver.c 109 EMU_IO_THUNK_PROTOCOL *EmuIoThunk;
117 (VOID **)&EmuIoThunk,
126 Status = EmuGopSupported (EmuIoThunk);
185 EMU_IO_THUNK_PROTOCOL *EmuIoThunk;
195 (VOID **)&EmuIoThunk,
221 Private->EmuIoThunk = EmuIoThunk;
222 Private->WindowName = EmuIoThunk->ConfigString;
229 EmuIoThunk->ConfigString
235 EmuIoThunk->ConfigString,
    [all...]
Gop.h 24 #include <Protocol/EmuIoThunk.h>
83 EMU_IO_THUNK_PROTOCOL *EmuIoThunk;
135 IN EMU_IO_THUNK_PROTOCOL *EmuIoThunk
  /device/linaro/bootloader/edk2/EmulatorPkg/EmuBlockIoDxe/
EmuBlockIo.c 423 EMU_IO_THUNK_PROTOCOL *EmuIoThunk;
431 (VOID **)&EmuIoThunk,
444 if (CompareGuid (EmuIoThunk->Protocol, &gEmuBlockIoProtocolGuid)) {
505 EMU_IO_THUNK_PROTOCOL *EmuIoThunk;
515 (void *)&EmuIoThunk,
524 if (!CompareGuid (EmuIoThunk->Protocol, &gEmuBlockIoProtocolGuid)) {
529 Status = EmuIoThunk->Open (EmuIoThunk);
540 Private->IoThunk = EmuIoThunk;
541 Private->Io = EmuIoThunk->Interface;
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/EmuSimpleFileSystemDxe/
EmuSimpleFileSystem.c 612 EMU_IO_THUNK_PROTOCOL *EmuIoThunk;
620 (VOID **)&EmuIoThunk,
633 if (CompareGuid (EmuIoThunk->Protocol, &gEfiSimpleFileSystemProtocolGuid)) {
696 EMU_IO_THUNK_PROTOCOL *EmuIoThunk;
707 (VOID **)&EmuIoThunk,
719 if (!CompareGuid (EmuIoThunk->Protocol, &gEfiSimpleFileSystemProtocolGuid)) {
730 Status = EmuIoThunk->Open (EmuIoThunk);
736 Private->IoThunk = EmuIoThunk;
737 Private->Io = EmuIoThunk->Interface;
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/EmuSnpDxe/
EmuSnpDxe.c 585 EMU_IO_THUNK_PROTOCOL *EmuIoThunk;
607 (VOID **)&EmuIoThunk,
650 if (CompareGuid (EmuIoThunk->Protocol, &gEmuSnpProtocolGuid)) {
693 EMU_IO_THUNK_PROTOCOL *EmuIoThunk;
718 (VOID **)&EmuIoThunk,
727 if (!CompareGuid (EmuIoThunk->Protocol, &gEmuSnpProtocolGuid)) {
731 Status = EmuIoThunk->Open (EmuIoThunk);
749 Private->IoThunk = EmuIoThunk;
750 Private->Io = EmuIoThunk->Interface;
    [all...]

Completed in 257 milliseconds