HomeSort by relevance Sort by last modified time
    Searched full:getifaddrs (Results 1 - 25 of 192) sorted by null

1 2 3 4 5 6 7 8

  /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
  /external/dhcpcd-6.8.2/
ifaddrs.h 30 extern int getifaddrs(struct ifaddrs **ifap);
ifaddrs.c 99 int getifaddrs(struct ifaddrs **ifap) function
  /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. */
  /external/compiler-rt/test/msan/
ifaddrs.cc 29 int res = getifaddrs(&ifas);
32 printf("getifaddrs() is not implemented\n");
  /bionic/tests/
ifaddrs_test.cpp 44 ASSERT_EQ(0, getifaddrs(&addrs));
76 // Check that getifaddrs sees the same list of interfaces as /sys/class/net.
81 ASSERT_EQ(0, getifaddrs(&addrs));
144 ASSERT_EQ(0, getifaddrs(&addrs));
227 ASSERT_EQ(0, getifaddrs(&addrs));
257 ASSERT_EQ(0, getifaddrs(&addrs));
282 ASSERT_EQ(0, getifaddrs(&addrs)) << strerror(errno);
304 EXPECT_EQ(-1, getifaddrs(&addrs));
net_if_test.cpp 60 ASSERT_EQ(0, getifaddrs(&ifa));
  /libcore/luni/src/main/java/android/system/
StructIfaddrs.java 22 * Information returned by {@link Os#getifaddrs}. Loosely corresponds to C's
Os.java 194 * See <a href="http://man7.org/linux/man-pages/man3/getifaddrs.3.html">getifaddrs(3)</a>.
196 /** @hide */ public static StructIfaddrs[] getifaddrs() throws ErrnoException { return Libcore.os.getifaddrs(); } method in class:Os
  /bionic/libc/include/
ifaddrs.h 55 int getifaddrs(struct ifaddrs** __list_ptr) __INTRODUCED_IN(24);
  /external/libpcap/
CMakeLists.txt 289 check_function_exists( getifaddrs HAVE_GETIFADDRS )
292 # We have "getifaddrs()"; make sure we have <ifaddrs.h>
298 # We have the header, so we use "getifaddrs()" to
308 # out something to do on systems with "getifaddrs()"
312 message(FATAL_ERROR "Your system has getifaddrs() but doesn't have a usable <ifaddrs.h>." )
316 # Well, we don't have "getifaddrs()", so we have to use
fad-getad.c 168 * of "getifaddrs()" now, or in the future, will return
171 if (getifaddrs(&ifap) != 0) {
173 "getifaddrs: %s", pcap_strerror(errno));
fad-gifc.c 87 * We assume that a UNIX that doesn't have "getifaddrs()" and doesn't have
131 * way on Linux, for example, but if that better way is "getifaddrs()",
  /external/chromium-libpac/src/
proxy_resolver_js_bindings.cc 27 // getifaddrs().
  /external/libcups/
Android.bp 34 "cups/getifaddrs.c",
  /external/curl/lib/
if2ip.c 105 if(getifaddrs(&head) >= 0) {
133 if(getifaddrs(&head) >= 0) {
  /system/netd/server/
InterfaceControllerTest.cpp 185 EXPECT_EQ(0, getifaddrs(&ifaddr));
198 EXPECT_EQ(0, getifaddrs(&ifaddr));
  /device/google/cuttlefish_common/host/commands/launch/
ril_region_handler.cc 110 getifaddrs(&ifa_list);
  /external/libcups/cups/
http-private.h 382 * Some OS's don't have getifaddrs() and freeifaddrs()...
417 # define getifaddrs _cups_getifaddrs macro
  /external/toybox/toys/pending/
ping.c 123 else if (getifaddrs(&ifa2)) perror_exit("getifaddrs");
  /libcore/luni/src/main/java/libcore/io/
ForwardingOs.java 113 public StructIfaddrs[] getifaddrs() throws ErrnoException { return os.getifaddrs(); } method in class:ForwardingOs
  /bionic/docs/
status.md 92 * `getifaddrs`/`freeifaddrs`/`if_freenameindex`/`if_nameindex`
  /libcore/luni/src/test/java/libcore/libcore/io/
BlockGuardOsTest.java 138 "getifaddrs()",
  /external/ipsec-tools/src/racoon/
grabmyaddr.c 218 static int getifaddrs(struct ifaddrs **ifa0) function
347 if (getifaddrs(&ifa0)) {
349 "getifaddrs failed: %s\n", strerror(errno));

Completed in 1150 milliseconds

1 2 3 4 5 6 7 8