Home | History | Annotate | Download | only in fio

Lines Matching refs:this_len

356 	size_t this_len, cur_len = 0;
367 this_len = size;
368 if (this_len > FIO_SERVER_MAX_FRAGMENT_PDU)
369 this_len = FIO_SERVER_MAX_FRAGMENT_PDU;
371 if (!cmd || cur_len < sizeof(*cmd) + this_len) {
375 cur_len = sizeof(*cmd) + this_len;
379 fio_init_net_cmd(cmd, opcode, buf, this_len, tag);
381 if (this_len < size)
386 ret = fio_send_data(fd, cmd, sizeof(*cmd) + this_len);
387 size -= this_len;
388 buf += this_len;
1190 unsigned int this_len, flags = 0;
1200 this_len = FIO_SERVER_MAX_FRAGMENT_PDU - stream.avail_out;
1206 out_pdu, this_len, 0, flags);