/kernel/linux/linux-5.10/net/sunrpc/ |
H A D | svcsock.c | 404 * peer sent the datagram, i.e. our local address. For multihomed 549 * Returns the number of bytes sent, or a negative errno. 567 unsigned int sent; in svc_udp_sendto() local 579 err = xprt_sock_sendmsg(svsk->sk_sock, &msg, xdr, 0, 0, &sent); in svc_udp_sendto() 583 err = xprt_sock_sendmsg(svsk->sk_sock, &msg, xdr, 0, 0, &sent); in svc_udp_sendto() 591 return sent; in svc_udp_sendto() 1158 * Returns the number of bytes sent, or a negative errno. 1170 unsigned int sent; in svc_tcp_sendto() local 1178 err = svc_tcp_sendmsg(svsk->sk_sock, &msg, xdr, marker, &sent); in svc_tcp_sendto() 1180 trace_svcsock_tcp_send(xprt, err < 0 ? (long)err : sent); in svc_tcp_sendto() [all...] |
H A D | xprtsock.c | 852 * 0: The request has been sent 856 * other: Some other error occured, the request was not sent 869 unsigned int sent; in xs_local_send_request() local 883 transport->xmit.offset, rm, &sent); in xs_local_send_request() 890 if (likely(sent > 0) || status == 0) { in xs_local_send_request() 891 transport->xmit.offset += sent; in xs_local_send_request() 924 * 0: The request has been sent 928 * other: Some other error occurred, the request was not sent 940 unsigned int sent; in xs_udp_send_request() local 954 status = xprt_sock_sendmsg(transport->sock, &msg, xdr, 0, 0, &sent); in xs_udp_send_request() 1024 unsigned int sent; xs_tcp_send_request() local 2563 unsigned int sent = 0; bc_sendto() local [all...] |
/kernel/linux/linux-5.10/fs/cifs/ |
H A D | transport.c | 71 /* when mid allocated can be before when sent */ in AllocMidQEntry() 197 * @sent: amount of data sent on socket is stored here 204 size_t *sent) in smb_send_kvec() 210 *sent = 0; in smb_send_kvec() 255 cifs_server_dbg(VFS, "tcp sent no data\n"); in smb_send_kvec() 261 *sent += rc; in smb_send_kvec() 321 size_t total_len = 0, sent, size; in __smb_send_rqst() local 370 rc = smb_send_kvec(server, &smb_msg, &sent); in __smb_send_rqst() 374 total_len += sent; in __smb_send_rqst() 203 smb_send_kvec(struct TCP_Server_Info *server, struct msghdr *smb_msg, size_t *sent) smb_send_kvec() argument [all...] |
/kernel/linux/linux-5.10/drivers/message/fusion/ |
H A D | mptlan.c | 159 * lan_reply - Handle all data sent from the hardware. 573 struct sk_buff *sent; in mpt_lan_send_turbo() local 578 sent = priv->SendCtl[ctx].skb; in mpt_lan_send_turbo() 581 dev->stats.tx_bytes += sent->len; in mpt_lan_send_turbo() 583 dioprintk((KERN_INFO MYNAM ": %s/%s: @%s, skb %p sent.\n", in mpt_lan_send_turbo() 585 __func__, sent)); in mpt_lan_send_turbo() 590 dev_kfree_skb_irq(sent); in mpt_lan_send_turbo() 606 struct sk_buff *sent; in mpt_lan_send_reply() local 631 printk (KERN_ERR MYNAM ": %s/%s: ERROR - Invalid SGL sent to IOC!\n", in mpt_lan_send_reply() 646 sent in mpt_lan_send_reply() [all...] |
/kernel/linux/linux-6.6/drivers/message/fusion/ |
H A D | mptlan.c | 156 * lan_reply - Handle all data sent from the hardware. 570 struct sk_buff *sent; in mpt_lan_send_turbo() local 575 sent = priv->SendCtl[ctx].skb; in mpt_lan_send_turbo() 578 dev->stats.tx_bytes += sent->len; in mpt_lan_send_turbo() 580 dioprintk((KERN_INFO MYNAM ": %s/%s: @%s, skb %p sent.\n", in mpt_lan_send_turbo() 582 __func__, sent)); in mpt_lan_send_turbo() 587 dev_kfree_skb_irq(sent); in mpt_lan_send_turbo() 603 struct sk_buff *sent; in mpt_lan_send_reply() local 628 printk (KERN_ERR MYNAM ": %s/%s: ERROR - Invalid SGL sent to IOC!\n", in mpt_lan_send_reply() 643 sent in mpt_lan_send_reply() [all...] |
/kernel/linux/linux-6.6/drivers/infiniband/sw/siw/ |
H A D | siw_qp_tx.c | 331 int i = 0, rv = 0, sent = 0; in siw_tcp_sendpages() local 350 sent += rv; in siw_tcp_sendpages() 364 return sent; in siw_tcp_sendpages() 378 int i = 0, sent = 0, rv; in siw_0copy_tx() local 383 while (sent != size) { in siw_0copy_tx() 386 sent += rv; in siw_0copy_tx() 387 if (size == sent || sge_bytes > rv) in siw_0copy_tx() 392 sge_bytes = min(sge->length, size - sent); in siw_0copy_tx() 395 sent = rv; in siw_0copy_tx() 399 return sent; in siw_0copy_tx() [all...] |
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/ |
H A D | test_sockmap.c | 437 int sent; in msg_loop_sendpage() local 440 sent = sendfile(fd, fp, NULL, iov_length); in msg_loop_sendpage() 442 if (!drop && sent < 0) { in msg_loop_sendpage() 445 return sent; in msg_loop_sendpage() 446 } else if (drop && sent >= 0) { in msg_loop_sendpage() 448 sent, errno); in msg_loop_sendpage() 453 if (sent > 0) in msg_loop_sendpage() 454 s->bytes_sent += sent; in msg_loop_sendpage() 572 int sent; in msg_loop() local 575 sent in msg_loop() [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/ |
H A D | test_sockmap.c | 437 int sent; in msg_loop_sendpage() local 440 sent = sendfile(fd, fp, NULL, iov_length); in msg_loop_sendpage() 442 if (!drop && sent < 0) { in msg_loop_sendpage() 445 return sent; in msg_loop_sendpage() 446 } else if (drop && sent >= 0) { in msg_loop_sendpage() 448 sent, errno); in msg_loop_sendpage() 453 if (sent > 0) in msg_loop_sendpage() 454 s->bytes_sent += sent; in msg_loop_sendpage() 576 int sent; in msg_loop() local 579 sent in msg_loop() [all...] |
/kernel/linux/linux-5.10/drivers/hid/ |
H A D | hid-mcp2221.c | 84 * is sent only after response to previous has been received. Mutex 202 int ret, len, idx, sent; in mcp_i2c_write() local 205 sent = 0; in mcp_i2c_write() 231 sent = sent + len; in mcp_i2c_write() 232 if (sent >= msg->len) in mcp_i2c_write() 236 if ((msg->len - sent) < 60) in mcp_i2c_write() 237 len = msg->len - sent; in mcp_i2c_write() 707 * which is actually a response to the previously sent command.
|
/kernel/linux/linux-5.10/kernel/bpf/ |
H A D | devmap.c | 350 int sent = 0, drops = 0, err = 0; in bq_xmit_all() local 362 sent = dev->netdev_ops->ndo_xdp_xmit(dev, bq->count, bq->q, flags); in bq_xmit_all() 363 if (sent < 0) { in bq_xmit_all() 364 err = sent; in bq_xmit_all() 365 sent = 0; in bq_xmit_all() 368 drops = bq->count - sent; in bq_xmit_all() 372 trace_xdp_devmap_xmit(bq->dev_rx, dev, sent, drops, err); in bq_xmit_all()
|
/kernel/linux/linux-5.10/net/bluetooth/rfcomm/ |
H A D | sock.c | 562 int sent; in rfcomm_sock_sendmsg() local 577 sent = bt_sock_wait_ready(sk, msg->msg_flags); in rfcomm_sock_sendmsg() 581 if (sent) in rfcomm_sock_sendmsg() 582 return sent; in rfcomm_sock_sendmsg() 589 sent = rfcomm_dlc_send(d, skb); in rfcomm_sock_sendmsg() 590 if (sent < 0) in rfcomm_sock_sendmsg() 593 return sent; in rfcomm_sock_sendmsg()
|
/kernel/linux/linux-5.10/net/caif/ |
H A D | caif_socket.c | 601 int sent = 0; in caif_stream_sendmsg() local 617 while (sent < len) { in caif_stream_sendmsg() 619 size = len-sent; in caif_stream_sendmsg() 660 sent += size; in caif_stream_sendmsg() 663 return sent; in caif_stream_sendmsg() 666 if (sent == 0 && !(msg->msg_flags&MSG_NOSIGNAL)) in caif_stream_sendmsg() 670 return sent ? : err; in caif_stream_sendmsg() 732 * o -EINPROGRESS: connect request sent but timed out (or non-blocking)
|
/kernel/linux/linux-6.6/net/bluetooth/rfcomm/ |
H A D | sock.c | 560 int sent; in rfcomm_sock_sendmsg() local 575 sent = bt_sock_wait_ready(sk, msg->msg_flags); in rfcomm_sock_sendmsg() 579 if (sent) in rfcomm_sock_sendmsg() 580 return sent; in rfcomm_sock_sendmsg() 587 sent = rfcomm_dlc_send(d, skb); in rfcomm_sock_sendmsg() 588 if (sent < 0) in rfcomm_sock_sendmsg() 591 return sent; in rfcomm_sock_sendmsg()
|
/kernel/linux/linux-6.6/net/caif/ |
H A D | caif_socket.c | 592 int sent = 0; in caif_stream_sendmsg() local 608 while (sent < len) { in caif_stream_sendmsg() 610 size = len-sent; in caif_stream_sendmsg() 651 sent += size; in caif_stream_sendmsg() 654 return sent; in caif_stream_sendmsg() 657 if (sent == 0 && !(msg->msg_flags&MSG_NOSIGNAL)) in caif_stream_sendmsg() 661 return sent ? : err; in caif_stream_sendmsg() 723 * o -EINPROGRESS: connect request sent but timed out (or non-blocking)
|
/kernel/linux/linux-6.6/net/bluetooth/ |
H A D | hci_core.c | 2940 /* Detect if ISO packet has been sent as ACL */ in hci_recv_frame() 3105 * Therefore, all standard HCI commands must be sent via the in __hci_cmd_send() 3128 /* Get data from the previously sent command */ 3144 /* Get data from the previously sent command */ 3149 /* Check if opcode matches last sent command */ in hci_sent_cmd_data() 3428 if (c->sent < min) { in hci_low_sent() 3429 min = c->sent; in hci_low_sent() 3456 if (c->type == type && c->sent) { in hci_link_tx_to() 3513 if (conn->sent < min) { in hci_chan_sent() 3514 min = conn->sent; in hci_chan_sent() 4002 struct hci_command_hdr *sent; hci_resend_last() local [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | generatorTransformFinalLabel.js | 20 _a.sent();
|
H A D | asyncFunctionTempVariableScoping.js | 18 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
64 case 1: return [2 /*return*/, _b.apply(void 0, [_c.sent()])];
|
H A D | correctOrderOfPromiseMethod.js | 44 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
88 _a = _b.sent(), resultA = _a[0], resultB = _a[1];
|
H A D | expressionsForbiddenInParameterInitializers.js | 21 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
67 _c = _d.sent();
|
H A D | importCallExpressionNoModuleKindSpecified.js | 59 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
102 one = _a.sent();
|
/kernel/linux/linux-5.10/samples/bpf/ |
H A D | xdp_monitor_kern.c | 229 int sent; // offset:24; size:4; signed:1; member 242 rec->processed += ctx->sent; in trace_xdp_devmap_xmit() 248 /* Record error cases, where no frame were sent */ in trace_xdp_devmap_xmit() 252 /* Catch API error of drv ndo_xdp_xmit sent more than count */ in trace_xdp_devmap_xmit()
|
/kernel/linux/linux-5.10/drivers/macintosh/ |
H A D | macio-adb.c | 183 req->sent = 0; in macio_send_request() 223 req->sent = 1; in macio_adb_interrupt() 240 if (current_req && current_req->sent) { in macio_adb_interrupt()
|
H A D | via-macii.c | 123 static bool bus_timeout; /* no data was sent by the device */ 225 req.sent = 0; in macii_queue_poll() 265 req->sent = 0; in macii_write() 454 req->sent = 1; in macii_interrupt() 495 /* just sent the command byte, set to EVEN */ in macii_interrupt()
|
/kernel/linux/linux-6.6/drivers/macintosh/ |
H A D | macio-adb.c | 185 req->sent = 0; in macio_send_request() 226 req->sent = 1; in macio_adb_interrupt() 243 if (current_req && current_req->sent) { in macio_adb_interrupt()
|
H A D | via-macii.c | 121 static bool bus_timeout; /* no data was sent by the device */ 223 req.sent = 0; in macii_queue_poll() 263 req->sent = 0; in macii_write() 452 req->sent = 1; in macii_interrupt() 493 /* just sent the command byte, set to EVEN */ in macii_interrupt()
|