Lines Matching defs:copy
1191 // Repeatedly ask the stream's owner for memory, and copy the read data
1452 // If the copy fails for any reason here, we just ignore it.
1710 // Queue a given block of data for sending. This always creates a copy,
1959 // to copy memory.
2002 size_t copy = buf.len > len ? len : buf.len;
2003 memcpy(buf.base, data, copy);
2004 buf.len = copy;
2005 session->OnStreamRead(copy, buf);
2007 data += copy;
2008 len -= copy;