HomeSort by: relevance | last modified time | path
    Searched defs:cmsg_len (Results 1 - 19 of 19) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/include/internal/
ktls.h 104 int cmsg_len = sizeof(record_type); local
106 char buf[CMSG_SPACE(cmsg_len)];
114 cmsg->cmsg_len = CMSG_LEN(cmsg_len);
116 msg.msg_controllen = cmsg->cmsg_len;
145 int cmsg_len = sizeof(struct tls_get_record); local
148 char buf[CMSG_SPACE(cmsg_len)];
183 || cmsg->cmsg_len != CMSG_LEN(cmsg_len))
347 int cmsg_len = sizeof(record_type); local
    [all...]
  /src/crypto/external/bsd/openssl/dist/include/internal/
ktls.h 89 int cmsg_len = sizeof(record_type); local
91 char buf[CMSG_SPACE(cmsg_len)];
99 cmsg->cmsg_len = CMSG_LEN(cmsg_len);
101 msg.msg_controllen = cmsg->cmsg_len;
130 int cmsg_len = sizeof(struct tls_get_record); local
133 char buf[CMSG_SPACE(cmsg_len)];
168 || cmsg->cmsg_len != CMSG_LEN(cmsg_len))
302 int cmsg_len = sizeof(record_type); local
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/isc/unix/
net.c 367 cmsg_len(socklen_t len) { function
368 #ifdef CMSG_LEN
369 return (CMSG_LEN(len));
370 #else /* ifdef CMSG_LEN */
379 #endif /* ifdef CMSG_LEN */
400 cmsgp->cmsg_len = cmsg_len(len);
497 cmsgp->cmsg_len = cmsg_len(sizeof(char));
507 cmsgp->cmsg_len = cmsg_len(sizeof(dscp))
    [all...]
socket.c 1039 * Not all OSes support advanced CMSG macros: CMSG_LEN and CMSG_SPACE.
1046 cmsg_len(socklen_t len) { function
1047 #ifdef CMSG_LEN
1048 return (CMSG_LEN(len));
1049 #else /* ifdef CMSG_LEN */
1058 #endif /* ifdef CMSG_LEN */
1079 cmsgp->cmsg_len = cmsg_len(len);
1259 cmsgp->cmsg_len = cmsg_len(sizeof(struct in6_pktinfo))
    [all...]
  /src/sys/compat/linux/common/
linux_socket.h 186 size_t cmsg_len; /* NB not socklen_t */ member in struct:linux_cmsghdr
198 ((((char *)(ucmsg) + LINUX_CMSG_ALIGN((kcmsg)->cmsg_len) + \
203 LINUX_CMSG_ALIGN((kcmsg)->cmsg_len)))
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_platform_limits_freebsd.h 227 unsigned cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
sanitizer_platform_limits_openbsd.h 199 unsigned cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
sanitizer_platform_limits_solaris.h 208 unsigned cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
sanitizer_platform_limits_netbsd.h 256 unsigned cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
sanitizer_platform_limits_posix.h 449 unsigned cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
464 uptr cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_platform_limits_solaris.h 208 unsigned cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
sanitizer_platform_limits_freebsd.h 239 unsigned cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
sanitizer_platform_limits_netbsd.h 249 unsigned cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
sanitizer_platform_limits_posix.h 455 unsigned cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
460 // In POSIX, int msg_iovlen; socklen_t msg_controllen; socklen_t cmsg_len; but
472 uptr cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_platform_limits_freebsd.h 239 unsigned cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
sanitizer_platform_limits_solaris.h 208 unsigned cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
sanitizer_platform_limits_netbsd.h 249 unsigned cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
sanitizer_platform_limits_posix.h 444 unsigned cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
449 // In POSIX, int msg_iovlen; socklen_t msg_controllen; socklen_t cmsg_len; but
461 uptr cmsg_len; member in struct:__sanitizer::__sanitizer_cmsghdr
  /src/sys/sys/
socket.h 529 socklen_t cmsg_len; /* data byte count, including hdr */ member in struct:cmsghdr
552 (__CASTV(char *, cmsg) + __CMSG_ALIGN((cmsg)->cmsg_len))
576 #define CMSG_LEN(l) (__CMSG_ASIZE + (l))

Completed in 53 milliseconds