Lines Matching defs:sent
912 * 0: The request has been sent
916 * other: Some other error occurred, the request was not sent
930 unsigned int sent;
946 transport->xmit.offset, rm, &sent);
950 if (likely(sent > 0) || status == 0) {
951 transport->xmit.offset += sent;
983 * 0: The request has been sent
987 * other: Some other error occurred, the request was not sent
999 unsigned int sent;
1016 status = xprt_sock_sendmsg(transport->sock, &msg, xdr, 0, 0, &sent);
1028 if (sent > 0 || status == 0) {
1029 req->rq_xmit_bytes_sent += sent;
1030 if (sent >= req->rq_slen)
1066 * 0: The request has been sent
1070 * other: Some other error occurred, the request was not sent
1086 unsigned int sent;
1117 transport->xmit.offset, rm, &sent);
1122 /* If we've sent the entire packet, immediately
1123 * reset the count of bytes sent. */
1124 transport->xmit.offset += sent;
1134 WARN_ON_ONCE(sent == 0 && status == 0);
1136 if (sent > 0)
2942 unsigned int sent = 0;
2949 err = xprt_sock_sendmsg(transport->sock, &msg, xdr, 0, marker, &sent);
2951 if (err < 0 || sent != (xdr->len + sizeof(marker)))
2953 return sent;
2958 * @req: rpc_rqst containing Call message to be sent
2964 * %0 if the message was sent successfully
2965 * %ENOTCONN if the message was not sent