Searched defs:NumberOfBytes (Results 1 - 11 of 11) sorted by relevance

/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/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
/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 DInternalIsaBus.h150 UINTN NumberOfBytes; member in struct:__anon10289
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/IsaIoDxe/
H A DIsaDriver.h141 UINTN NumberOfBytes; member in struct:__anon10312
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...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/PciBusDxe/
H A DPciIo.c944 @param NumberOfBytes On input the number of bytes to map. On output the number of bytes
950 @retval EFI_SUCCESS The range was mapped for the returned NumberOfBytes.
963 IN OUT UINTN *NumberOfBytes,
977 if (HostAddress == NULL || NumberOfBytes == NULL || DeviceAddress == NULL || Mapping == NULL) {
989 NumberOfBytes,
959 PciIoMap( IN EFI_PCI_IO_PROTOCOL *This, IN EFI_PCI_IO_PROTOCOL_OPERATION Operation, IN VOID *HostAddress, IN OUT UINTN *NumberOfBytes, OUT EFI_PHYSICAL_ADDRESS *DeviceAddress, OUT VOID **Mapping ) argument
/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/PcAtChipsetPkg/PciHostBridgeDxe/
H A DPciHostBridge.h386 UINTN NumberOfBytes; member in struct:__anon12660
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...]
/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...]

Completed in 61 milliseconds