Lines Matching defs:copy
293 * copybreak and current so that any future copy operations
294 * start at new copy location.
295 * However trimed data that has not yet been used in a copy op
351 /* When zerocopy is mixed with sk_msg_*copy* operations we
373 u32 copy, buf_size;
388 copy = (buf_size > bytes) ? bytes : buf_size;
390 msg->sg.copybreak += copy;
392 ret = copy_from_iter_nocache(to, copy, from);
394 ret = copy_from_iter(to, copy, from);
395 if (ret != copy) {
399 bytes -= copy;