Home
last modified time | relevance | path

Searched refs:toCopy (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/services/core/java/com/android/server/timezonedetector/
DConfigurationInternal.java382 public Builder(ConfigurationInternal toCopy) { in Builder() argument
383 this.mUserId = toCopy.mUserId; in Builder()
384 this.mUserConfigAllowed = toCopy.mUserConfigAllowed; in Builder()
385 this.mTelephonyDetectionSupported = toCopy.mTelephonyDetectionSupported; in Builder()
386 this.mTelephonyFallbackSupported = toCopy.mTelephonyFallbackSupported; in Builder()
387 this.mGeoDetectionSupported = toCopy.mGeoDetectionSupported; in Builder()
388 this.mGeoDetectionRunInBackgroundEnabled = toCopy.mGeoDetectionRunInBackgroundEnabled; in Builder()
389 this.mEnhancedMetricsCollectionEnabled = toCopy.mEnhancedMetricsCollectionEnabled; in Builder()
390 this.mAutoDetectionEnabledSetting = toCopy.mAutoDetectionEnabledSetting; in Builder()
391 this.mLocationEnabledSetting = toCopy.mLocationEnabledSetting; in Builder()
[all …]
/frameworks/base/services/core/java/com/android/server/timedetector/
DConfigurationInternal.java309 Builder(ConfigurationInternal toCopy) { in Builder() argument
310 this.mUserId = toCopy.mUserId; in Builder()
311 this.mUserConfigAllowed = toCopy.mUserConfigAllowed; in Builder()
312 this.mAutoDetectionSupported = toCopy.mAutoDetectionSupported; in Builder()
313 this.mSystemClockUpdateThresholdMillis = toCopy.mSystemClockUpdateThresholdMillis; in Builder()
314 this.mAutoSuggestionLowerBound = toCopy.mAutoSuggestionLowerBound; in Builder()
315 this.mManualSuggestionLowerBound = toCopy.mManualSuggestionLowerBound; in Builder()
316 this.mSuggestionUpperBound = toCopy.mSuggestionUpperBound; in Builder()
317 this.mOriginPriorities = toCopy.mOriginPriorities; in Builder()
318 this.mAutoDetectionEnabledSetting = toCopy.mAutoDetectionEnabledSetting; in Builder()
/frameworks/base/core/java/android/app/time/
DTimeConfiguration.java173 public Builder(@NonNull TimeConfiguration toCopy) { in Builder() argument
174 mergeProperties(toCopy); in Builder()
184 public Builder mergeProperties(@NonNull TimeConfiguration toCopy) { in mergeProperties() argument
185 mBundle.putAll(toCopy.mBundle); in mergeProperties()
DTimeZoneConfiguration.java207 public Builder(@NonNull TimeZoneConfiguration toCopy) { in Builder() argument
208 mergeProperties(toCopy); in Builder()
/frameworks/compile/slang/
Dslang_rs_reflect_utils.cpp408 std::size_t toCopy = 1; in comment() local
411 toCopy = length - start; in comment()
414 toCopy = p - start; in comment()
419 if (indentLength + lengthOfCommentOnLine + toCopy >= maxPerLine) { in comment()
428 *this << s.substr(start, toCopy); in comment()
432 lengthOfCommentOnLine += toCopy; in comment()
/frameworks/base/core/java/android/service/timezone/
DTimeZoneProviderStatus.java323 public Builder(TimeZoneProviderStatus toCopy) { in Builder() argument
324 mLocationDetectionDependencyStatus = toCopy.mLocationDetectionDependencyStatus; in Builder()
325 mConnectivityDependencyStatus = toCopy.mConnectivityDependencyStatus; in Builder()
326 mTimeZoneResolutionOperationStatus = toCopy.mTimeZoneResolutionOperationStatus; in Builder()
/frameworks/base/telephony/common/com/google/android/mms/pdu/
DPduComposer.java1103 private LengthRecordNode toCopy = null; field in PduComposer.BufferStack
1115 if (toCopy != null) { in newbuf()
1144 toCopy = stack; in pop()
1150 toCopy.currentMessage = currentMessage; in pop()
1151 toCopy.currentPosition = currentPosition; in pop()
1159 arraycopy(toCopy.currentMessage.toByteArray(), 0, in copy()
1160 toCopy.currentPosition); in copy()
1162 toCopy = null; in copy()
/frameworks/base/services/backup/java/com/android/server/backup/restore/
DFullRestoreEngine.java453 long toCopy = info.size; in restoreOneFile() local
527 Slog.v(TAG, " copying to restore agent: " + toCopy + " bytes"); in restoreOneFile()
532 while (toCopy > 0) { in restoreOneFile()
533 int toRead = (toCopy > buffer.length) in restoreOneFile()
534 ? buffer.length : (int) toCopy; in restoreOneFile()
539 toCopy -= nRead; in restoreOneFile()
DPerformUnifiedRestoreTask.java1175 int toCopy = result; in run() local
1176 while (toCopy > 0) { in run()
1177 int n = transportIn.read(buffer, 0, toCopy); in run()
1179 toCopy -= n; in run()
1181 Slog.v(TAG, " -> wrote " + n + " to engine, left=" + toCopy); in run()
/frameworks/av/media/codec2/hal/common/
DMultiAccessUnitHelper.cpp701 uint32_t toCopy = 0; in processWorklets() local
703 toCopy = inputSize; in processWorklets()
705 toCopy = c2_min(frame.mWview->size(), (inputSize - inputOffset)); in processWorklets()
711 LOG(DEBUG) << " Copy size " << toCopy in processWorklets()
713 memcpy(frame.mWview->data(), rView.data() + inputOffset, toCopy); in processWorklets()
714 frame.mWview->setOffset(frame.mWview->offset() + toCopy); in processWorklets()
715 inputOffset += toCopy; in processWorklets()
716 mergeAccessUnitInfo(frame, flagsForCopy, toCopy, timestamp); in processWorklets()
/frameworks/base/services/core/java/com/android/server/content/
DSyncStorageEngine.java310 AuthorityInfo(AuthorityInfo toCopy) { in AuthorityInfo() argument
311 target = toCopy.target; in AuthorityInfo()
312 ident = toCopy.ident; in AuthorityInfo()
313 enabled = toCopy.enabled; in AuthorityInfo()
314 syncable = toCopy.syncable; in AuthorityInfo()
315 backoffTime = toCopy.backoffTime; in AuthorityInfo()
316 backoffDelay = toCopy.backoffDelay; in AuthorityInfo()
317 delayUntil = toCopy.delayUntil; in AuthorityInfo()
319 for (PeriodicSync sync : toCopy.periodicSyncs) { in AuthorityInfo()