Searched refs:__netdClientDispatch (Results 1 – 5 of 5) sorted by relevance
/bionic/libc/bionic/ |
D | NetdClient.cpp | 55 netdClientInitFunction(handle, "netdClientInitAccept4", &__netdClientDispatch.accept4); in netdClientInitImpl() 56 netdClientInitFunction(handle, "netdClientInitConnect", &__netdClientDispatch.connect); in netdClientInitImpl() 57 netdClientInitFunction(handle, "netdClientInitSendmmsg", &__netdClientDispatch.sendmmsg); in netdClientInitImpl() 58 netdClientInitFunction(handle, "netdClientInitSendmsg", &__netdClientDispatch.sendmsg); in netdClientInitImpl() 59 netdClientInitFunction(handle, "netdClientInitSendto", &__netdClientDispatch.sendto); in netdClientInitImpl() 60 netdClientInitFunction(handle, "netdClientInitSocket", &__netdClientDispatch.socket); in netdClientInitImpl() 63 &__netdClientDispatch.netIdForResolv); in netdClientInitImpl() 65 &__netdClientDispatch.dnsOpenProxy); in netdClientInitImpl()
|
D | NetdClientDispatch.cpp | 46 __LIBC_HIDDEN__ NetdClientDispatch __netdClientDispatch __attribute__((aligned(32))) = { variable 58 return FDTRACK_CREATE(__netdClientDispatch.accept4(fd, addr, addr_length, flags)); in accept4() 62 return __netdClientDispatch.connect(fd, addr, addr_length); in connect() 66 return __netdClientDispatch.sendmmsg(fd, msgs, msg_count, flags); in sendmmsg() 70 return __netdClientDispatch.sendmsg(fd, msg, flags); in sendmsg() 75 return __netdClientDispatch.sendto(fd, buf, n, flags, dst_addr, dst_addr_length); in sendto() 79 return FDTRACK_CREATE(__netdClientDispatch.socket(domain, type, protocol)); in socket()
|
/bionic/libc/private/ |
D | NetdClientDispatch.h | 35 extern __LIBC_HIDDEN__ struct NetdClientDispatch __netdClientDispatch;
|
/bionic/libc/dns/net/ |
D | gethnamaddr.c | 794 FILE* proxy = fdopen(__netdClientDispatch.dnsOpenProxy(), "r+"); in gethostbyname_internal() 800 unsigned netid = __netdClientDispatch.netIdForResolv(netcontext->app_netid); in gethostbyname_internal() 897 FILE* proxy = fdopen(__netdClientDispatch.dnsOpenProxy(), "r+"); in android_gethostbyaddrfornetcontext_proxy_internal() 909 unsigned netid = __netdClientDispatch.netIdForResolv(netcontext->app_netid); in android_gethostbyaddrfornetcontext_proxy_internal()
|
D | getaddrinfo.c | 425 FILE* proxy = fdopen(__netdClientDispatch.dnsOpenProxy(), "r+"); in android_getaddrinfo_proxy() 429 netid = __netdClientDispatch.netIdForResolv(netid); in android_getaddrinfo_proxy()
|