Home | History | Annotate | Download | only in lib

Lines Matching refs:Data

78     UINT32       Data;
81 Status = uefi_call_wrapper(GlobalIoFncs->Io.Read, 5, GlobalIoFncs, Width, (UINT64)Port, 1, &Data);
83 return Data;
91 IN UINTN Data
96 Status = uefi_call_wrapper(GlobalIoFncs->Io.Write, 5, GlobalIoFncs, Width, (UINT64)Port, 1, &Data);
98 return (UINT32)Data;
108 UINT32 Data;
111 Status = uefi_call_wrapper(GlobalIoFncs->Pci.Read, 5, GlobalIoFncs, Width, (UINT64)Address, 1, &Data);
113 return Data;
121 IN UINTN Data
126 Status = uefi_call_wrapper(GlobalIoFncs->Pci.Write, 5, GlobalIoFncs, Width, (UINT64)Address, 1, &Data);
128 return (UINT32)Data;