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

1 2 3

  /external/chromium_org/third_party/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 314 int error = getifaddrs(&interfaces);
316 LOG_ERR(LERROR) << "getifaddrs failed to gather interface data: " << error;
  /external/chromium_org/third_party/libjingle/source/talk/base/
ifaddrs-android.h 33 // Implementation of getifaddrs for Android.
36 // See 'man getifaddrs' on Linux or OS X (nb: it is not a POSIX function).
47 int getifaddrs(struct ifaddrs** result);
ifaddrs-android.cc 148 int getifaddrs(struct ifaddrs** result) { function
network.cc 331 int error = getifaddrs(&interfaces);
333 LOG_ERR(LERROR) << "getifaddrs failed to gather interface data: " << error;
  /external/dhcpcd/
ifaddrs.h 30 extern int getifaddrs(struct ifaddrs **ifap);
ifaddrs.c 96 int getifaddrs(struct ifaddrs **ifap) function
net.c 356 if (getifaddrs(&ifaddrs) == -1)
541 if (getifaddrs(&ifaddrs) == -1)
561 /* TODO: Fix getifaddrs() */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/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.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. */
  /external/compiler-rt/test/msan/
ifaddrs.cc 25 int res = getifaddrs(&ifas);
28 printf("getifaddrs() is not implemented\n");
  /external/chromium_org/net/base/
net_util_posix.cc 149 // getifaddrs() may require IO operations.
160 if (getifaddrs(&interfaces) < 0) {
161 PLOG(ERROR) << "getifaddrs";
  /external/chromium-libpac/src/
proxy_resolver_js_bindings.cc 26 // getifaddrs().
  /external/chromium_org/chrome/browser/extensions/api/music_manager_private/
device_id_linux.cc 153 int rv = getifaddrs(&ifaddrs);
155 PLOG(ERROR) << "getifaddrs failed " << rv;
  /external/libpcap/
fad-getad.c 172 * of "getifaddrs()" now, or in the future, will return
175 if (getifaddrs(&ifap) != 0) {
177 "getifaddrs: %s", pcap_strerror(errno));
configure.in 584 AC_CHECK_FUNC(getifaddrs,[
586 # We have "getifaddrs()"; make sure we have <ifaddrs.h>
591 # We have the header, so we use "getifaddrs()" to
601 # out something to do on systems with "getifaddrs()"
605 AC_MSG_ERROR([Your system has getifaddrs() but doesn't have a usable <ifaddrs.h>.])
609 # Well, we don't have "getifaddrs()", so we have to use
    [all...]
fad-gifc.c 92 * We assume that a UNIX that doesn't have "getifaddrs()" and doesn't have
136 * way on Linux, for example, but if that better way is "getifaddrs()",
fad-glifc.c 79 * but don't have "getifaddrs()". (Solaris 8 and later; we use
pcap-int.h 377 * "standard" mechanisms (SIOCGIFCONF, "getifaddrs()", etc.).
  /external/chromium_org/base/ios/
device_util.mm 97 if (getifaddrs(&addresses) == 0) {
  /external/chromium_org/net/dns/
address_sorter_posix.cc 346 int rv = getifaddrs(&addrs);
348 LOG(WARNING) << "getifaddrs failed " << rv;
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_os_userspace.h 221 #define getifaddrs(interfaces) (int)Win_getifaddrs(interfaces) macro
484 /* for getifaddrs */
755 /* global struct ifaddrs used in sctp_init_ifns_for_vrf getifaddrs call
757 * getifaddrs allocates memory that needs to be freed with a freeifaddrs
    [all...]
  /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));
  /external/iputils/
Makefile 32 # Do not use getifaddrs [no|yes|static]

Completed in 397 milliseconds

1 2 3