Lines Matching refs:copy
1887 int rc, err, hlen, dlen, copy; in tipc_recvmsg() local
1934 copy = min_t(int, dlen - offset, buflen); in tipc_recvmsg()
1935 rc = skb_copy_datagram_msg(skb, hlen + offset, m, copy); in tipc_recvmsg()
1938 if (unlikely(offset + copy < dlen)) { in tipc_recvmsg()
1941 skb_cb->bytes_read = offset + copy; in tipc_recvmsg()
1952 copy = 0; in tipc_recvmsg()
1965 copy = 0; in tipc_recvmsg()
1995 return rc ? rc : copy; in tipc_recvmsg()
2019 int offset, required, copy, copied = 0; in tipc_recvstream() local
2066 copy = min_t(int, dlen - offset, buflen - copied); in tipc_recvstream()
2067 rc = skb_copy_datagram_msg(skb, hlen + offset, m, copy); in tipc_recvstream()
2070 copied += copy; in tipc_recvstream()
2071 offset += copy; in tipc_recvstream()