Searched refs:toCopy (Results 1 - 3 of 3) sorted by relevance

/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduComposer.java1063 private LengthRecordNode toCopy = null; field in class:PduComposer.BufferStack
1071 // You can't create a new buff when toCopy != null
1074 if (toCopy != null) {
1102 toCopy = stack;
1108 toCopy.currentMessage = currentMessage;
1109 toCopy.currentPosition = currentPosition;
1116 arraycopy(toCopy.currentMessage.toByteArray(), 0,
1117 toCopy.currentPosition);
1119 toCopy = null;
/frameworks/base/services/java/com/android/server/content/
H A DSyncStorageEngine.java224 * @param toCopy AuthorityInfo to be copied.
226 AuthorityInfo(AuthorityInfo toCopy) { argument
227 account = toCopy.account;
228 userId = toCopy.userId;
229 authority = toCopy.authority;
230 service = toCopy.service;
231 ident = toCopy.ident;
232 enabled = toCopy.enabled;
233 syncable = toCopy.syncable;
234 backoffTime = toCopy
[all...]
/frameworks/base/services/java/com/android/server/
H A DBackupManagerService.java3643 long toCopy = info.size;
3689 while (toCopy > 0) {
3690 int toRead = (toCopy > buffer.length)
3691 ? buffer.length : (int)toCopy;
3695 toCopy -= nRead;

Completed in 502 milliseconds