Searched refs:toCopy (Results 1 – 4 of 4) sorted by relevance
406 std::size_t toCopy = 1; in comment() local409 toCopy = length - start; in comment()412 toCopy = p - start; in comment()417 if (indentLength + lengthOfCommentOnLine + toCopy >= maxPerLine) { in comment()426 *this << s.substr(start, toCopy); in comment()430 lengthOfCommentOnLine += toCopy; in comment()
1063 private LengthRecordNode toCopy = null; field in PduComposer.BufferStack1074 if (toCopy != null) { in newbuf()1102 toCopy = stack; in pop()1108 toCopy.currentMessage = currentMessage; in pop()1109 toCopy.currentPosition = currentPosition; in pop()1116 arraycopy(toCopy.currentMessage.toByteArray(), 0, in copy()1117 toCopy.currentPosition); in copy()1119 toCopy = null; in copy()
321 AuthorityInfo(AuthorityInfo toCopy) { in AuthorityInfo() argument322 target = toCopy.target; in AuthorityInfo()323 ident = toCopy.ident; in AuthorityInfo()324 enabled = toCopy.enabled; in AuthorityInfo()325 syncable = toCopy.syncable; in AuthorityInfo()326 backoffTime = toCopy.backoffTime; in AuthorityInfo()327 backoffDelay = toCopy.backoffDelay; in AuthorityInfo()328 delayUntil = toCopy.delayUntil; in AuthorityInfo()330 for (PeriodicSync sync : toCopy.periodicSyncs) { in AuthorityInfo()
4589 long toCopy = info.size; in restoreOneFile() local4634 + toCopy + " bytes"); in restoreOneFile()4639 while (toCopy > 0) { in restoreOneFile()4640 int toRead = (toCopy > mBuffer.length) in restoreOneFile()4641 ? mBuffer.length : (int)toCopy; in restoreOneFile()4645 toCopy -= nRead; in restoreOneFile()5957 long toCopy = info.size; in restoreOneFile() local6003 while (toCopy > 0) { in restoreOneFile()6004 int toRead = (toCopy > buffer.length) in restoreOneFile()6005 ? buffer.length : (int)toCopy; in restoreOneFile()[all …]