Lines Matching refs:dsz
157 static int __tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dsz);
158 static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dsz);
1387 * @dsz: amount of user data to be sent
1397 struct msghdr *m, size_t dsz)
1403 ret = __tipc_sendmsg(sock, m, dsz);
1537 * @dsz: total length of data to be transmitted
1544 static int tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dsz)
1550 ret = __tipc_sendstream(sock, m, dsz);
1645 * @dsz: length of data to be transmitted
1651 static int tipc_send_packet(struct socket *sock, struct msghdr *m, size_t dsz)
1653 if (dsz > TIPC_MAX_USER_MSG_SIZE)
1656 return tipc_sendstream(sock, m, dsz);