HomeSort by relevance Sort by last modified time
    Searched refs:MSG_TRUNC (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/iptables/include/libipulog/
libipulog.h 18 #ifndef MSG_TRUNC
19 #define MSG_TRUNC 0x20
  /external/iptables/include/libipq/
libipq.h 44 #ifndef MSG_TRUNC
45 #define MSG_TRUNC 0x20
  /external/strace/xlat/
msg_flags.h 27 #if defined(MSG_TRUNC) || (defined(HAVE_DECL_MSG_TRUNC) && HAVE_DECL_MSG_TRUNC)
28 XLAT(MSG_TRUNC),
  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
recv_msg_trunc.cc 1 // Test that ASan doesn't raise false alarm when MSG_TRUNC is present.
31 assert(recv(fd_1, buf, 1, MSG_TRUNC) != -1);
  /external/python/cpython2/Lib/plat-os2emx/
SOCKET.py 87 MSG_TRUNC = 0x10
  /external/dnsmasq/src/
netlink.c 91 while ((rc = recvmsg(daemon->netlinkfd, &msg, MSG_PEEK | MSG_TRUNC)) == -1 && errno == EINTR);
94 if (rc != -1 && (msg.msg_flags & MSG_TRUNC))
116 if (msg.msg_flags & MSG_TRUNC)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
socket.h 219 MSG_TRUNC = 0x20,
220 #define MSG_TRUNC MSG_TRUNC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
socket.h 219 MSG_TRUNC = 0x20,
220 #define MSG_TRUNC MSG_TRUNC
  /system/connectivity/wifilogd/tests/
os_unittest.cpp 196 EXPECT_CALL(*raw_os_, Recv(kFakeFd, buffer.data(), buffer.size(), MSG_TRUNC))
209 EXPECT_CALL(*raw_os_, Recv(kFakeFd, buffer.data(), buffer.size(), MSG_TRUNC))
222 EXPECT_CALL(*raw_os_, Recv(kFakeFd, buffer.data(), buffer.size(), MSG_TRUNC))
233 EXPECT_CALL(*raw_os_, Recv(kFakeFd, buffer.data(), buffer.size(), MSG_TRUNC))
245 EXPECT_CALL(*raw_os_, Recv(kFakeFd, buffer.data(), buffer.size(), MSG_TRUNC))
  /system/connectivity/wifilogd/
os.cpp 100 const ssize_t res = raw_os_->Recv(fd, buf, buflen, MSG_TRUNC);
105 // Due to the MSG_TRUNC flag, |res| may reasonably be larger than
  /system/core/debuggerd/
util.cpp 76 if ((msg.msg_flags & MSG_TRUNC) != 0) {
  /system/core/debuggerd/client/
debuggerd_client.cpp 144 TEMP_FAILURE_RETRY(recv(set_timeout(sockfd.get()), &response, sizeof(response), MSG_TRUNC));
165 rc = TEMP_FAILURE_RETRY(recv(set_timeout(sockfd.get()), &response, sizeof(response), MSG_TRUNC));
  /bionic/tests/headers/posix/
sys_socket_h.c 120 MACRO(MSG_TRUNC);
  /external/iproute2/lib/
libnetlink.c 497 if (msg.msg_flags & MSG_TRUNC) {
588 if (msg.msg_flags & MSG_TRUNC) {
639 if (msg.msg_flags & MSG_TRUNC) {
753 if (msg.msg_flags & MSG_TRUNC) {
770 if (msg.msg_flags & MSG_TRUNC) {
  /external/iputils/ninfod/
ni_ifaddrs.c 154 || (msg.msg_flags & MSG_TRUNC))
180 if (read_size < 0 || (msg_flags & MSG_TRUNC)) {
  /external/google-breakpad/src/client/linux/crash_generation/
crash_generation_server.cc 223 msg.msg_flags & ~MSG_TRUNC)
  /external/libchrome/base/posix/
unix_domain_socket_linux.cc 159 if (msg.msg_flags & MSG_TRUNC || msg.msg_flags & MSG_CTRUNC) {
  /external/libnfnetlink/src/
libnfnetlink.c 697 if (msg.msg_flags & MSG_TRUNC) {
698 nfnl_error("MSG_TRUNC");
726 if (msg.msg_flags & MSG_TRUNC) {
727 nfnl_error("MSG_TRUNC");
815 if (msg.msg_flags & MSG_TRUNC) {
858 if (msg.msg_flags & MSG_TRUNC) {
    [all...]
  /external/libusb/libusb/os/
linux_netlink.c 317 if (len < 32 || (msg.msg_flags & MSG_TRUNC)) {
  /external/selinux/libselinux/src/
avc_internal.c 148 if (nlh->nlmsg_flags & MSG_TRUNC || nlh->nlmsg_len > (unsigned)rc) {
  /external/libnl/lib/
nl.c 645 flags |= MSG_PEEK | MSG_TRUNC;
694 if (iov.iov_len < n || (msg.msg_flags & MSG_TRUNC)) {
  /external/linux-kselftest/tools/testing/selftests/net/
msg_zerocopy.c 509 /* MSG_TRUNC flushes up to len bytes */
510 ret = recv(fd, NULL, 1 << 21, MSG_TRUNC | MSG_DONTWAIT);
528 /* MSG_TRUNC will return full datagram length */
529 ret = recv(fd, buf, sizeof(buf), MSG_DONTWAIT | MSG_TRUNC);
  /bionic/libc/include/sys/
socket.h 240 #define MSG_TRUNC 0x20
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
socket.h 458 #define MSG_TRUNC 0x0010 /* data discarded before delivery */
  /external/iptables/libipq/
libipq.c 186 if (nlh->nlmsg_flags & MSG_TRUNC || nlh->nlmsg_len > status) {

Completed in 426 milliseconds

1 2 3 4 5