Searched refs:getifaddrs (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/third_party/webrtc/base/
H A Difaddrs-android.h18 // 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);
H A Difaddrs-android.cc135 int getifaddrs(struct ifaddrs** result) { function in namespace:rtc
H A Dnetwork.cc331 int error = getifaddrs(&interfaces);
333 LOG_ERR(LERROR) << "getifaddrs failed to gather interface data: " << error;
/external/dhcpcd/
H A Difaddrs.h30 extern int getifaddrs(struct ifaddrs **ifap);
H A Difaddrs.c96 int getifaddrs(struct ifaddrs **ifap) function
H A Dnet.c356 if (getifaddrs(&ifaddrs) == -1)
541 if (getifaddrs(&ifaddrs) == -1)
561 /* TODO: Fix getifaddrs() */
/external/compiler-rt/test/msan/
H A Difaddrs.cc25 int res = getifaddrs(&ifas);
28 printf("getifaddrs() is not implemented\n");
/external/libpcap/
H A Dfad-getad.c172 * of "getifaddrs()" now, or in the future, will return
175 if (getifaddrs(&ifap) != 0) {
177 "getifaddrs: %s", pcap_strerror(errno));
/external/chromium_org/chrome/browser/extensions/api/music_manager_private/
H A Ddevice_id_linux.cc153 int rv = getifaddrs(&ifaddrs);
155 PLOG(ERROR) << "getifaddrs failed " << rv;
/external/chromium_org/net/base/
H A Dnet_util_posix.cc154 // getifaddrs() may require IO operations.
167 if (getifaddrs(&interfaces) < 0) {
168 PLOG(ERROR) << "getifaddrs";
H A Dnet_util.cc752 int rv = getifaddrs(&interface_addr);
754 DVLOG(1) << "getifaddrs() failed with errno = " << errno;
/external/chromium_org/net/dns/
H A Daddress_sorter_posix.cc346 int rv = getifaddrs(&addrs);
348 LOG(WARNING) << "getifaddrs failed " << rv;
/external/ipsec-tools/src/racoon/
H A Dgrabmyaddr.c214 static int getifaddrs(struct ifaddrs **ifa0) function
343 if (getifaddrs(&ifa0)) {
345 "getifaddrs failed: %s\n", strerror(errno));
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_bsd_addr.c439 rc = getifaddrs(&g_interfaces);
H A Dsctp_os_userspace.h398 #define getifaddrs(interfaces) (int)Win_getifaddrs(interfaces) macro
488 /* for getifaddrs */
759 /* global struct ifaddrs used in sctp_init_ifns_for_vrf getifaddrs call
761 * getifaddrs allocates memory that needs to be freed with a freeifaddrs
/external/iputils/
H A Darping.c601 rc = getifaddrs(&ifa0);
603 perror("getifaddrs");
H A Dping.c399 ret = getifaddrs(&ifa0);
H A Dping6.c1010 if (getifaddrs(&ifa0)) {
1011 perror("getifaddrs");
/external/chromium_org/third_party/usrsctp/usrsctplib/
H A Duser_recv_thread.c102 rc = getifaddrs(&g_interfaces);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc3993 // As long as getifaddrs()/freeifaddrs() use calloc()/free(), we don't need to
3996 INTERCEPTOR(int, getifaddrs, __sanitizer_ifaddrs **ifap) {
3998 COMMON_INTERCEPTOR_ENTER(ctx, getifaddrs, ifap);
4002 int res = REAL(getifaddrs)(ifap);
4026 COMMON_INTERCEPT_FUNCTION(getifaddrs);
/external/chromium_org/third_party/webrtc/test/channel_transport/
H A Dudp_transport_impl.cc2459 getifaddrs(&ptrIfAddrsStart);

Completed in 1704 milliseconds