/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/AdServices/adservices/tests/unittest/service-core/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 | 41 public final long mTimestamp; field in RegisterTrigger 69 mTimestamp = obj.getLong(TestFormatJsonMapping.TIMESTAMP_KEY); in RegisterTrigger() 78 return mTimestamp; in getComparable()
|
D | RegisterSource.java | 42 public final long mTimestamp; field in RegisterSource 90 mTimestamp = obj.getLong(TestFormatJsonMapping.TIMESTAMP_KEY); in RegisterSource() 99 return mTimestamp; in getComparable()
|
D | RegisterWebTrigger.java | 44 public final long mTimestamp; field in RegisterWebTrigger 73 mTimestamp = obj.getLong(TestFormatJsonMapping.TIMESTAMP_KEY); in RegisterWebTrigger() 81 return mTimestamp; in getComparable()
|
D | RegisterListSources.java | 43 public final long mTimestamp; field in RegisterListSources 81 mTimestamp = obj.getLong(TestFormatJsonMapping.TIMESTAMP_KEY); in RegisterListSources() 97 return mTimestamp; in getComparable()
|
/packages/modules/Connectivity/framework-t/src/android/net/ |
D | IpSecTransformState.java | 44 private final long mTimestamp; field in IpSecTransformState 58 mTimestamp = timestamp; in IpSecTransformState() 82 mTimestamp = in.readLong(); in IpSecTransformState() 101 out.writeLong(mTimestamp); in writeToParcel() 130 return mTimestamp; in getTimestampMillis() 202 private long mTimestamp; field in IpSecTransformState.Builder 210 mTimestamp = SystemClock.elapsedRealtime(); in Builder() 220 mTimestamp = timestamp; in setTimestampMillis() 287 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/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/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/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() 185 return mTimestamp; in getTimestampMillis()
|
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/ |
D | E2EMockTest.java | 321 sourceRegistration.mTimestamp)); in processAction() 324 processActualDebugReportApiJob(sourceRegistration.mTimestamp); in processAction() 337 sourceRegistration.mTimestamp)); in processAction() 340 processActualDebugReportApiJob(sourceRegistration.mTimestamp); in processAction() 351 sourceRegistration.mRegistrationRequest, sourceRegistration.mTimestamp)); in processAction() 354 processActualDebugReportApiJob(sourceRegistration.mTimestamp); in processAction() 367 triggerRegistration.mTimestamp)); in processAction() 373 triggerRegistration.mTimestamp - TimeUnit.MINUTES.toMillis(1))); in processAction() 375 triggerRegistration.mTimestamp - Flags.MEASUREMENT_DATA_EXPIRY_WINDOW_MS; in processAction() 382 processActualDebugReportJob(triggerRegistration.mTimestamp, TimeUnit.MINUTES.toMillis(30)); 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 | 105 private final long mTimestamp; field in RangingResult 134 private long mTimestamp = 0; field in RangingResult.Builder 324 mTimestamp = timestamp; in setRangingTimestampMillis() 530 mTimestamp = builder.mTimestamp; in RangingResult() 737 return mTimestamp; in getRangingTimestampMillis() 935 dest.writeLong(mTimestamp); in writeToParcel() 1008 .append(", timestamp=").append(mTimestamp).append(", is80211mcMeasurement=") in toString() 1041 && mTimestamp == lhs.mTimestamp in equals() 1060 Arrays.hashCode(mLcr), mResponderLocation, mTimestamp, mIs80211mcMeasurement, in hashCode()
|
/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()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/opp/ |
D | BluetoothOppBatch.java | 67 public final long mTimestamp; field in BluetoothOppBatch 106 mTimestamp = info.mTimestamp; in BluetoothOppBatch()
|