/packages/services/Car/car-lib/src/android/car/hardware/ |
D | CarSensorEvent.java | 125 public long timestamp; field in CarSensorEvent 138 timestamp = in.readLong(); in CarSensorEvent() 159 dest.writeLong(timestamp); in writeToParcel() 180 public CarSensorEvent(int sensorType, long timestamp, int floatValueSize, int intValueSize, in CarSensorEvent() argument 183 this.timestamp = timestamp; in CarSensorEvent() 190 CarSensorEvent(int sensorType, long timestamp, float[] floatValues, int[] intValues, in CarSensorEvent() argument 193 this.timestamp = timestamp; in CarSensorEvent() 211 public long timestamp; field in CarSensorEvent.EnvironmentData 233 data.timestamp = timestamp; in getEnvironmentData() 240 public long timestamp; field in CarSensorEvent.IgnitionStateData [all …]
|
/packages/services/Car/tools/emulator/ |
D | diagjson.example | 3 "timestamp": 72375175786629, 47 "timestamp": 72377177593287, 91 "timestamp": 72379176544788, 135 "timestamp": 72381179373780, 179 "timestamp": 72383179413967, 223 "timestamp": 72385179454210, 267 "timestamp": 72387176856679, 311 "timestamp": 72389180204642, 355 "timestamp": 72391178997905, 399 "timestamp": 72393179466175, [all …]
|
/packages/services/Car/experimental/tests/experimentalcarservice_unit_test/src/com/android/experimentalcar/ |
D | GazeAttentionProcessorTest.java | 58 long timestamp = 1234; in testUpdateAttention_neverExceedsOne() local 63 assertThat(mAttentionProcessor.updateAttention(onRoadDetection, timestamp)) in testUpdateAttention_neverExceedsOne() 65 timestamp += FRAME_TIME_MILLIS; in testUpdateAttention_neverExceedsOne() 69 assertTrue(mAttentionProcessor.updateAttention(onRoadDetection, timestamp) <= 1.0f); in testUpdateAttention_neverExceedsOne() 70 timestamp += FRAME_TIME_MILLIS; in testUpdateAttention_neverExceedsOne() 77 long timestamp = 1234; in testUpdateAttention_neverBelowZero() local 82 assertThat(mAttentionProcessor.updateAttention(offRoadDetection, timestamp)) in testUpdateAttention_neverBelowZero() 84 timestamp += FRAME_TIME_MILLIS; in testUpdateAttention_neverBelowZero() 88 assertTrue(mAttentionProcessor.updateAttention(offRoadDetection, timestamp) >= 0); in testUpdateAttention_neverBelowZero() 89 timestamp += FRAME_TIME_MILLIS; in testUpdateAttention_neverBelowZero() [all …]
|
D | GazeDriverAwarenessSupplierTest.java | 117 long timestamp = START_TIME_MILLIS + FRAME_TIME_MILLIS; in testprocessDetectionEvent_neverExceedsOne() local 122 buildGazeDetection(timestamp, GazeDetection.VEHICLE_REGION_FORWARD_ROADWAY); in testprocessDetectionEvent_neverExceedsOne() 126 .emitAwarenessEvent(new DriverAwarenessEvent(timestamp, attention)); in testprocessDetectionEvent_neverExceedsOne() 130 timestamp += FRAME_TIME_MILLIS; in testprocessDetectionEvent_neverExceedsOne() 143 long timestamp = START_TIME_MILLIS + FRAME_TIME_MILLIS; in testprocessDetectionEvent_neverFallsBelowZero() local 148 buildGazeDetection(timestamp, GazeDetection.VEHICLE_REGION_HEAD_UNIT_DISPLAY); in testprocessDetectionEvent_neverFallsBelowZero() 152 .emitAwarenessEvent(new DriverAwarenessEvent(timestamp, attention)); in testprocessDetectionEvent_neverFallsBelowZero() 156 timestamp += FRAME_TIME_MILLIS; in testprocessDetectionEvent_neverFallsBelowZero() 162 long timestamp, @GazeDetection.VehicleRegion int gazeTarget) { in buildGazeDetection() argument 174 OccupantAwarenessDetection.VEHICLE_OCCUPANT_DRIVER, timestamp, true, gaze, null); in buildGazeDetection() [all …]
|
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/mapclient/ |
D | ObexTimeTest.java | 61 ObexTime timestamp = new ObexTime(VALID_TIME_STRING); in createWithValidDateTimeString_TimestampCorrect() local 63 timestamp.getTime()); in createWithValidDateTimeString_TimestampCorrect() 68 ObexTime timestamp = new ObexTime(VALID_TIME_STRING_WITH_OFFSET_POS); in createWithValidDateTimeStringWithPosOffset_TimestampCorrect() local 70 timestamp.getTime()); in createWithValidDateTimeStringWithPosOffset_TimestampCorrect() 75 ObexTime timestamp = new ObexTime(VALID_TIME_STRING_WITH_OFFSET_NEG); in createWithValidDateTimeStringWithNegOffset_TimestampCorrect() local 77 timestamp.getTime()); in createWithValidDateTimeStringWithNegOffset_TimestampCorrect() 82 ObexTime timestamp = new ObexTime(VALID_DATE_LOCAL_TZ); in createWithValidDate_TimestampCorrect() local 84 VALID_DATE_LOCAL_TZ, timestamp.getTime()); in createWithValidDate_TimestampCorrect() 89 ObexTime timestamp = new ObexTime(VALID_TIME_STRING); in printValidTime_TimestampMatchesInput() local 91 timestamp.toString()); in printValidTime_TimestampMatchesInput() [all …]
|
/packages/services/Car/tests/carservice_test/src/com/android/car/ |
D | CarDiagnosticManagerTest.java | 96 long timestamp = SystemClock.elapsedRealtimeNanos(); in addNewEvent() local 97 return addNewEvent(builder, timestamp); in addNewEvent() 100 synchronized VehiclePropValue addNewEvent(DiagnosticEventBuilder builder, long timestamp) { in addNewEvent() argument 101 VehiclePropValue newEvent = builder.build(timestamp); in addNewEvent() 102 mEvents.put(timestamp, newEvent); in addNewEvent() 106 synchronized VehiclePropValue removeEvent(long timestamp) { in removeEvent() argument 107 return mEvents.remove(timestamp); in removeEvent() 118 synchronized VehiclePropValue getEvent(long timestamp) { in getEvent() argument 119 return mEvents.get(timestamp); in getEvent() 182 long timestamp = value.value.int64Values.get(0); in onPropertyGet() local [all …]
|
/packages/modules/StatsD/statsd/src/metrics/duration_helper/ |
D | OringDurationTracker.cpp | 81 void OringDurationTracker::noteStop(const HashableDimensionKey& key, const int64_t timestamp, in noteStop() argument 93 (timestamp - mLastStartTime); in noteStop() 95 timestamp, mCurrentBucketNum, in noteStop() 98 (long long)timestamp - mLastStartTime, (long long)getCurrentStateKeyDuration(), in noteStop() 112 stopAnomalyAlarm(timestamp); in noteStop() 116 void OringDurationTracker::noteStopAll(const int64_t timestamp) { in noteStopAll() argument 119 (timestamp - mLastStartTime); in noteStopAll() 121 (long long)timestamp - mLastStartTime, (long long)getCurrentStateKeyDuration(), in noteStopAll() 124 timestamp, mCurrentBucketNum, in noteStopAll() 128 stopAnomalyAlarm(timestamp); in noteStopAll() [all …]
|
D | MaxDurationTracker.cpp | 228 const int64_t timestamp) { in onSlicedConditionMayChange() argument 240 noteConditionChanged(pair.first, conditionMet, timestamp); in onSlicedConditionMayChange() 244 void MaxDurationTracker::onStateChanged(const int64_t timestamp, const int32_t atomId, in onStateChanged() argument 249 void MaxDurationTracker::onConditionChanged(bool condition, const int64_t timestamp) { in onConditionChanged() argument 251 noteConditionChanged(pair.first, condition, timestamp); in onConditionChanged() 256 const int64_t timestamp) { in noteConditionChanged() argument 267 stopAnomalyAlarm(timestamp); in noteConditionChanged() 269 it->second.lastDuration += (timestamp - it->second.lastStartTime); in noteConditionChanged() 272 startAnomalyAlarm(timestamp); in noteConditionChanged() 285 it->second.lastStartTime = timestamp; in noteConditionChanged() [all …]
|
/packages/modules/StatsD/statsd/tests/external/ |
D | puller_util_test.cpp | 45 const int timestamp = 1234; variable 64 makeUidLogEvent(uidAtomTagId, timestamp, isolatedUid1, hostNonAdditiveData, in TEST() 68 makeUidLogEvent(uidAtomTagId, timestamp, hostUid, hostNonAdditiveData, in TEST() 86 makeUidLogEvent(uidAtomTagId, timestamp, isolatedUid1, isolatedNonAdditiveData, in TEST() 90 makeUidLogEvent(uidAtomTagId, timestamp, hostUid, isolatedNonAdditiveData, in TEST() 94 makeUidLogEvent(uidAtomTagId, timestamp, hostUid, hostNonAdditiveData, in TEST() 119 makeUidLogEvent(uidAtomTagId, timestamp, hostUid, isolatedNonAdditiveData, in TEST() 123 makeUidLogEvent(uidAtomTagId, timestamp, hostUid, hostNonAdditiveData, in TEST() 148 makeUidLogEvent(uidAtomTagId, timestamp, isolatedUid1, isolatedNonAdditiveData, in TEST() 152 makeUidLogEvent(uidAtomTagId, timestamp, isolatedUid1, hostNonAdditiveData, in TEST() [all …]
|
/packages/services/Car/tests/BugReportApp/src/com/android/car/bugreport/ |
D | FileUtils.java | 58 static File createTempDir(Context context, String timestamp) { in createTempDir() argument 59 File dir = getTempDir(context, timestamp); in createTempDir() 68 static File getTempDir(Context context, String timestamp) { in getTempDir() argument 71 return new File(context.getDataDir(), TEMP_DIR + "/" + timestamp); in getTempDir() 92 static String getAudioFileName(String timestamp, MetaBugReport bug) { in getAudioFileName() argument 94 return PREFIX + bug.getUserName() + FS + timestamp + "-" + lookupCode + "-message.3gp"; in getAudioFileName() 112 static File getFileWithSuffix(Context context, String timestamp, String suffix) { in getFileWithSuffix() argument 113 return new File(createTempDir(context, timestamp), timestamp + suffix); in getFileWithSuffix() 125 static File getFile(Context context, String timestamp, String name) { in getFile() argument 126 return new File(getTempDir(context, timestamp), name); in getFile()
|
/packages/services/Car/service/src/com/android/car/ |
D | CarSensorEventFactory.java | 27 public static CarSensorEvent createBooleanEvent(int sensorType, long timestamp, in createBooleanEvent() argument 29 CarSensorEvent event = new CarSensorEvent(sensorType, timestamp, 0, 1, 0); in createBooleanEvent() 34 public static CarSensorEvent createIntEvent(int sensorType, long timestamp, int value) { in createIntEvent() argument 35 CarSensorEvent event = new CarSensorEvent(sensorType, timestamp, 0, 1, 0); in createIntEvent() 48 public static CarSensorEvent createInt64VecEvent(int sensorType, long timestamp, in createInt64VecEvent() argument 50 CarSensorEvent event = new CarSensorEvent(sensorType, timestamp, 0, 0, value.size()); in createInt64VecEvent() 57 public static CarSensorEvent createFloatEvent(int sensorType, long timestamp, float value) { in createFloatEvent() argument 58 CarSensorEvent event = new CarSensorEvent(sensorType, timestamp, 1, 0, 0); in createFloatEvent() 63 public static CarSensorEvent createMixedEvent(int sensorType, long timestamp, in createMixedEvent() argument 68 CarSensorEvent event = new CarSensorEvent(sensorType, timestamp, numFloats, numInts, in createMixedEvent()
|
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/ |
D | SimpleDate.java | 33 private long timestamp; field in SimpleDate 39 public SimpleDate(long timestamp) { in SimpleDate() argument 40 setTimestamp(timestamp); in SimpleDate() 45 public void setTimestamp(long timestamp) { in setTimestamp() argument 48 sCalendarInstance.setTimeInMillis(timestamp); in setTimestamp() 52 this.timestamp = timestamp; in setTimestamp() 54 DateFormat.getDateInstance(DateFormat.SHORT).format(timestamp); in setTimestamp() 123 DateFormat.getDateInstance(DateFormat.SHORT).format(timestamp); in toString()
|
/packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/metadatasynchronizer/ |
D | MetadataPoolImpl.java | 56 private SettableFuture<TotalCaptureResultProxy> getOrCreateFuture(long timestamp) { in getOrCreateFuture() argument 59 if (!mMetadataFutures.containsKey(timestamp)) { in getOrCreateFuture() 60 mMetadataFutures.put(timestamp, SettableFuture.<TotalCaptureResultProxy> create()); in getOrCreateFuture() 63 metadataFuture = mMetadataFutures.get(timestamp); in getOrCreateFuture() 70 public ListenableFuture<TotalCaptureResultProxy> removeMetadataFuture(final long timestamp) { in removeMetadataFuture() argument 71 ListenableFuture<TotalCaptureResultProxy> future = getOrCreateFuture(timestamp); in removeMetadataFuture() 77 mMetadataFutures.remove(timestamp); in removeMetadataFuture() 91 long timestamp = metadata.get(CaptureResult.SENSOR_TIMESTAMP); in update() local 92 SettableFuture<TotalCaptureResultProxy> future = getOrCreateFuture(timestamp); in update()
|
/packages/apps/Dialer/java/com/android/voicemail/impl/ |
D | Voicemail.java | 28 private final Long timestamp; field in Voicemail 41 Long timestamp, in Voicemail() argument 52 this.timestamp = timestamp; in Voicemail() 70 public static Builder createForInsertion(long timestamp, String number) { in createForInsertion() argument 71 return new Builder().setNumber(number).setTimestamp(timestamp); in createForInsertion() 112 public Builder setTimestamp(long timestamp) { in setTimestamp() argument 113 builderTimestamp = timestamp; in setTimestamp() 205 return timestamp; in getTimestampMillis() 268 dest.writeLong(timestamp); in writeToParcel() 313 timestamp = in.readLong(); in Voicemail()
|
/packages/services/Car/service/src/com/android/car/hal/ |
D | CarPropertyUtils.java | 71 long timestamp = halValue.timestamp; in toCarPropertyValue() local 76 return new CarPropertyValue<>(propertyId, areaId, status, timestamp, in toCarPropertyValue() 79 return new CarPropertyValue<>(propertyId, areaId, status, timestamp, in toCarPropertyValue() 82 return new CarPropertyValue<>(propertyId, areaId, status, timestamp, in toCarPropertyValue() 85 return new CarPropertyValue<>(propertyId, areaId, status, timestamp, in toCarPropertyValue() 92 return new CarPropertyValue<>(propertyId, areaId, status, timestamp, values); in toCarPropertyValue() 98 return new CarPropertyValue<>(propertyId, areaId, status, timestamp, values); in toCarPropertyValue() 104 return new CarPropertyValue<>(propertyId, areaId, status, timestamp, values); in toCarPropertyValue() 106 return new CarPropertyValue<>(propertyId, areaId, status, timestamp, v.stringValue); in toCarPropertyValue() 109 return new CarPropertyValue<>(propertyId, areaId, status, timestamp, halData); in toCarPropertyValue() [all …]
|
/packages/apps/WallpaperPicker2/tests/src/com/android/wallpaper/testing/ |
D | TestWallpaperPreferences.java | 340 public void addDailyRotation(long timestamp) { in addDailyRotation() argument 341 mDailyRotations.add(timestamp); in addDailyRotation() 370 public void setDailyWallpaperEnabledTimestamp(long timestamp) { in setDailyWallpaperEnabledTimestamp() argument 371 mDailyWallpaperEnabledTimestamp = timestamp; in setDailyWallpaperEnabledTimestamp() 385 public void setLastDailyLogTimestamp(long timestamp) { in setLastDailyLogTimestamp() argument 386 mLastDailyLogTimestamp = timestamp; in setLastDailyLogTimestamp() 395 public void setLastAppActiveTimestamp(long timestamp) { in setLastAppActiveTimestamp() argument 396 mLastAppActiveTimestamp = timestamp; in setLastAppActiveTimestamp() 400 public void setDailyWallpaperRotationStatus(int status, long timestamp) { in setDailyWallpaperRotationStatus() argument 402 mLastDailyWallpaperRotationStatusTimestamp = timestamp; in setDailyWallpaperRotationStatus() [all …]
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | WifiWakeMetrics.java | 236 public Session(int numNetworks, long timestamp) { in Session() argument 238 mStartTimestamp = timestamp; in Session() 250 public void recordInitializeEvent(int numScans, int numNetworks, long timestamp) { in recordInitializeEvent() argument 253 mInitEvent = new Event(numScans, timestamp - mStartTimestamp); in recordInitializeEvent() 265 public void recordUnlockEvent(int numScans, long timestamp) { in recordUnlockEvent() argument 267 mUnlockEvent = new Event(numScans, timestamp - mStartTimestamp); in recordUnlockEvent() 279 public void recordWakeupEvent(int numScans, long timestamp) { in recordWakeupEvent() argument 281 mWakeupEvent = new Event(numScans, timestamp - mStartTimestamp); in recordWakeupEvent() 300 public void recordResetEvent(int numScans, long timestamp) { in recordResetEvent() argument 302 mResetEvent = new Event(numScans, timestamp - mStartTimestamp); in recordResetEvent()
|
/packages/modules/Connectivity/tests/common/java/android/net/metrics/ |
D | IpConnectivityLogTest.java | 78 assertEventsEqual(makeExpectedEvent(got.get(0).timestamp, 0, 0, null), got.get(0)); in testLoggingEvents() 80 assertEventsEqual(makeExpectedEvent(got.get(2).timestamp, FAKE_NET_ID, in testLoggingEvents() 82 assertEventsEqual(makeExpectedEvent(got.get(3).timestamp, FAKE_NET_ID, in testLoggingEvents() 84 assertEventsEqual(makeExpectedEvent(got.get(4).timestamp, 0, 0, FAKE_INTERFACE_NAME), in testLoggingEvents() 138 private ConnectivityMetricsEvent makeExpectedEvent(long timestamp, int netId, long transports, in makeExpectedEvent() argument 141 ev.timestamp = timestamp; in makeExpectedEvent() 153 assertEquals(expected.timestamp, got.timestamp); in assertEventsEqual() 160 Comparator.comparingLong((ev) -> ev.timestamp);
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/ |
D | InsertNewMessageAction.java | 145 final long timestamp = System.currentTimeMillis(); in executeAction() local 162 final long laterTimestamp = timestamp + 1; in executeAction() 173 timestamp, sendingConversationId); in executeAction() 180 final long timestampRoundedToSecond = 1000 * ((timestamp + 500) / 1000); in executeAction() 350 final String recipient, final long timestamp, final String sendingConversationId) { in insertSendingSmsMessage() argument 351 sLastSentMessageTimestamp = timestamp; in insertSendingSmsMessage() 357 syncManager.onNewMessageInserted(timestamp); in insertSendingSmsMessage() 384 timestamp, in insertSendingSmsMessage() 394 message.updateSendingMessage(conversationId, messageUri, timestamp); in insertSendingSmsMessage() 401 conversationId, message.getMessageId(), timestamp, in insertSendingSmsMessage() [all …]
|
/packages/modules/NeuralNetworks/runtime/test/fuzzing/ |
D | RandomVariable.cpp | 41 timestamp(RandomVariableNetwork::get()->getGlobalTime()) {} in RandomVariableBase() 47 timestamp(RandomVariableNetwork::get()->getGlobalTime()) {} in RandomVariableBase() 53 timestamp(RandomVariableNetwork::get()->getGlobalTime()) {} in RandomVariableBase() 63 timestamp(RandomVariableNetwork::get()->getGlobalTime()) {} in RandomVariableBase() 109 timestamp = RandomVariableNetwork::get()->getGlobalTime(); in updateTimestamp() 110 NN_FUZZER_LOG << "Update timestamp of var" << index << " to " << timestamp; in updateTimestamp() 667 int timestamp; member 685 timestamp = RandomVariableNetwork::get()->getGlobalTime(); in commit() 693 var->timestamp = timestamp; in updateRange() 701 timestamp(var->timestamp) {} in EvalInfo() [all …]
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/ |
D | MessageData.java | 755 final long timestamp) { in updateSendingMessage() argument 760 mReceivedTimestamp = timestamp; in updateSendingMessage() 761 mSentTimestamp = timestamp; in updateSendingMessage() 763 mRetryStartTimestamp = timestamp; in updateSendingMessage() 766 public final void markMessageManualResend(final long timestamp) { in markMessageManualResend() argument 768 mReceivedTimestamp = timestamp; in markMessageManualResend() 769 mSentTimestamp = timestamp; in markMessageManualResend() 773 public final void markMessageSending(final long timestamp) { in markMessageSending() argument 776 mSentTimestamp = timestamp; in markMessageSending() 779 public final void markMessageResending(final long timestamp) { in markMessageResending() argument [all …]
|
/packages/services/Car/tests/DiagnosticTools/src/com/google/android/car/diagnostictools/ |
D | DTC.java | 69 long timestamp, in DTC() argument 74 this.mTimestamp = timestamp; in DTC() 87 DTC(String code, long timestamp, Context context) { in DTC() argument 89 this.mTimestamp = timestamp; in DTC() 123 public void setTimestamp(long timestamp) { in setTimestamp() argument 124 mTimestamp = timestamp; in setTimestamp() 147 long timestamp = sRandomGen.nextLong(); in createSampleDTC() local 148 return new DTC(code, timestamp, context); in createSampleDTC()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/ |
D | AppScanStats.java | 71 public long timestamp; field in AppScanStats.LastScan 84 LastScan(long timestamp, boolean isFilterScan, boolean isCallbackScan, int scannerId, in LastScan() argument 87 this.timestamp = timestamp; in LastScan() 265 long scanDuration = stopTime - scan.timestamp; in recordScanStop() 363 return (SystemClock.elapsedRealtime() - mLastScans.get(0).timestamp) in isScanningTooFrequently() 493 scanDuration = currTime - scan.timestamp; in dumpToString() 552 Date timestamp = new Date(currentTime - currTime + scan.timestamp); in dumpToString() local 553 sb.append("\n " + DATE_FORMAT.format(timestamp) + " - "); in dumpToString() 597 Date timestamp = new Date(currentTime - currTime + scan.timestamp); in dumpToString() local 598 sb.append("\n " + DATE_FORMAT.format(timestamp) + " - "); in dumpToString() [all …]
|
/packages/modules/StatsD/statsd/src/packages/ |
D | UidMap.cpp | 115 void UidMap::updateMap(const int64_t& timestamp, const vector<int32_t>& uid, in updateMap() argument 157 strongPtr->onUidMapReceived(timestamp); in updateMap() 161 void UidMap::updateApp(const int64_t& timestamp, const String16& app_16, const int32_t& uid, in updateApp() argument 193 mChanges.emplace_back(false, timestamp, appName, uid, versionCode, newVersionString, in updateApp() 203 strongPtr->notifyAppUpgrade(timestamp, appName, uid, versionCode); in updateApp() 224 void UidMap::removeApp(const int64_t& timestamp, const String16& app_16, const int32_t& uid) { in removeApp() argument 247 mChanges.emplace_back(true, timestamp, app, uid, 0, "", prevVersion, prevVersionString); in removeApp() 257 strongPtr->notifyAppRemoved(timestamp, app, uid); in removeApp() 315 void UidMap::writeUidMapSnapshot(int64_t timestamp, bool includeVersionStrings, in writeUidMapSnapshot() argument 320 writeUidMapSnapshotLocked(timestamp, includeVersionStrings, includeInstaller, interestingUids, in writeUidMapSnapshot() [all …]
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/ |
D | forgetting_curve_utils.cpp | 49 const int timestamp = newHistoricalInfo->getTimestamp(); in createUpdatedHistoricalInfo() local 54 return HistoricalInfo(timestamp, level, count); in createUpdatedHistoricalInfo() 63 return HistoricalInfo(timestamp, level, 0 /* count */); in createUpdatedHistoricalInfo() 66 return HistoricalInfo(timestamp, level, clampToValidCountRange(count, headerPolicy)); in createUpdatedHistoricalInfo() 73 return HistoricalInfo(timestamp, in createUpdatedHistoricalInfo() 77 return HistoricalInfo(timestamp, in createUpdatedHistoricalInfo() 81 return HistoricalInfo(timestamp, originalHistoricalInfo->getLevel(), updatedCount); in createUpdatedHistoricalInfo() 154 /* static */ int ForgettingCurveUtils::getElapsedTimeStepCount(const int timestamp, in getElapsedTimeStepCount() argument 156 const int elapsedTimeInSeconds = TimeKeeper::peekCurrentTime() - timestamp; in getElapsedTimeStepCount()
|