Home
last modified time | relevance | path

Searched refs:recv (Results 1 – 10 of 10) sorted by relevance

/xnu-8019.80.24/tests/
H A Dnetagent_race_infodisc_56244905.c179 sizeof(ev) == recv(evsock, &ev, sizeof(ev), 0)) {
212 sizeof(ev) == recv(evsock, &ev, sizeof(ev), 0)) {
H A Dnetagent_kctl_header_infodisc_56190773.c48 T_ASSERT_POSIX_SUCCESS(recv(s, &m, sizeof(m), 0), NULL);
H A Dstackshot_block_owner_14362384.m64 static mach_port_t recv = MACH_PORT_NULL;
424 msg_send_helper(recv); // will block on send until message is received
601 ret = mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_RECEIVE, &recv);
602 T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "Allocating recv port");
605 ret = mach_port_insert_right(mach_task_self(), recv, recv, MACH_MSG_TYPE_MAKE_SEND);
606 T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "Getting send right to recv port");
608 … pthread_create(&tid, NULL, msg_blocking_thread, (void*)&send); // thread should block on recv soon
634 msg_recv_helper(recv); // thread should block until we receive one of its messages
H A Dinet_transfer.c492 n = recv(recv_fd, rbuf, sizeof(rbuf), 0); in send_receive()
H A Dipsec.m415 …pfkey_socket, SOL_SOCKET, SO_RCVBUF, &bufsiz, sizeof(bufsiz)), "pfkey set recv socket buf failed %…
/xnu-8019.80.24/tools/tests/perf_index/
H A Dtest_controller.py15 sentmsg = client_socket.recv(1024)
/xnu-8019.80.24/tools/lldbmacros/usertaskdebugging/
H A Dinterface.py43 r_bytes = self.connection.recv(self.pkt_size)
/xnu-8019.80.24/bsd/man/man2/
H A DMakefile165 recv.2 \
/xnu-8019.80.24/bsd/sys/
H A Dsocket.h1466 ssize_t recv(int, void *, size_t, int) __DARWIN_ALIAS_C(recv);
/xnu-8019.80.24/bsd/nfs/
H A Dnfs_socket.c378 int error = 0, recv = 1; in nfs_connect_upcall() local
396 while (!error && recv) { in nfs_connect_upcall()
404 error = nfs_rpc_record_read(so, &nso->nso_rrs, MSG_DONTWAIT, &recv, &m); in nfs_connect_upcall()
405 NFS_SOCK_DBG("nfs_rpc_record_read returned %d recv = %d\n", error, recv); in nfs_connect_upcall()
409 recv = m ? 1 : 0; in nfs_connect_upcall()
524 if ((error != EWOULDBLOCK) && (error || !recv)) { in nfs_connect_upcall()
2788 int error = 0, recv = 1; in nfs4_cb_rcv() local
2800 while (!error && recv) { in nfs4_cb_rcv()
2801 error = nfs_rpc_record_read(so, &ncbsp->ncbs_rrs, MSG_DONTWAIT, &recv, &m); in nfs4_cb_rcv()
2808 if ((error != EWOULDBLOCK) && (error || !recv)) { in nfs4_cb_rcv()
[all …]