/packages/modules/ImsMedia/framework/src/android/telephony/imsmedia/ |
D | RtpContextParams.java | 38 private final long mTimestamp; field in RtpContextParams 49 mTimestamp = in.readLong(); in RtpContextParams() 55 this.mTimestamp = timestamp; in RtpContextParams() 66 return mTimestamp; in getTimestamp() 78 + ", mTimestamp=" + Long.toHexString(mTimestamp) in toString() 85 return Objects.hash(mSsrc, mTimestamp, mSequenceNumber); in hashCode() 101 && mTimestamp == s.mTimestamp in equals() 117 dest.writeLong(mTimestamp); in writeToParcel() 139 private long mTimestamp; field in RtpContextParams.Builder 175 this.mTimestamp = timestamp; in setTimestamp() [all …]
|
/packages/modules/ExtServices/java/tests/src/android/ext/services/displayhash/ |
D | HmacKeyManagerTest.java | 33 private final long mTimestamp = 1000; field in HmacKeyManagerTest 50 assertTrue(mHmacKeyManager.verifyHmac(mSalt, mTimestamp, mBounds, in testGenerateAndVerifyHmac() 59 mHmacKeyManager.verifyHmac("fake salt".getBytes(), mTimestamp, mBounds, in testVerifyHmac_differentSalt() 76 mHmacKeyManager.verifyHmac(mSalt, mTimestamp, new Rect(10, 10, 110, 210), in testVerifyHmac_differentBounds() 84 assertFalse(mHmacKeyManager.verifyHmac(mSalt, mTimestamp, mBounds, in testVerifyHmac_differentHashAlgorithm() 92 assertFalse(mHmacKeyManager.verifyHmac(mSalt, mTimestamp, mBounds, in testVerifyHmac_differentImageHash() 98 assertFalse(mHmacKeyManager.verifyHmac(mSalt, mTimestamp, mBounds, in testVerifyHmac_differentHmac() 104 assertFalse(mHmacKeyManager.verifyHmac(mSalt, mTimestamp, mBounds, in testVerifyHmac_invalidHmac() 107 assertFalse(mHmacKeyManager.verifyHmac(mSalt, mTimestamp, mBounds, in testVerifyHmac_invalidHmac() 112 byte[] hmac = mHmacKeyManager.generateHmac(mSalt, mTimestamp, mBounds, mHashAlgorithm, in generateHmac()
|
/packages/modules/Uwb/ranging/service/java/com/android/server/ranging/ |
D | RangingData.java | 36 private final Duration mTimestamp; field in RangingData 81 return mTimestamp; in getTimestamp() 92 Preconditions.checkArgument(!builder.mTimestamp.isZero(), in RangingData() 100 mTimestamp = builder.mTimestamp; in RangingData() 115 private Duration mTimestamp = Duration.ZERO; field in RangingData.Builder 128 .setRssi(data.mRssi).setTimestamp(data.mTimestamp) in fromBuilt() 170 mTimestamp = timestamp; in setTimestamp() 195 + mTimestamp in toString()
|
/packages/modules/AdServices/adservices/tests/unittest/service-core/measurement/src/com/android/adservices/service/measurement/actions/ |
D | AggregateReportingJob.java | 22 public final long mTimestamp; field in AggregateReportingJob 25 mTimestamp = timestamp; in AggregateReportingJob() 29 return mTimestamp; in getComparable() 37 return mTimestamp == that.mTimestamp; in equals() 42 return Objects.hash(mTimestamp); in hashCode()
|
D | EventReportingJob.java | 22 public final long mTimestamp; field in EventReportingJob 25 mTimestamp = timestamp; in EventReportingJob() 30 return mTimestamp; in getComparable() 38 return mTimestamp == that.mTimestamp; in equals() 43 return Objects.hash(mTimestamp); in hashCode()
|
D | UninstallApp.java | 29 public final long mTimestamp; field in UninstallApp 33 mTimestamp = obj.getLong(TestFormatJsonMapping.INSTALLS_TIMESTAMP_KEY); in UninstallApp() 38 return mTimestamp; in getComparable()
|
D | InstallApp.java | 29 public final long mTimestamp; field in InstallApp 33 mTimestamp = obj.getLong(TestFormatJsonMapping.INSTALLS_TIMESTAMP_KEY); in InstallApp() 38 return mTimestamp; in getComparable()
|
D | RegisterTrigger.java | 43 public final long mTimestamp; field in RegisterTrigger 75 mTimestamp = obj.getLong(TestFormatJsonMapping.TIMESTAMP_KEY); in RegisterTrigger() 83 return mTimestamp; in getComparable()
|
/packages/modules/Connectivity/framework-t/src/android/net/ |
D | IpSecTransformState.java | 43 private final long mTimestamp; field in IpSecTransformState 57 mTimestamp = timestamp; in IpSecTransformState() 81 mTimestamp = in.readLong(); in IpSecTransformState() 100 out.writeLong(mTimestamp); in writeToParcel() 129 return mTimestamp; in getTimestampMillis() 201 private long mTimestamp; field in IpSecTransformState.Builder 209 mTimestamp = SystemClock.elapsedRealtime(); in Builder() 219 mTimestamp = timestamp; in setTimestampMillis() 286 mTimestamp, in build()
|
/packages/modules/Uwb/service/support_lib/src/com/google/uwb/support/radar/ |
D | RadarSweepData.java | 40 private final long mTimestamp; field in RadarSweepData 47 mTimestamp = timestamp; in RadarSweepData() 85 bundle.putLong(KEY_TIMESTAMP, mTimestamp); in toBundle() 121 return mTimestamp; in getTimestamp() 135 private RequiredParam<Long> mTimestamp = new RequiredParam<>(); field in RadarSweepData.Builder 147 mTimestamp.set(timestamp); in setTimestamp() 168 if (mTimestamp.get() < 0) { in build() 175 mSequenceNumber.get(), mTimestamp.get(), mVendorSpecificData, mSampleData); in build()
|
/packages/modules/Uwb/ranging/framework/java/android/ranging/ |
D | RangingData.java | 45 private final long mTimestamp; field in RangingData 54 if (builder.mTimestamp == Long.MIN_VALUE) { in RangingData() 65 mTimestamp = builder.mTimestamp; in RangingData() 81 mTimestamp = in.readLong(); in RangingData() 232 return mTimestamp; in getTimestampMillis() 247 dest.writeLong(mTimestamp); in writeToParcel() 264 private long mTimestamp = Long.MIN_VALUE; field in RangingData.Builder 343 mTimestamp = timestamp; in setTimestampMillis()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
D | ProbabilityInfo.java | 30 public final int mTimestamp; field in ProbabilityInfo 54 mTimestamp = timestamp; in ProbabilityInfo() 60 return mTimestamp != BinaryDictionary.NOT_A_VALID_TIMESTAMP; in hasHistoricalInfo() 66 return Arrays.hashCode(new Object[] { mProbability, mTimestamp, mLevel, mCount }); in hashCode() 84 return mProbability == p.mProbability && mTimestamp == p.mTimestamp && mLevel == p.mLevel in equals()
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/property/ |
D | historical_info.h | 28 : mTimestamp(NOT_A_TIMESTAMP), mLevel(0), mCount(0) {} in HistoricalInfo() 31 : mTimestamp(timestamp), mLevel(level), mCount(count) {} in HistoricalInfo() 34 return mTimestamp != NOT_A_TIMESTAMP; in isValid() 38 return mTimestamp; in getTimestamp() 54 const int mTimestamp; variable
|
/packages/services/Car/tests/DiagnosticTools/src/com/google/android/car/diagnostictools/ |
D | DTC.java | 53 private long mTimestamp; field in DTC 74 this.mTimestamp = timestamp; in DTC() 89 this.mTimestamp = timestamp; in DTC() 105 this.mTimestamp = in.readLong(); in DTC() 119 return mTimestamp; in getTimestamp() 124 mTimestamp = timestamp; in setTimestamp() 172 dest.writeLong(this.mTimestamp); in writeToParcel()
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
D | DataStatus.java | 37 private long mTimestamp = -1; field in DataStatus 67 if (newTimestamp < mTimestamp) return; in possibleUpdate() 69 mTimestamp = newTimestamp; in possibleUpdate() 79 mTimestamp = getLong(cursor, Data.STATUS_TIMESTAMP, -1); in fromCursor() 98 return mTimestamp; in getTimestamp() 110 final boolean validTimestamp = mTimestamp > 0; in getTimestampLabel() 114 mTimestamp, System.currentTimeMillis(), DateUtils.MINUTE_IN_MILLIS, in getTimestampLabel()
|
/packages/modules/Bluetooth/framework/java/android/bluetooth/ |
D | BluetoothActivityEnergyInfo.java | 39 private final long mTimestamp; field in BluetoothActivityEnergyInfo 72 mTimestamp = timestamp; in BluetoothActivityEnergyInfo() 82 mTimestamp = in.readLong(); in BluetoothActivityEnergyInfo() 96 + mTimestamp in toString() 126 out.writeLong(mTimestamp); in writeToParcel() 182 return mTimestamp; in getTimestampMillis()
|
/packages/modules/AdServices/adservices/tests/unittest/service-core/measurement/src/com/android/adservices/service/measurement/ |
D | E2EAbstractMockTest.java | 390 sourceRegistration.mTimestamp)); in processAction() 392 processActualDebugReportApiJob(sourceRegistration.mTimestamp); in processAction() 393 processActualDebugReportJob(sourceRegistration.mTimestamp, 0L); in processAction() 405 sourceRegistration.mTimestamp)); in processAction() 407 processActualDebugReportApiJob(sourceRegistration.mTimestamp); in processAction() 408 processActualDebugReportJob(sourceRegistration.mTimestamp, 0L); in processAction() 418 sourceRegistration.mRegistrationRequest, sourceRegistration.mTimestamp)); in processAction() 420 processActualDebugReportApiJob(sourceRegistration.mTimestamp); in processAction() 432 triggerRegistration.mTimestamp)); in processAction() 438 triggerRegistration.mTimestamp - TimeUnit.MINUTES.toMillis(1))); in processAction() [all …]
|
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/audio/nodes/ |
D | AudioRtpPayloadEncoderNode.cpp | 33 mTimestamp = 0; in AudioRtpPayloadEncoderNode() 226 mTimestamp = nTimestamp; in EncodePayloadAmr() 265 SendDataToRearNode(MEDIASUBTYPE_RTPPAYLOAD, mPayload, nTotalSize, mTimestamp, in EncodePayloadAmr() 299 mTimestamp = nTimeStamp; in EncodePayloadEvs() 339 SendDataToRearNode(MEDIASUBTYPE_RTPPAYLOAD, mPayload, nTotalSize, mTimestamp, in EncodePayloadEvs() 426 SendDataToRearNode(MEDIASUBTYPE_RTPPAYLOAD, mPayload, nTotalSize, mTimestamp, in EncodePayloadEvs() 493 mTimestamp = nTimeStamp; // set timestamp as the first frame in EncodePayloadEvs() 526 CheckPaddingNecessity(nTotalSize), mTimestamp, mFirstFrame, 0, in EncodePayloadEvs() 574 mTimestamp = nTimeStamp; // set timestamp as the first frame in EncodePayloadEvs() 608 CheckPaddingNecessity(nTotalSize), mTimestamp, mFirstFrame, 0, in EncodePayloadEvs()
|
/packages/modules/Wifi/framework/java/android/net/wifi/rtt/ |
D | RangingResult.java | 108 private final long mTimestamp; field in RangingResult 143 private long mTimestamp = 0; field in RangingResult.Builder 189 mTimestamp = other.mTimestamp; in Builder() 388 mTimestamp = timestamp; in setRangingTimestampMillis() 684 mTimestamp = builder.mTimestamp; in RangingResult() 897 return mTimestamp; in getRangingTimestampMillis() 1165 dest.writeLong(mTimestamp); in writeToParcel() 1250 .append(", timestamp=").append(mTimestamp).append(", is80211mcMeasurement=") in toString() 1288 && mTimestamp == lhs.mTimestamp in equals() 1313 Arrays.hashCode(mLcr), mResponderLocation, mTimestamp, mIs80211mcMeasurement, in hashCode()
|
/packages/apps/TvSettings/TwoPanelSettingsLib/src/com/android/tv/twopanelsettings/slices/compat/builders/impl/ |
D | MessagingBasicImpl.java | 64 if (mLastMessage == null || mLastMessage.mTimestamp < b.mTimestamp) { in add() 83 long mTimestamp; field in MessagingBasicImpl.MessageBuilder 115 mTimestamp = timestamp; in addTimestamp()
|
/packages/modules/Nfc/framework/java/android/nfc/cardemulation/ |
D | PollingFrame.java | 135 private final long mTimestamp; field in PollingFrame 156 mTimestamp = frame.getLong(KEY_POLLING_LOOP_TIMESTAMP); in PollingFrame() 178 mTimestamp = timestampMicros; in PollingFrame() 220 return mTimestamp; in getTimestamp()
|
/packages/apps/Settings/src/com/android/settings/fuelgauge/batteryusage/db/ |
D | BatteryUsageSlotEntity.java | 94 private long mTimestamp; field in BatteryUsageSlotEntity.Builder 100 mTimestamp = timestamp; in setTimestamp() 113 return new BatteryUsageSlotEntity(mTimestamp, mBatteryUsageSlot); in build()
|
D | BatteryEventEntity.java | 102 private long mTimestamp; field in BatteryEventEntity.Builder 109 mTimestamp = timestamp; in setTimestamp() 129 return new BatteryEventEntity(mTimestamp, mBatteryEventType, mBatteryLevel); in build()
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/ |
D | ver4_patricia_trie_writing_helper.h | 86 : mDictPos(dictPos), mProbability(probability), mTimestamp(timestamp) {} in DictProbability() 97 return mTimestamp; in getTimestamp() 105 int mTimestamp; variable
|
/packages/modules/ExtServices/java/src/android/ext/services/displayhash/ |
D | HmacKeyManager.java | 70 private final long mTimestamp; field in HmacKeyManager.VerificationObject 76 mTimestamp = timestamp; in VerificationObject() 84 parcel.writeLong(mTimestamp); in convertToBytes()
|