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

1 2 3 4 5

  /device/google/cuttlefish_common/host/libs/ivserver/
hald_client.cc 54 sizeof(kHaldClientProtocolVersion), MSG_NOSIGNAL);
63 MSG_NOSIGNAL) != sizeof(region_name_len)) {
77 MSG_NOSIGNAL);
118 rval = client_socket_->SendMsgAndFDs<3>(hdr, MSG_NOSIGNAL, fds);
hald_client_test.cc 115 &proto_version, sizeof(proto_version), MSG_NOSIGNAL)));
117 test_socket_->Send(&size, sizeof(size), MSG_NOSIGNAL);
153 &proto_version, sizeof(proto_version), MSG_NOSIGNAL)));
157 &size, sizeof(size), MSG_NOSIGNAL)));
159 size, MSG_NOSIGNAL)));
170 EXPECT_GT(test_socket_->RecvMsgAndFDs<3>(hdr, MSG_NOSIGNAL, &fds), 0);
qemu_client.cc 49 int rval = client_socket_->Send(&msg, sizeof(msg), MSG_NOSIGNAL);
60 rval = client_socket_->Send(&msg, sizeof(msg), MSG_NOSIGNAL);
  /external/strace/xlat/
msg_flags.h 54 #if defined(MSG_NOSIGNAL) || (defined(HAVE_DECL_MSG_NOSIGNAL) && HAVE_DECL_MSG_NOSIGNAL)
55 XLAT(MSG_NOSIGNAL),
  /development/samples/ToyVpn/server/linux/
ToyVpnServer.cpp 203 send(tunnel, parameters, sizeof(parameters), MSG_NOSIGNAL);
223 send(tunnel, packet, length, MSG_NOSIGNAL);
270 send(tunnel, packet, 1, MSG_NOSIGNAL);
  /external/honggfuzz/examples/linux_kernel_ip/
tun.c 223 send(tcp_acc_sock, b, 1, MSG_NOSIGNAL | MSG_DONTWAIT);
229 sendto(udp_sock, b, 1, MSG_NOSIGNAL | MSG_DONTWAIT, (struct sockaddr*)&addr, slen);
234 sendto(sctp_sock, b, 1, MSG_NOSIGNAL | MSG_DONTWAIT, (struct sockaddr*)&addr, slen);
239 sendto(udp_lite_sock, b, 1, MSG_NOSIGNAL | MSG_DONTWAIT, (struct sockaddr*)&addr, slen);
  /frameworks/native/libs/vr/libpdx_uds/
ipc_helper_tests.cpp 123 EXPECT_CALL(sender_, Send(kSocketFd, IntToConstPtr(kPtr), 100, MSG_NOSIGNAL))
131 EXPECT_CALL(sender_, Send(kSocketFd, IntToConstPtr(kPtr), 100, MSG_NOSIGNAL))
134 Send(kSocketFd, IntToConstPtr(kPtr + 20), 80, MSG_NOSIGNAL))
137 Send(kSocketFd, IntToConstPtr(kPtr + 60), 40, MSG_NOSIGNAL))
145 EXPECT_CALL(sender_, Send(kSocketFd, IntToConstPtr(kPtr), 100, MSG_NOSIGNAL))
154 EXPECT_CALL(sender_, Send(kSocketFd, IntToConstPtr(kPtr), 100, MSG_NOSIGNAL))
163 EXPECT_CALL(sender_, Send(kSocketFd, IntToConstPtr(kPtr), 100, MSG_NOSIGNAL))
166 Send(kSocketFd, IntToConstPtr(kPtr + 50), 50, MSG_NOSIGNAL))
227 EXPECT_CALL(sender_, SendMessage(kSocketFd, &msg_, MSG_NOSIGNAL))
  /frameworks/native/libs/sensor/
SensorEventQueue.cpp 158 ssize_t size = ::send(mSensorChannel->getFd(), &event, sizeof(event), MSG_NOSIGNAL);
181 MSG_DONTWAIT | MSG_NOSIGNAL);
  /device/google/cuttlefish_common/host/libs/usbip/
