Searched refs:startTimestamp (Results 1 – 4 of 4) sorted by relevance
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/ |
D | SyncMessagesAction.java | 83 final long startTimestamp = now - smsSyncBackoffTimeMillis; in fullSync() local 85 final SyncMessagesAction action = new SyncMessagesAction(-1L, startTimestamp, in fullSync() 86 0, startTimestamp); in fullSync() 101 final long startTimestamp = now - smsSyncBackoffTimeMillis; in sync() local 103 sync(startTimestamp); in sync() 113 final long startTimestamp = now; in immediateSync() local 115 sync(startTimestamp); in immediateSync() 118 private static void sync(final long startTimestamp) { in sync() argument 130 startTimestamp, 0, startTimestamp); in sync() 135 final int maxMessagesToUpdate, final long startTimestamp) { in SyncMessagesAction() argument [all …]
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
D | SyncManager.java | 188 public synchronized boolean shouldSync(final boolean full, final long startTimestamp) { in shouldSync() argument 191 + "at " + startTimestamp); in shouldSync() 195 final long delayUntilFullSync = delayUntilFullSync(startTimestamp); in shouldSync() 198 LogUtil.d(TAG, "SyncManager: Full sync requested for " + startTimestamp in shouldSync() 214 + startTimestamp); in shouldSync() 217 mSyncInProgressTimestamp = startTimestamp; in shouldSync() 227 public long delayUntilFullSync(final long startTimestamp) { in delayUntilFullSync() argument 235 final long noFullSyncBefore = (lastFullSyncTime < 0 ? startTimestamp : in delayUntilFullSync() 238 final long delayUntilFullSync = noFullSyncBefore - startTimestamp; in delayUntilFullSync()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/aware/ |
D | WifiAwareDataPathStateManager.java | 485 ndpInfo.startTimestamp = mClock.getElapsedSinceBootMillis(); in onDataPathRequest() 534 ndpInfo.startTimestamp); in onRespondToDataPathRequest() 669 ndpInfo.startTimestamp); in onDataPathConfirm() 740 mAwareMetrics.recordNdpStatus(NanStatusType.SUCCESS, isOutOfBand, ndpInfo.startTimestamp); in handleAddressValidation() 784 mAwareMetrics.recordNdpSessionDuration(ndpInfo.startTimestamp); in onDataPathEnd() 866 nnri.networkSpecifier.isOutOfBand(), ndpInfo.startTimestamp); in handleDataPathTimeout() 1266 public long startTimestamp = 0; // request is made (initiator) / get request (responder) field in WifiAwareDataPathStateManager.NdpInfo 1287 startTimestamp).append(", channelInfo=").append( in toString()
|
D | WifiAwareMetrics.java | 467 public void recordNdpStatus(int status, boolean isOutOfBand, long startTimestamp) { in recordNdpStatus() argument 476 long creationTime = mClock.getElapsedSinceBootMillis() - startTimestamp; in recordNdpStatus()
|