Home
last modified time | relevance | path

Searched refs:mPeriod (Results 1 – 6 of 6) sorted by relevance

/packages/modules/HealthFitness/framework/java/android/health/connect/aidl/
DAggregateDataRequestParcel.java62 private Period mPeriod; field in AggregateDataRequestParcel
94 mPeriod = period; in AggregateDataRequestParcel()
113 mPeriod = Period.of(periodYears, periodMonths, periodDays); in AggregateDataRequestParcel()
129 return mPeriod; in getPeriod()
149 if (mPeriod != null) { in writeToParcel()
150 dest.writeInt(mPeriod.getDays()); in writeToParcel()
151 dest.writeInt(mPeriod.getMonths()); in writeToParcel()
152 dest.writeInt(mPeriod.getYears()); in writeToParcel()
DAggregateDataResponseParcel.java66 private Period mPeriod; field in AggregateDataResponseParcel
105 mPeriod = Period.of(periodYears, periodMonths, periodDays); in AggregateDataResponseParcel()
146 mPeriod = period; in setPeriod()
239 Objects.requireNonNull(mPeriod); in getAggregateDataResponseGroupedByPeriod()
249 groupBoundary.plus(mPeriod), in getAggregateDataResponseGroupedByPeriod()
251 groupBoundary = groupBoundary.plus(mPeriod); in getAggregateDataResponseGroupedByPeriod()
298 if (mPeriod != null) { in writeToParcel()
299 dest.writeInt(mPeriod.getDays()); in writeToParcel()
300 dest.writeInt(mPeriod.getMonths()); in writeToParcel()
301 dest.writeInt(mPeriod.getYears()); in writeToParcel()
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/request/
DAggregateTransactionRequest.java49 private final Period mPeriod; field in AggregateTransactionRequest
59 mPeriod = request.getPeriod(); in AggregateTransactionRequest()
81 if (mDuration != null || mPeriod != null) { in AggregateTransactionRequest()
84 mPeriod, in AggregateTransactionRequest() local
133 if (mPeriod != null) { in getAggregateDataResponseParcel()
134 aggregateDataResponseParcel.setPeriod(mPeriod, mTimeRangeFilter); in getAggregateDataResponseParcel()
/packages/apps/DeskClock/src/com/android/deskclock/uidata/
DPeriodicCallbackModel.kt121 private val mPeriod: Period, constant in com.android.deskclock.uidata.PeriodicRunnable
125 LOGGER.i("Executing periodic callback for %s because the period ended", mPeriod) in run()
131 LOGGER.i("Executing periodic callback for %s because the time changed", mPeriod) in runAndReschedule()
138 val delay = getDelay(System.currentTimeMillis(), mPeriod, mOffset) in schedule()
/packages/apps/TV/src/com/android/tv/
DTimeShiftManager.java1244 + Utils.toTimeString(mPeriod.getLower()) in onPostExecute()
1246 + Utils.toTimeString(mPeriod.getUpper()) in onPostExecute()
1253 if (mPeriod.contains(r)) { in onPostExecute()
1259 if (addPlaceholderPrograms(mPeriod)) { in onPostExecute()
1285 addPlaceholderPrograms(mPeriod); in onPostExecute()
1299 + Utils.toTimeString(mPeriod.getLower()) in onCancelled()
1301 + Utils.toTimeString(mPeriod.getUpper()) in onCancelled()
1317 if (mPeriod.contains(r.getLower()) || mPeriod.contains(r.getUpper())) { in overlaps()
/packages/apps/TV/src/com/android/tv/util/
DAsyncDbTask.java398 protected final Range<Long> mPeriod; field in AsyncDbTask.LoadProgramsForChannelTask
414 mPeriod = period; in LoadProgramsForChannelTask()
423 return mPeriod; in getPeriod()