Searched refs:NumberOfBytes (Results 1 - 25 of 32) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Library/
H A DSerialPortLib.h38 Writes NumberOfBytes data bytes from Buffer to the serial device.
40 If the return value is less than NumberOfBytes, then the write operation failed.
42 If NumberOfBytes is zero, then return 0.
45 @param NumberOfBytes Number of bytes to written to the serial device.
47 @retval 0 NumberOfBytes is 0.
49 If this value is less than NumberOfBytes, then the read operation failed.
56 IN UINTN NumberOfBytes
63 Reads NumberOfBytes data bytes from a serial device into the buffer
65 If the return value is less than NumberOfBytes, then the rest operation failed.
67 If NumberOfBytes i
[all...]
H A DHobLib.h199 @param NumberOfBytes The length of the memory described by this HOB in bytes.
208 IN UINT64 NumberOfBytes
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseSerialPortLibNull/
H A DBaseSerialPortLibNull.c42 Writes NumberOfBytes data bytes from Buffer to the serial device.
44 If the return value is less than NumberOfBytes, then the write operation failed.
46 If NumberOfBytes is zero, then return 0.
49 @param NumberOfBytes The number of bytes to written to the serial device.
51 @retval 0 NumberOfBytes is 0.
53 If this value is less than NumberOfBytes, then the read operation failed.
60 IN UINTN NumberOfBytes
70 Reads NumberOfBytes data bytes from a serial device into the buffer
72 If the return value is less than NumberOfBytes, then the rest operation failed.
74 If NumberOfBytes i
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/
H A DDebugCommunicationLibSerialPort.c82 Reads NumberOfBytes data bytes from a debug device into the buffer
84 If the return value is less than NumberOfBytes, then the rest operation failed.
85 If NumberOfBytes is zero, then return 0.
89 @param NumberOfBytes Number of bytes which will be read.
101 IN UINTN NumberOfBytes,
108 for (Index = 0; Index < NumberOfBytes; Index ++) {
123 return NumberOfBytes;
129 Writes NumberOfBytes data bytes from Buffer to the debug device.
131 If the return value is less than NumberOfBytes, then the write operation failed.
132 If NumberOfBytes i
98 DebugPortReadBuffer( IN DEBUG_PORT_HANDLE Handle, IN UINT8 *Buffer, IN UINTN NumberOfBytes, IN UINTN Timeout ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SourceLevelDebugPkg/Include/Library/
H A DDebugCommunicationLib.h83 Reads NumberOfBytes data bytes from a debug device into the buffer
85 If the return value is less than NumberOfBytes, then the rest operation failed.
86 If NumberOfBytes is zero, then return 0.
90 @param NumberOfBytes Number of bytes which will be read.
102 IN UINTN NumberOfBytes,
110 Writes NumberOfBytes data bytes from Buffer to the debug device.
112 If the return value is less than NumberOfBytes, then the write operation failed.
113 If NumberOfBytes is zero, then return 0.
117 @param NumberOfBytes Number of bytes to written to the debug device.
119 @retval 0 NumberOfBytes i
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/Library/SerialIoLib/
H A DSerialPortLib.c108 Writes NumberOfBytes data bytes from Buffer to the serial device.
110 If the return value is less than NumberOfBytes, then the write operation failed.
114 If NumberOfBytes is zero, then return 0.
117 @param NumberOfBytes Number of bytes to written to the serial device.
119 @retval 0 NumberOfBytes is 0.
121 If this value is less than NumberOfBytes, then the read operation failed.
128 IN UINTN NumberOfBytes
138 Result = NumberOfBytes;
140 while ((NumberOfBytes--) != 0) {
158 @param NumberOfBytes Numbe
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/BaseSerialPortLib16550/
H A DBaseSerialPortLib16550.c174 Writes NumberOfBytes data bytes from Buffer to the serial device.
176 If the return value is less than NumberOfBytes, then the write operation failed.
180 If NumberOfBytes is zero, then return 0.
183 @param NumberOfBytes Number of bytes to written to the serial device.
185 @retval 0 NumberOfBytes is 0.
187 If this value is less than NumberOfBytes, then the read operation failed.
194 IN UINTN NumberOfBytes
217 Result = NumberOfBytes;
218 while (NumberOfBytes != 0) {
228 for (Index = 0; Index < FifoSize && NumberOfBytes !
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/
H A DIsaIo.c373 IsaMapInfo->NumberOfBytes
713 @param NumberOfBytes On input the number of bytes to map. On output the number
719 @retval EFI_SUCCESS The range was mapped for the returned NumberOfBytes.
732 IN OUT UINTN *NumberOfBytes,
750 (NULL == NumberOfBytes) ||
782 if ((PhysicalAddress + *NumberOfBytes) > ISA_MAX_MEMORY_ADDRESS) {
797 *NumberOfBytes = 0;
809 IsaMapInfo->NumberOfBytes = *NumberOfBytes;
810 IsaMapInfo->NumberOfPages = EFI_SIZE_TO_PAGES (*NumberOfBytes);
726 IsaIoMapOnlySupportSlaveReadWrite( IN EFI_ISA_IO_PROTOCOL *This, IN EFI_ISA_IO_PROTOCOL_OPERATION Operation, IN UINT8 ChannelNumber OPTIONAL, IN UINT32 ChannelAttributes, IN VOID *HostAddress, IN OUT UINTN *NumberOfBytes, OUT EFI_PHYSICAL_ADDRESS *DeviceAddress, OUT VOID **Mapping ) argument
962 IsaIoMapFullSupport( IN EFI_ISA_IO_PROTOCOL *This, IN EFI_ISA_IO_PROTOCOL_OPERATION Operation, IN UINT8 ChannelNumber OPTIONAL, IN UINT32 ChannelAttributes, IN VOID *HostAddress, IN OUT UINTN *NumberOfBytes, OUT EFI_PHYSICAL_ADDRESS *DeviceAddress, OUT VOID **Mapping ) argument
1288 IsaIoMap( IN EFI_ISA_IO_PROTOCOL *This, IN EFI_ISA_IO_PROTOCOL_OPERATION Operation, IN UINT8 ChannelNumber OPTIONAL, IN UINT32 ChannelAttributes, IN VOID *HostAddress, IN OUT UINTN *NumberOfBytes, OUT EFI_PHYSICAL_ADDRESS *DeviceAddress, OUT VOID **Mapping ) argument
[all...]
H A DInternalIsaIo.h113 @param NumberOfBytes On input the number of bytes to map. On output the number
119 @retval EFI_SUCCESS The range was mapped for the returned NumberOfBytes.
133 IN OUT UINTN *NumberOfBytes,
H A DInternalIsaBus.h150 UINTN NumberOfBytes; member in struct:__anon10289
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/IsaIoDxe/
H A DIsaIo.c777 IsaMapInfo->NumberOfBytes
1053 @param NumberOfBytes On input the number of bytes to map. On output the number
1059 @retval EFI_SUCCESS The range was mapped for the returned NumberOfBytes.
1072 IN OUT UINTN *NumberOfBytes,
1090 (NULL == NumberOfBytes) ||
1122 if ((PhysicalAddress + *NumberOfBytes) > BASE_16MB) {
1137 *NumberOfBytes = 0;
1149 IsaMapInfo->NumberOfBytes = *NumberOfBytes;
1150 IsaMapInfo->NumberOfPages = EFI_SIZE_TO_PAGES (*NumberOfBytes);
1066 IsaIoMapOnlySupportSlaveReadWrite( IN EFI_ISA_IO_PROTOCOL *This, IN EFI_ISA_IO_PROTOCOL_OPERATION Operation, IN UINT8 ChannelNumber OPTIONAL, IN UINT32 ChannelAttributes, IN VOID *HostAddress, IN OUT UINTN *NumberOfBytes, OUT EFI_PHYSICAL_ADDRESS *DeviceAddress, OUT VOID **Mapping ) argument
1302 IsaIoMapFullSupport( IN EFI_ISA_IO_PROTOCOL *This, IN EFI_ISA_IO_PROTOCOL_OPERATION Operation, IN UINT8 ChannelNumber OPTIONAL, IN UINT32 ChannelAttributes, IN VOID *HostAddress, IN OUT UINTN *NumberOfBytes, OUT EFI_PHYSICAL_ADDRESS *DeviceAddress, OUT VOID **Mapping ) argument
1628 IsaIoMap( IN EFI_ISA_IO_PROTOCOL *This, IN EFI_ISA_IO_PROTOCOL_OPERATION Operation, IN UINT8 ChannelNumber OPTIONAL, IN UINT32 ChannelAttributes, IN VOID *HostAddress, IN OUT UINTN *NumberOfBytes, OUT EFI_PHYSICAL_ADDRESS *DeviceAddress, OUT VOID **Mapping ) argument
[all...]
H A DIsaIo.h113 @param NumberOfBytes On input the number of bytes to map. On output the number
119 @retval EFI_SUCCESS The range was mapped for the returned NumberOfBytes.
133 IN OUT UINTN *NumberOfBytes,
H A DIsaDriver.h141 UINTN NumberOfBytes; member in struct:__anon10312
/vbox/src/VBox/Devices/EFI/Firmware/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb/
H A DDebugCommunicationLibUsb.c697 Reads NumberOfBytes data bytes from a debug device into the buffer
699 If the return value is less than NumberOfBytes, then the rest operation failed.
700 If NumberOfBytes is zero, then return 0.
704 @param NumberOfBytes Number of bytes which will be read.
716 IN UINTN NumberOfBytes,
729 if (NumberOfBytes == 0 || Buffer == NULL) {
767 if (NumberOfBytes <= UsbDebugPortHandle->DataCount) {
768 Total = NumberOfBytes;
796 while ((Total < NumberOfBytes) && (Timeout != 0)) {
797 Remaining = NumberOfBytes
713 DebugPortReadBuffer( IN DEBUG_PORT_HANDLE Handle, IN UINT8 *Buffer, IN UINTN NumberOfBytes, IN UINTN Timeout ) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Video/common/xpdm/
H A DVBoxVideoPortAPI.h54 typedef void* (*PFNALLOCATEPOOL) (void* HwDeviceExtension, VBOXVP_POOL_TYPE PoolType, size_t NumberOfBytes, unsigned long Tag);
/vbox/src/VBox/Runtime/r0drv/nt/
H A Dthe-nt-kernel.h76 NTKERNELAPI PVOID NTAPI ExAllocatePool(IN POOL_TYPE PoolType, IN SIZE_T NumberOfBytes);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DDeviceIo.h137 @param NumberOfBytes On input, the number of bytes to map.
143 @retval EFI_SUCCESS The range was mapped for the returned NumberOfBytes.
156 IN OUT UINTN *NumberOfBytes,
167 @retval EFI_SUCCESS The range was mapped for the returned NumberOfBytes.
/vbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/PciHostBridgeDxe/
H A DPciRootBridgeIo.c353 @param[in, out] NumberOfBytes On input the number of bytes to map. On output the number of bytes that were mapped.
358 @retval EFI_SUCCESS The range was mapped for the returned NumberOfBytes.
361 @retval EFI_INVALID_PARAMETER NumberOfBytes is NULL.
375 IN OUT UINTN *NumberOfBytes,
1685 @param[in, out] NumberOfBytes On input the number of bytes to map. On output the number of bytes that were mapped.
1690 @retval EFI_SUCCESS The range was mapped for the returned NumberOfBytes.
1693 @retval EFI_INVALID_PARAMETER NumberOfBytes is NULL.
1707 IN OUT UINTN *NumberOfBytes,
1716 if (HostAddress == NULL || NumberOfBytes == NULL || DeviceAddress == NULL || Mapping == NULL) {
1738 if ((PhysicalAddress + *NumberOfBytes) >
1703 RootBridgeIoMap( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *This, IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_OPERATION Operation, IN VOID *HostAddress, IN OUT UINTN *NumberOfBytes, OUT EFI_PHYSICAL_ADDRESS *DeviceAddress, OUT VOID **Mapping ) argument
[all...]
H A DPciHostBridge.h386 UINTN NumberOfBytes; member in struct:__anon12660
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Include/Protocol/
H A DIsaIo.h192 requests the NumberOfBytes returned may be less than originally requested. It is
210 @param[in, out] NumberOfBytes On input the number of bytes to map. On
218 @retval EFI_SUCCESS The range was mapped for the returned NumberOfBytes.
234 IN OUT UINTN *NumberOfBytes,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Mem/
H A DPage.c684 UINT64 NumberOfBytes; local
692 NumberOfBytes = LShiftU64 (NumberOfPages, EFI_PAGE_SHIFT);
693 End = Start + NumberOfBytes - 1;
700 if (NumberOfPages == 0 || ((Start & EFI_PAGE_MASK) != 0) || (Start > (Start + NumberOfBytes))) {
883 UINT64 NumberOfBytes; local
917 NumberOfBytes = LShiftU64 (NumberOfPages, EFI_PAGE_SHIFT);
955 if (DescNumberOfBytes >= NumberOfBytes) {
959 if ((DescEnd - NumberOfBytes + 1) < MinAddress) {
975 Target -= NumberOfBytes - 1;
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeCoreHobLib/
H A DHobLib.c254 @param NumberOfBytes The length of the memory described by this HOB in bytes.
263 IN UINT64 NumberOfBytes
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeHobLib/
H A DHobLib.c287 @param NumberOfBytes The length of the memory described by this HOB in bytes.
296 IN UINT64 NumberOfBytes
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/Protocol/
H A DPciRootBridgeIo.h219 @param NumberOfBytes On input the number of bytes to map. On output the number of bytes
225 @retval EFI_SUCCESS The range was mapped for the returned NumberOfBytes.
238 IN OUT UINTN *NumberOfBytes,
/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/xpdm/
H A DVBoxMPVideoPortAPI.cpp55 vboxAllocatePoolVoid(IN PVOID HwDeviceExtension, IN VBOXVP_POOL_TYPE PoolType, IN size_t NumberOfBytes, IN ULONG Tag) argument

Completed in 90 milliseconds

12