Home
last modified time | relevance | path

Searched refs:net (Results 1 – 6 of 6) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/net/
Dinet_makeaddr.c39 inet_makeaddr(in_addr_t net, in_addr_t host) in inet_makeaddr() argument
43 if (net < 128) in inet_makeaddr()
44 addr = (net << IN_CLASSA_NSHIFT) | (host & IN_CLASSA_HOST); in inet_makeaddr()
45 else if (net < 65536) in inet_makeaddr()
46 addr = (net << IN_CLASSB_NSHIFT) | (host & IN_CLASSB_HOST); in inet_makeaddr()
47 else if (net < 16777216L) in inet_makeaddr()
48 addr = (net << IN_CLASSC_NSHIFT) | (host & IN_CLASSC_HOST); in inet_makeaddr()
50 addr = net | host; in inet_makeaddr()
/bionic/libc/dns/resolv/
Dres_init.c185 char *net; in __res_vinit() local
396 net = cp; in __res_vinit()
402 if (inet_aton(net, &a)) { in __res_vinit()
406 net = cp; in __res_vinit()
413 if (inet_aton(net, &a)) { in __res_vinit()
/bionic/libc/
DAndroid.bp476 "upstream-openbsd/lib/libc/net/base64.c",
477 "upstream-openbsd/lib/libc/net/htonl.c",
478 "upstream-openbsd/lib/libc/net/htons.c",
479 "upstream-openbsd/lib/libc/net/inet_lnaof.c",
480 "upstream-openbsd/lib/libc/net/inet_makeaddr.c",
481 "upstream-openbsd/lib/libc/net/inet_netof.c",
482 "upstream-openbsd/lib/libc/net/inet_ntoa.c",
483 "upstream-openbsd/lib/libc/net/inet_ntop.c",
484 "upstream-openbsd/lib/libc/net/inet_pton.c",
485 "upstream-openbsd/lib/libc/net/ntohl.c",
[all …]
DSYSCALLS.TXT102 # See linux/fs/read_write.c and https://lwn.net/Articles/311630/.
DNOTICE4589 Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net>
4621 Copyright (c) 2008, 2017 Otto Moerbeek <otto@drijf.net>
/bionic/docs/
Dstatus.md41 [This is why we can't have safe cancellation points](https://lwn.net/Articles/683118/)