Home | History | Annotate | Download | only in SmmIoLibSmmCpuIo2

Lines Matching refs:Data

30   @return Data read from registers in the EFI CPU I/O space.

41 UINT64 Data;
43 Status = gSmst->SmmIo.Io.Read (&gSmst->SmmIo, Width, Port, 1, &Data);
46 return Data;
53 and Data respectively. Data is returned. If such operations are not supported, then ASSERT().
59 @param Data The value to write to the I/O port.
61 @return The paramter of Data.
69 IN UINT64 Data
74 Status = gSmst->SmmIo.Io.Write (&gSmst->SmmIo, Width, Port, 1, &Data);
77 return Data;
91 @return Data read from registers in the EFI system memory space.
102 UINT64 Data;
104 Status = gSmst->SmmIo.Mem.Read (&gSmst->SmmIo, Width, Address, 1, &Data);
107 return Data;
114 and Data respectively. Data is returned. If such operations are not supported, then ASSERT().
120 @param Data The value to write to the I/O port.
122 @return Data read from registers in the EFI system memory space.
130 IN UINT64 Data
135 Status = gSmst->SmmIo.Mem.Write (&gSmst->SmmIo, Width, Address, 1, &Data);
138 return Data;