Lines Matching refs:copybreak
286 /* Adjust copybreak if it falls into the trimmed part of last buf */
287 if (msg->sg.curr == i && msg->sg.copybreak > msg->sg.data[i].length)
288 msg->sg.copybreak = msg->sg.data[i].length;
294 * copybreak and current so that any future copy operations
301 msg->sg.copybreak = 0;
306 msg->sg.copybreak = msg->sg.data[i].length;
352 * may have a copybreak set in this case clear and prefer
355 msg->sg.copybreak = 0;
379 if (msg->sg.copybreak >= sge->length) {
380 msg->sg.copybreak = 0;
387 buf_size = sge->length - msg->sg.copybreak;
389 to = sg_virt(sge) + msg->sg.copybreak;
390 msg->sg.copybreak += copy;
402 msg->sg.copybreak = 0;