Home
last modified time | relevance | path

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

/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/data/entries/api/
DLoadDataAggregationsUseCase.kt69 BaseUseCase<LoadAggregationInput, FormattedAggregation>(dispatcher), in <lambda>()
72 override suspend fun execute(input: LoadAggregationInput): FormattedAggregation { in <lambda>()
75 is LoadAggregationInput.PeriodAggregation -> { in <lambda>()
79 is LoadAggregationInput.CustomAggregation -> { in <lambda>()
205 sealed class LoadAggregationInput( class
217 ) : LoadAggregationInput(permissionType, packageName, showDataOrigin)
226 ) : LoadAggregationInput(permissionType, packageName, showDataOrigin)
230 suspend fun invoke(input: LoadAggregationInput): UseCaseResults<FormattedAggregation>
232 suspend fun execute(input: LoadAggregationInput): FormattedAggregation
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/data/entries/api/
DLoadDataAggregationsUseCaseTest.kt13 import com.android.healthconnect.controller.data.entries.api.LoadAggregationInput in <lambda>()
90 LoadAggregationInput.PeriodAggregation( in <lambda>()
113 LoadAggregationInput.PeriodAggregation( in <lambda>()
135 LoadAggregationInput.PeriodAggregation( in <lambda>()
158 LoadAggregationInput.CustomAggregation( in <lambda>()
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/datasources/api/
DLoadMostRecentAggregationsUseCase.kt18 import com.android.healthconnect.controller.data.entries.api.LoadAggregationInput in <lambda>()
116 LoadAggregationInput.PeriodAggregation( in <lambda>()
164 LoadAggregationInput.CustomAggregation( in <lambda>()
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/dataentries/
DLoadDataAggregationsUseCase.kt70 ) : BaseUseCase<LoadAggregationInput, FormattedAggregation>(dispatcher) { in <lambda>()
72 override suspend fun execute(input: LoadAggregationInput): FormattedAggregation { in <lambda>()
187 data class LoadAggregationInput( dataClass
DDataEntriesFragmentViewModel.kt93 val input = LoadAggregationInput(permissionType, selectedDate) in loadAggregation()
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/data/entries/
DEntriesViewModel.kt26 import com.android.healthconnect.controller.data.entries.api.LoadAggregationInput
159 LoadAggregationInput.PeriodAggregation( in loadAggregation()
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/utils/di/
DFakeComponents.kt29 import com.android.healthconnect.controller.data.entries.api.LoadAggregationInput
149 input: LoadAggregationInput in invoke()
165 override suspend fun execute(input: LoadAggregationInput): FormattedEntry.FormattedAggregation { in execute()