Searched refs:host_addr (Results 1 – 6 of 6) sorted by relevance
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/ |
D | gethostbyht.c | 87 static u_char host_addr[16]; /* IPv4 or IPv6 */ variable 134 if (inet_pton(AF_INET6, p, host_addr) > 0) { in gethostent() 137 } else if (inet_pton(AF_INET, p, host_addr) > 0) { in gethostent() 139 _map_v4v6_address((char*)host_addr, (char*)host_addr); in gethostent() 149 h_addr_ptrs[0] = (char *)host_addr; in gethostent()
|
D | gethostbydns.c | 140 static u_char host_addr[16]; /* IPv4 or IPv6 */ variable 573 if (inet_pton(af, name, host_addr) <= 0) { in _gethostbydnsname() 584 h_addr_ptrs[0] = (char *)host_addr; in _gethostbydnsname() 606 if (inet_pton(af, name, host_addr) <= 0) { in _gethostbydnsname() 617 h_addr_ptrs[0] = (char *)host_addr; in _gethostbydnsname() 746 bcopy(addr, host_addr, len); in _gethostbydnsaddr() 747 h_addr_ptrs[0] = (char *)host_addr; in _gethostbydnsaddr() 750 _map_v4v6_address((char*)host_addr, (char*)host_addr); in _gethostbydnsaddr()
|
/device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/Xen/ |
D | grant_table.h | 327 UINT64 host_addr; member 352 UINT64 host_addr; member
|
/device/generic/goldfish-opengl/shared/GoldfishAddressSpace/include/ |
D | goldfish_address_space_host.impl | 170 // mmap: is done by interpreting |host_addr| as the actual host address. 171 void *GoldfishAddressSpaceBlock::mmap(uint64_t host_addr) 183 m_mmaped_ptr = (void*)(uintptr_t)(host_addr & (~(PAGE_SIZE - 1))); 184 m_host_addr = host_addr;
|
D | goldfish_address_space_fuchsia.impl | 158 void *GoldfishAddressSpaceBlock::mmap(uint64_t host_addr) 185 m_host_addr = host_addr;
|
D | goldfish_address_space_android.impl | 247 void *GoldfishAddressSpaceBlock::mmap(uint64_t host_addr) 269 m_host_addr = host_addr;
|