Home
last modified time | relevance | path

Searched refs:mEpochMillis (Results 1 – 7 of 7) sorted by relevance

/packages/modules/HealthFitness/framework/java/android/health/connect/internal/datatypes/
DHeartRateRecordInternal.java42 private final long mEpochMillis; field in HeartRateRecordInternal.HeartRateSample
46 mEpochMillis = epochMillis; in HeartRateSample()
54 return mEpochMillis; in getEpochMillis()
DPowerRecordInternal.java104 private final long mEpochMillis; field in PowerRecordInternal.PowerRecordSample
108 mEpochMillis = epochMillis; in PowerRecordSample()
116 return mEpochMillis; in getEpochMillis()
DStepsCadenceRecordInternal.java105 private final long mEpochMillis; field in StepsCadenceRecordInternal.StepsCadenceRecordSample
109 mEpochMillis = epochMillis; in StepsCadenceRecordSample()
117 return mEpochMillis; in getEpochMillis()
DSpeedRecordInternal.java104 private final long mEpochMillis; field in SpeedRecordInternal.SpeedRecordSample
108 mEpochMillis = epochMillis; in SpeedRecordSample()
116 return mEpochMillis; in getEpochMillis()
DCyclingPedalingCadenceRecordInternal.java112 private final long mEpochMillis; field in CyclingPedalingCadenceRecordInternal.CyclingPedalingCadenceRecordSample
116 mEpochMillis = epochMillis; in CyclingPedalingCadenceRecordSample()
124 return mEpochMillis; in getEpochMillis()
DSkinTemperatureRecordInternal.java70 parcel.writeLong(skinTemperatureDeltaSample.mEpochMillis()); in populateIntervalRecordTo()
134 public record SkinTemperatureDeltaSample(double mTemperatureDeltaInCelsius, long mEpochMillis)
146 Instant.ofEpochMilli(skinTemperatureDeltaSample.mEpochMillis()), in getExternalDeltas()
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/datatypehelpers/
DSkinTemperatureRecordHelper.java180 contentValues.put(EPOCH_MILLIS_COLUMN_NAME, sample.mEpochMillis()); in populateSampleTo()