Lines Matching refs:outlen
400 size_t outlen = 0;
418 outlen = cipherbuffer_len - HMDFS_IV_SIZE - HMDFS_TAG_SIZE;
419 outdata = kzalloc(outlen, GFP_KERNEL);
431 outdata, outlen);
439 outlen);
457 size_t outlen;
462 outlen = recv_len - sizeof(struct hmdfs_head_cmd);
463 if (outlen == 0)
472 outdata = kmalloc(outlen, GFP_KERNEL);
476 ret = tcp_read_buffer_from_socket(tcp->sock, outdata, outlen);
481 tcp->connect->stat.recv_bytes += outlen;
485 outlen);
651 size_t outlen = 0;
668 outlen = msg->len + HMDFS_IV_SIZE + HMDFS_TAG_SIZE;
669 outdata = kzalloc(outlen, GFP_KERNEL);
675 outdata, outlen);
681 iov[1].iov_len = outlen;
686 msg->head_len + outlen);
691 } else if (send_len != msg->head_len + outlen) {
693 msg->head_len + outlen);