Lines Matching refs:sent
852 * 0: The request has been sent
856 * other: Some other error occured, the request was not sent
869 unsigned int sent;
883 transport->xmit.offset, rm, &sent);
890 if (likely(sent > 0) || status == 0) {
891 transport->xmit.offset += sent;
924 * 0: The request has been sent
928 * other: Some other error occurred, the request was not sent
940 unsigned int sent;
954 status = xprt_sock_sendmsg(transport->sock, &msg, xdr, 0, 0, &sent);
966 if (sent > 0 || status == 0) {
967 req->rq_xmit_bytes_sent += sent;
968 if (sent >= req->rq_slen)
1004 * 0: The request has been sent
1008 * other: Some other error occurred, the request was not sent
1024 unsigned int sent;
1047 transport->xmit.offset, rm, &sent);
1052 /* If we've sent the entire packet, immediately
1053 * reset the count of bytes sent. */
1054 transport->xmit.offset += sent;
1062 WARN_ON_ONCE(sent == 0 && status == 0);
1074 if (sent == 0) {
2563 unsigned int sent = 0;
2567 err = xprt_sock_sendmsg(transport->sock, &msg, xdr, 0, marker, &sent);
2569 if (err < 0 || sent != (xdr->len + sizeof(marker)))
2571 return sent;
2576 * @req: rpc_rqst containing Call message to be sent
2582 * %0 if the message was sent successfully
2583 * %ENOTCONN if the message was not sent