Searched refs:net (Results 1 - 15 of 15) sorted by path

/bionic/libc/
H A DAndroid.mk366 upstream-openbsd/lib/libc/net/htonl.c \
367 upstream-openbsd/lib/libc/net/htons.c \
368 upstream-openbsd/lib/libc/net/inet_addr.c \
369 upstream-openbsd/lib/libc/net/inet_lnaof.c \
370 upstream-openbsd/lib/libc/net/inet_makeaddr.c \
371 upstream-openbsd/lib/libc/net/inet_netof.c \
372 upstream-openbsd/lib/libc/net/inet_network.c \
373 upstream-openbsd/lib/libc/net/inet_ntoa.c \
374 upstream-openbsd/lib/libc/net/inet_ntop.c \
375 upstream-openbsd/lib/libc/net/inet_pto
[all...]
/bionic/libc/bionic/
H A Dether_aton.c32 #include <net/if_ether.h>
H A Dether_ntoa.c31 #include <net/if_ether.h>
H A Dif_indextoname.c32 #include <net/if.h>
H A Dif_nametoindex.c32 #include <net/if.h>
/bionic/libc/dns/include/
H A Dresolv_private.h61 #include <net/if.h>
138 #define MAXRESOLVSORT 10 /* number of net to sort on */
/bionic/libc/dns/net/
H A Dgetaddrinfo.c87 #include <net/if.h>
H A Dgetnameinfo.c56 #include <net/if.h>
57 #include <net/if_ieee1394.h>
58 #include <net/if_types.h>
/bionic/libc/dns/resolv/
H A Dres_cache.c39 #include <net/if.h>
H A Dres_init.c186 char *net; local
395 net = cp;
401 if (inet_aton(net, &a)) {
405 net = cp;
412 if (inet_aton(net, &a)) {
/bionic/libc/include/net/
H A Dethernet.h31 #include <net/if_ether.h>
H A Dif_ether.h79 #include <net/ethertypes.h>
/bionic/libc/include/netinet/
H A Dether.h28 #include <net/if_ether.h>
H A Dif_ether.h34 #include <net/ethertypes.h>
/bionic/libc/upstream-openbsd/lib/libc/net/
H A Dinet_makeaddr.c40 inet_makeaddr(in_addr_t net, in_addr_t host) argument
44 if (net < 128)
45 addr = (net << IN_CLASSA_NSHIFT) | (host & IN_CLASSA_HOST);
46 else if (net < 65536)
47 addr = (net << IN_CLASSB_NSHIFT) | (host & IN_CLASSB_HOST);
48 else if (net < 16777216L)
49 addr = (net << IN_CLASSC_NSHIFT) | (host & IN_CLASSC_HOST);
51 addr = net | host;

Completed in 243 milliseconds