client.cpp 108 return fd->Send(&net, sizeof(T), MSG_NOSIGNAL) == sizeof(T);
117 bool res = fd->Recv(&net, sizeof(T), MSG_NOSIGNAL) == sizeof(T);
194 fd_->Recv(&payload[got], payload.size() - got, MSG_NOSIGNAL);
266 fd_->Send(data.data(), data.size(), MSG_NOSIGNAL)) != data.size()) {
  /external/ltp/utils/sctp/func_tests/
test_1_to_1_initmsg_connect.c 111 test_recv(sk2, buffer_rcv, (strlen(message) + 1), MSG_NOSIGNAL);
test_timetolive.c 292 test_sendmsg(sk1, &outmessage, MSG_NOSIGNAL,
304 test_sendmsg(sk1, &outmessage, MSG_NOSIGNAL, strlen(ttlmsg) + 1);
317 test_sendmsg(sk1, &outmessage, MSG_NOSIGNAL, strlen(nottlmsg)+1);
332 test_sendmsg(sk1, &outmessage, MSG_NOSIGNAL, sizeof(ttlfrag));
test_1_to_1_addrs.c 167 test_sendmsg(clnt_sk, &outmessage, MSG_NOSIGNAL, msg_count);
169 test_recvmsg(acpt_sk, &inmessage, MSG_NOSIGNAL);
test_1_to_1_recvfrom.c 113 flag = MSG_NOSIGNAL;
test_1_to_1_recvmsg.c 180 flag = MSG_NOSIGNAL;
test_1_to_1_sendto.c 100 flag = MSG_NOSIGNAL;
  /hardware/qcom/gps/msm8998/android/
AGnssRil.cpp 110 remain, MSG_NOSIGNAL)) > 0) {
  /device/google/cuttlefish_common/host/vsoc/lib/
region_control.cpp 205 sizeof(protocol_version), MSG_NOSIGNAL);
220 bytes = region_server->Send(&size, sizeof(size), MSG_NOSIGNAL);
227 bytes = region_server->Send(region_name, size, MSG_NOSIGNAL);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
socket.h 237 MSG_NOSIGNAL = 0x4000, /* Do not generate SIGPIPE. */
238 #define MSG_NOSIGNAL MSG_NOSIGNAL
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
socket.h 237 MSG_NOSIGNAL = 0x4000, /* Do not generate SIGPIPE. */
238 #define MSG_NOSIGNAL MSG_NOSIGNAL
  /device/google/cuttlefish_common/host/libs/adb_connection_maintainer/
adb_connection_maintainer.cpp 56 msg.size() - total_written, MSG_NOSIGNAL);
  /system/bt/btif/src/
btif_sock_util.cc 126 OSI_NO_INTR(ret = sendmsg(sock_fd, &msg, MSG_NOSIGNAL));
  /external/ltp/testcases/network/netstress/
netstress.c 255 SAFE_SENDTO(1, cfd, msg, size, MSG_FASTOPEN | MSG_NOSIGNAL,
264 SAFE_SEND(1, cfd, msg, size, MSG_NOSIGNAL);
340 SAFE_SEND(1, cfd, client_msg, cln_len, MSG_NOSIGNAL);
530 MSG_NOSIGNAL);
534 MSG_NOSIGNAL, (struct sockaddr *)&remote_addr,
  /bionic/tests/headers/posix/
sys_socket_h.c 118 MACRO(MSG_NOSIGNAL);
  /external/ltp/testcases/kernel/syscalls/sendmsg/
sendmsg02.c 94 sendmsg(fd, &mh, MSG_NOSIGNAL);
  /external/strace/tests/
mmsg.c 94 int r = send_mmsg(1, w_mmh, n_w_mmh, MSG_DONTROUTE | MSG_NOSIGNAL);
106 ", MSG_DONTROUTE|MSG_NOSIGNAL) = %d\n"

Completed in 1237 milliseconds

1 2 3 4 5