Lines Matching refs:copy
1744 int rc, err, hlen, dlen, copy; in tipc_recvmsg() local
1787 copy = min_t(int, dlen, buflen); in tipc_recvmsg()
1788 if (unlikely(copy != dlen)) in tipc_recvmsg()
1790 rc = skb_copy_datagram_msg(skb, hlen, m, copy); in tipc_recvmsg()
1792 copy = 0; in tipc_recvmsg()
1805 copy = 0; in tipc_recvmsg()
1832 return rc ? rc : copy; in tipc_recvmsg()
1855 int offset, required, copy, copied = 0; in tipc_recvstream() local
1902 copy = min_t(int, dlen - offset, buflen - copied); in tipc_recvstream()
1903 rc = skb_copy_datagram_msg(skb, hlen + offset, m, copy); in tipc_recvstream()
1906 copied += copy; in tipc_recvstream()
1907 offset += copy; in tipc_recvstream()