Home | History | Annotate | Download | only in NullDmaLib

Lines Matching refs:HostAddress

29   @param  HostAddress           The system memory address to map to the DMA controller.

33 access the hosts HostAddress.
37 @retval EFI_UNSUPPORTED The HostAddress cannot be mapped as a common buffer.
47 IN VOID *HostAddress,
53 *DeviceAddress = (PHYSICAL_ADDRESS)(UINTN)HostAddress;
85 @param HostAddress A pointer to store the base system memory address of the
100 OUT VOID **HostAddress
103 if (HostAddress == NULL) {
113 *HostAddress = AllocatePages (Pages);
115 *HostAddress = AllocateRuntimePages (Pages);
128 @param HostAddress The base system memory address of the allocated range.
131 @retval EFI_INVALID_PARAMETER The memory range specified by HostAddress and Pages
139 IN VOID *HostAddress
142 if (HostAddress == NULL) {
146 FreePages (HostAddress, Pages);