/external/dhcpcd-6.8.2/ |
ifaddrs.h | 30 extern int getifaddrs(struct ifaddrs **ifap);
|
ifaddrs.c | 99 int getifaddrs(struct ifaddrs **ifap) function
|
if.c | 295 if (getifaddrs(&ifaddrs) == -1)
|
configure | 476 # We require the libc to support non standard functions, like getifaddrs 477 printf "Testing for getifaddrs ... " 483 return getifaddrs(&ifap); 493 echo "libc support for getifaddrs is required - aborting" >&2
|
/external/webrtc/webrtc/base/ |
ifaddrs-android.h | 18 // Implementation of getifaddrs for Android. 21 // See 'man getifaddrs' on Linux or OS X (nb: it is not a POSIX function). 34 int getifaddrs(struct ifaddrs** result);
|
ifaddrs-android.cc | 135 int getifaddrs(struct ifaddrs** result) { function in namespace:rtc
|
network.cc | 472 int error = getifaddrs(&interfaces); 474 LOG_ERR(LERROR) << "getifaddrs failed to gather interface data: " << error;
|
/bionic/libc/include/ |
ifaddrs.h | 55 int getifaddrs(struct ifaddrs**);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
ifaddrs.h | 28 /* The `getifaddrs' function generates a linked list of these structures. 67 extern int getifaddrs (struct ifaddrs **__ifap) __THROW; 69 /* Reclaim the storage allocated by a previous `getifaddrs' call. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
ifaddrs.h | 28 /* The `getifaddrs' function generates a linked list of these structures. 67 extern int getifaddrs (struct ifaddrs **__ifap) __THROW; 69 /* Reclaim the storage allocated by a previous `getifaddrs' call. */
|
/bionic/tests/ |
net_if_test.cpp | 60 ASSERT_EQ(0, getifaddrs(&ifa));
|
ifaddrs_test.cpp | 42 ASSERT_EQ(0, getifaddrs(&addrs)); 74 // Check that getifaddrs sees the same list of interfaces as /sys/class/net. 79 ASSERT_EQ(0, getifaddrs(&addrs)); 142 ASSERT_EQ(0, getifaddrs(&addrs)); 225 ASSERT_EQ(0, getifaddrs(&addrs)); 255 ASSERT_EQ(0, getifaddrs(&addrs));
|
/external/compiler-rt/test/msan/ |
ifaddrs.cc | 29 int res = getifaddrs(&ifas); 32 printf("getifaddrs() is not implemented\n");
|
/external/toybox/toys/pending/ |
ping.c | 83 if (!getifaddrs(&ifsave)) {
|
/external/curl/lib/ |
if2ip.c | 104 if(getifaddrs(&head) >= 0) { 132 if(getifaddrs(&head) >= 0) {
|
/external/libpcap/ |
fad-getad.c | 167 * of "getifaddrs()" now, or in the future, will return 170 if (getifaddrs(&ifap) != 0) { 172 "getifaddrs: %s", pcap_strerror(errno));
|
/bionic/libc/bionic/ |
ifaddrs.cpp | 236 int getifaddrs(ifaddrs** out) { function
|
/external/ipsec-tools/src/racoon/ |
grabmyaddr.c | 214 static int getifaddrs(struct ifaddrs **ifa0) function 343 if (getifaddrs(&ifa0)) { 345 "getifaddrs failed: %s\n", strerror(errno));
|
/system/netd/tests/ |
binder_test.cpp | 517 if (getifaddrs(&ifaddrsList) != 0) {
|
/external/iputils/ |
arping.c | 601 rc = getifaddrs(&ifa0); 603 perror("getifaddrs");
|
ping.c | 399 ret = getifaddrs(&ifa0); [all...] |
ping6.c | 1010 if (getifaddrs(&ifa0)) { 1011 perror("getifaddrs"); [all...] |
/libcore/ojluni/src/main/native/ |
NetworkInterface.c | 683 if (getifaddrs(&origifa) != 0) { 685 "getifaddrs() function failed");
|
/external/webrtc/webrtc/test/channel_transport/ |
udp_transport_impl.cc | [all...] |