Searched refs:send (Results 101 - 125 of 303) sorted by relevance

1234567891011>>

/linux-master/tools/testing/selftests/net/
H A Dtcp_mmap.c597 wr = send(fd, buffer + offset,
607 send(fd, digest, (size_t)SHA256_DIGEST_LENGTH, 0);
H A Dreuseport_bpf_cpu.c136 error(1, errno, "failed to create send socket");
139 error(1, errno, "failed to bind send socket");
142 error(1, errno, "failed to connect send socket");
144 if (send(fd, "a", 1, 0) < 0)
145 error(1, errno, "failed to send message");
179 fprintf(stderr, "send cpu %d, receive socket %d\n", cpu_id, i);
H A Dreuseport_dualstack.c88 error(1, errno, "failed to create send socket");
91 error(1, errno, "failed to bind send socket");
94 error(1, errno, "failed to connect send socket");
96 if (send(fd, "a", 1, 0) < 0)
97 error(1, errno, "failed to send message");
H A Dreuseport_addr_any.c149 error(1, errno, "failed to create send socket");
157 error(1, errno, "failed to bind send socket");
160 error(1, errno, "failed to connect send socket");
162 if (send(fd, "a", 1, 0) < 0)
163 error(1, errno, "failed to send message");
H A Dreuseport_bpf_numa.c146 error(1, errno, "failed to create send socket");
149 error(1, errno, "failed to bind send socket");
152 error(1, errno, "failed to connect send socket");
154 if (send(fd, "a", 1, 0) < 0)
155 error(1, errno, "failed to send message");
189 fprintf(stderr, "send node %d, receive socket %d\n", node_id, i);
H A Dtun.c96 ret = send(rtnl, &req, req.nh.nlmsg_len, 0);
98 fprintf(stderr, "can't send: %s\n", strerror(errno));
/linux-master/drivers/infiniband/hw/cxgb4/
H A Dqp.c501 wqe->send.sendop_pkd = cpu_to_be32(
504 wqe->send.sendop_pkd = cpu_to_be32(
506 wqe->send.stag_inv = 0;
510 wqe->send.sendop_pkd = cpu_to_be32(
513 wqe->send.sendop_pkd = cpu_to_be32(
515 wqe->send.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey);
521 wqe->send.r3 = 0;
522 wqe->send.r4 = 0;
527 ret = build_immd(sq, wqe->send.u.immd_src, wr,
531 size = sizeof(wqe->send)
[all...]
/linux-master/include/net/
H A Dtcp_ao.h258 __be32 sisn, __be32 disn, bool send);
275 __be32 disn, bool send);
/linux-master/drivers/rpmsg/
H A Drpmsg_core.c137 * rpmsg_send() - send a message across to the remote processor
158 if (!ept->ops->send)
161 return ept->ops->send(ept, data, len);
166 * rpmsg_sendto() - send a message across to the remote processor, specify dst
195 * rpmsg_send_offchannel() - send a message using explicit src/dst addresses
227 * rpmsg_trysend() - send a message across to the remote processor
255 * rpmsg_trysendto() - send a message across to the remote processor, specify dst
283 * rpmsg_poll() - poll the endpoint's send buffers
288 * Return: mask representing the current state of the endpoint's send buffers
303 * rpmsg_trysend_offchannel() - send
[all...]
/linux-master/arch/um/drivers/
H A Dnet_user.c140 CATCH_EINTR(n = send(fd, buf, len, 0));
/linux-master/tools/usb/usbip/src/
H A Dusbip_network.c106 nbytes = send(sockfd, buff, bufflen, 0);
/linux-master/drivers/infiniband/hw/hfi1/
H A Dipoib_main.c202 rn->send = hfi1_ipoib_send;
/linux-master/net/openvswitch/
H A Dvport-internal_dev.c220 .send = internal_dev_recv,
H A Dvport-netdev.c198 .send = dev_queue_xmit,
/linux-master/drivers/bluetooth/
H A Dbtqcomsmd.c178 hdev->send = btqcomsmd_send;
/linux-master/drivers/nfc/nfcmrvl/
H A Dmain.c52 nfc_info(priv->dev, "send entry, len %d\n", skb->len);
87 .send = nfcmrvl_nci_send,
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dxfrm_info.c236 ret = send(sock, nh, nh->nlmsg_len, 0);
237 if (!ASSERT_EQ(ret, nh->nlmsg_len, "netlink send length"))
/linux-master/include/scsi/
H A Dlibfcoe.h99 * @flogi_req_send: send of FLOGI requested
108 * @send: LLD-supplied function to handle sending FIP Ethernet frames
151 void (*send)(struct fcoe_ctlr *, struct sk_buff *); member in struct:fcoe_ctlr
/linux-master/tools/testing/selftests/connector/
H A Dproc_filter.c74 if (send(nl_sock, hdr, hdr->nlmsg_len, 0) == -1) {
76 perror("send failed");
/linux-master/tools/bpf/bpftool/
H A Dnet.c238 if (send(sock, &req, req.nlh.nlmsg_len, 0) < 0)
277 if (send(sock, &req, req.nlh.nlmsg_len, 0) < 0)
317 if (send(sock, &req, req.nlh.nlmsg_len, 0) < 0)
354 if (send(sock, &req, req.nlh.nlmsg_len, 0) < 0)
/linux-master/drivers/infiniband/sw/siw/
H A Diwarp.h279 struct iwarp_send send; member in union:iwarp_hdr
/linux-master/drivers/usb/usbip/
H A Dusbip_common.h309 void usbip_header_correct_endian(struct usbip_header *pdu, int send);
/linux-master/drivers/nfc/
H A Dvirtual_ncidev.c79 .send = virtual_nci_send
/linux-master/drivers/net/ethernet/chelsio/cxgb3/
H A Dadapter.h62 int (*send)(struct port_info *pi, struct sk_buff **skb); member in struct:iscsi_config
/linux-master/tools/testing/selftests/net/tcp_ao/lib/
H A Drepair.c150 ret = send(sk, buf + off, chunk, 0);
156 test_error("send()");

Completed in 256 milliseconds

1234567891011>>