Symbol: CMSG_SPACE
src/add-ons/kernel/network/protocols/ipv4/ipv4.cpp
1988
if (msgControlLen < CMSG_SPACE(sizeof(struct in_addr)))
src/add-ons/kernel/network/protocols/ipv4/ipv4.cpp
2000
bytesWritten += CMSG_SPACE(sizeof(struct in_addr));
src/add-ons/kernel/network/protocols/ipv6/ipv6.cpp
1656
if (msgControlLen < CMSG_SPACE(sizeof(int)))
src/add-ons/kernel/network/protocols/ipv6/ipv6.cpp
1680
bytesWritten += CMSG_SPACE(sizeof(int));
src/add-ons/kernel/network/protocols/ipv6/ipv6.cpp
1681
msgControlLen -= CMSG_SPACE(sizeof(int));
src/add-ons/kernel/network/protocols/ipv6/ipv6.cpp
1687
if (msgControlLen < CMSG_SPACE(sizeof(struct in6_pktinfo)))
src/add-ons/kernel/network/protocols/ipv6/ipv6.cpp
1706
bytesWritten += CMSG_SPACE(sizeof(struct in6_pktinfo));
src/add-ons/kernel/network/protocols/ipv6/ipv6.cpp
1707
msgControlLen -= CMSG_SPACE(sizeof(struct in6_pktinfo));
src/add-ons/kernel/network/protocols/unix/unix.cpp
390
size_t neededBufferSpace = CMSG_SPACE(sizeof(int) * totalCount);
src/bin/network/ping/ping.c
234
char ctrl[CMSG_SPACE(sizeof(struct timespec))];
src/bin/network/ping/ping6.c
1910
if (bufsize < (extlen + CMSG_SPACE(0))) {
src/bin/network/ping/ping6.c
1911
extlen = bufsize - CMSG_SPACE(0);
src/bin/network/ping/ping6.c
1989
if (bufsize < (rthsize + CMSG_SPACE(0))) {
src/bin/network/ping/ping6.c
1993
segments -= (rthsize - (bufsize - CMSG_SPACE(0))) /
src/bin/network/ping/ping6.c
634
rthlen = CMSG_SPACE(inet6_rth_space(IPV6_RTHDR_TYPE_0,
src/bin/network/ping/ping6.c
915
ip6optlen += CMSG_SPACE(sizeof(struct in6_pktinfo));
src/bin/network/ping/ping6.c
918
ip6optlen += CMSG_SPACE(sizeof(int));
src/bin/network/telnet/commands.c
2871
if (*lenp < (int)CMSG_SPACE(sizeof(struct ip6_rthdr) +
src/bin/network/traceroute6/traceroute6.c
551
rcvcmsglen = CMSG_SPACE(sizeof(struct in6_pktinfo)) +
src/bin/network/traceroute6/traceroute6.c
552
CMSG_SPACE(sizeof(int));
src/tests/system/network/unix_dgram_test.cpp
565
char buf[CMSG_SPACE(sizeof(fd))];