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

1 2

  /system/bt/btif/include/
btif_sock_util.h 32 int sock_send_fd(int sock_fd, const uint8_t* buffer, int len, int send_fd);
  /external/strace/tests/
msg_name.c 40 send_recv(const int send_fd, const int recv_fd,
43 if (send(send_fd, "A", 1, 0) != 1)
49 test_msg_name(const int send_fd, const int recv_fd)
66 int rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
77 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
85 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
96 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
104 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
113 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
130 rc = send_recv(send_fd, -1, msg + 1, 0)
    [all...]
mmsg_name.c 83 test_mmsg_name(const int send_fd, const int recv_fd)
115 rc = send_mmsg(send_fd, send_mh, IOV_MAX1, MSG_DONTWAIT);
118 printf("sendmmsg(%d, [", send_fd);
158 rc = send_mmsg(send_fd, send_mh, IOV_MAX1, MSG_DONTWAIT);
162 printf("sendmmsg(%d, [", send_fd);
btrfs.c     [all...]
  /external/strace/tests-m32/
msg_name.c 40 send_recv(const int send_fd, const int recv_fd,
43 if (send(send_fd, "A", 1, 0) != 1)
49 test_msg_name(const int send_fd, const int recv_fd)
66 int rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
77 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
85 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
96 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
104 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
113 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
130 rc = send_recv(send_fd, -1, msg + 1, 0)
    [all...]
mmsg_name.c 83 test_mmsg_name(const int send_fd, const int recv_fd)
115 rc = send_mmsg(send_fd, send_mh, IOV_MAX1, MSG_DONTWAIT);
118 printf("sendmmsg(%d, [", send_fd);
158 rc = send_mmsg(send_fd, send_mh, IOV_MAX1, MSG_DONTWAIT);
162 printf("sendmmsg(%d, [", send_fd);
btrfs.c     [all...]
  /external/strace/tests-mx32/
msg_name.c 40 send_recv(const int send_fd, const int recv_fd,
43 if (send(send_fd, "A", 1, 0) != 1)
49 test_msg_name(const int send_fd, const int recv_fd)
66 int rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
77 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
85 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
96 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
104 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
113 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
130 rc = send_recv(send_fd, -1, msg + 1, 0)
    [all...]
mmsg_name.c 83 test_mmsg_name(const int send_fd, const int recv_fd)
115 rc = send_mmsg(send_fd, send_mh, IOV_MAX1, MSG_DONTWAIT);
118 printf("sendmmsg(%d, [", send_fd);
158 rc = send_mmsg(send_fd, send_mh, IOV_MAX1, MSG_DONTWAIT);
162 printf("sendmmsg(%d, [", send_fd);
btrfs.c     [all...]
  /system/bt/btif/src/
btif_sock_util.cc 94 int sock_send_fd(int sock_fd, const uint8_t* buf, int len, int send_fd) {
101 asrt(send_fd != -1);
102 if (sock_fd == -1 || send_fd == -1) return -1;
110 cmsg->cmsg_len = CMSG_LEN(sizeof send_fd);
111 memcpy(CMSG_DATA(cmsg), &send_fd, sizeof send_fd); local
128 BTIF_TRACE_ERROR("fd:%d, send_fd:%d, sendmsg ret:%d, errno:%d, %s",
129 sock_fd, send_fd, (int)ret, errno, strerror(errno));
140 BTIF_TRACE_DEBUG("close fd:%d after sent", send_fd);
145 close(send_fd);
    [all...]
btif_sock_l2cap.cc 358 int status, int send_fd, uint16_t rx_mtu,
367 if (send_fd != -1) {
368 if (sock_send_fd(fd, (const uint8_t*)&cs, sizeof(cs), send_fd) ==
373 << ", send_fd:" << send_fd; local
    [all...]
btif_sock_rfc.cc 452 int status, int send_fd) {
460 if (send_fd == INVALID_FD)
463 return sock_send_fd(fd, (const uint8_t*)&cs, sizeof(cs), send_fd) ==
  /external/libpcap/
dlpisubs.h 16 int send_fd; member in struct:pcap_dlpi
pcap-dlpi.c 259 if (pd->send_fd < 0) {
264 ret = dlrawdatareq(pd->send_fd, buf, size);
328 if (pd->send_fd >= 0) {
329 close(pd->send_fd);
330 pd->send_fd = -1;
518 * If the open fails, we just leave -1 in "pd->send_fd" and reject
524 pd->send_fd = open("/dev/dlpi", O_RDWR);
547 if (pd->send_fd >= 0) {
548 retv = dl_doattach(pd->send_fd, ppa, p->errbuf);
611 if (pd->send_fd >= 0)
    [all...]
  /system/core/debuggerd/
util.h 31 ssize_t send_fd(int sockfd, const void* _Nonnull data, size_t len, android::base::unique_fd fd);
util.cpp 33 ssize_t send_fd(int sockfd, const void* data, size_t len, unique_fd fd) { function
  /system/connectivity/wificond/tests/
looper_backed_event_loop_unittest.cpp 36 android::base::unique_fd send_fd; member in class:__anon2717::Pipe
44 send_fd = android::base::unique_fd(fds[1]);
48 ssize_t n_written = ::write(send_fd, "*", 1);
129 pipe.send_fd,
137 EXPECT_TRUE(event_loop_->StopWatchFileDescriptor(pipe.send_fd));
  /external/perfetto/src/ipc/
unix_socket.h 157 int send_fd = -1,
unix_socket.cc 313 int send_fd,
326 if (send_fd > -1) {
337 memcpy(CMSG_DATA(cmsg), &send_fd, sizeof(int)); local
  /system/core/debuggerd/client/
debuggerd_client.cpp 136 if (send_fd(set_timeout(sockfd), &req, sizeof(req), std::move(pipe_write)) != sizeof(req)) {
  /bionic/libc/kernel/uapi/linux/
btrfs.h 402 __s64 send_fd; member in struct:btrfs_ioctl_send_args
  /external/kernel-headers/original/uapi/linux/
btrfs.h 719 __s64 send_fd; /* in */ member in struct:btrfs_ioctl_send_args
  /system/core/debuggerd/tombstoned/
tombstoned.cpp 222 ssize_t rc = send_fd(crash->crash_socket_fd, &response, sizeof(response), std::move(output_fd));
  /external/strace/
btrfs.c 1197 tprints("{send_fd=");
1198 printfd(tcp, args.send_fd);
    [all...]

Completed in 320 milliseconds

1 2