OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ifap
(Results
1 - 10
of
10
) sorted by null
/external/dhcpcd-6.8.2/
ifaddrs.h
30
extern int getifaddrs(struct ifaddrs **
ifap
);
ifaddrs.c
99
int getifaddrs(struct ifaddrs **
ifap
)
106
if (!
ifap
)
108
*
ifap
= NULL;
130
*
ifap
= ifah;
configure
482
struct ifaddrs *
ifap
;
483
return getifaddrs(&
ifap
);
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
ifaddrs.h
63
list in *
IFAP
and return 0. On errors, return -1 and set `errno'.
65
The storage returned in *
IFAP
is allocated dynamically and can
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
ifaddrs.h
63
list in *
IFAP
and return 0. On errors, return -1 and set `errno'.
65
The storage returned in *
IFAP
is allocated dynamically and can
/external/ipsec-tools/src/racoon/
grabmyaddr.c
336
struct ifaddrs *ifa0, *
ifap
;
local
352
for (
ifap
= ifa0;
ifap
;
ifap
=
ifap
->ifa_next) {
353
if (!
ifap
->ifa_addr)
356
if (
ifap
->ifa_addr->sa_family != AF_INET
358
&&
ifap
->ifa_addr->sa_family != AF_INET6
363
if (!suitable_ifaddr(
ifap
->ifa_name,
ifap
->ifa_addr))
[
all
...]
/external/iputils/ninfod/
ni_ifaddrs.h
41
int ni_ifaddrs(struct ni_ifaddrs **
ifap
, sa_family_t family);
ni_ifaddrs.c
313
int ni_ifaddrs(struct ni_ifaddrs **
ifap
, sa_family_t family)
332
if (
ifap
)
333
*
ifap
= NULL;
363
if (
ifap
!= NULL)
364
*
ifap
= ifa;
524
if (
ifap
!= NULL)
525
*
ifap
= NULL;
/external/libpcap/
fad-getad.c
150
struct ifaddrs *
ifap
, *ifa;
local
170
if (getifaddrs(&
ifap
) != 0) {
175
for (ifa =
ifap
; ifa != NULL; ifa = ifa->ifa_next) {
266
freeifaddrs(
ifap
);
/external/compiler-rt/lib/sanitizer_common/
sanitizer_common_interceptors.inc
[
all
...]
Completed in 638 milliseconds