Home
last modified time | relevance | path

Searched refs:recordInternals (Results 1 – 11 of 11) sorted by relevance

/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/request/
DUpsertTransactionRequest.java72 @NonNull List<RecordInternal<?>> recordInternals, in UpsertTransactionRequest() argument
78 recordInternals, in UpsertTransactionRequest()
88 @NonNull List<RecordInternal<?>> recordInternals, in UpsertTransactionRequest() argument
95 recordInternals, in UpsertTransactionRequest()
106 @NonNull List<RecordInternal<?>> recordInternals, in UpsertTransactionRequest() argument
119 for (RecordInternal<?> recordInternal : recordInternals) { in UpsertTransactionRequest()
158 + recordInternals.size()); in UpsertTransactionRequest()
/packages/modules/HealthFitness/framework/java/android/health/connect/internal/datatypes/utils/
DInternalExternalRecordConverter.java84 public List<Record> getExternalRecords(@NonNull List<RecordInternal<?>> recordInternals) { in getExternalRecords() argument
85 List<Record> externalRecordList = new ArrayList<>(recordInternals.size()); in getExternalRecords()
87 for (RecordInternal<?> recordInternal : recordInternals) { in getExternalRecords()
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/permission/
DDataPermissionEnforcer.java131 List<RecordInternal<?>> recordInternals, AttributionSource attributionSource) { in enforceRecordsWritePermissions() argument
134 for (RecordInternal<?> recordInternal : recordInternals) { in enforceRecordsWritePermissions()
205 List<RecordInternal<?>> recordInternals, AttributionSource attributionSource) { in collectExtraWritePermissionStateMapping() argument
207 for (RecordInternal<?> recordInternal : recordInternals) { in collectExtraWritePermissionStateMapping()
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/datatypehelpers/
DExerciseSessionRecordHelper.java456 @NonNull List<RecordInternal<?>> recordInternals, @NonNull String packageName) { in logUpsertMetrics()
457 Objects.requireNonNull(recordInternals); in logUpsertMetrics()
462 getNumberOfRecordsWithExerciseRoutes(recordInternals)); in logUpsertMetrics()
467 @NonNull List<RecordInternal<?>> recordInternals, @NonNull String packageName) { in logReadMetrics()
468 Objects.requireNonNull(recordInternals); in logReadMetrics()
473 getNumberOfRecordsWithExerciseRoutes(recordInternals)); in logReadMetrics()
559 @NonNull List<RecordInternal<?>> recordInternals) { in getNumberOfRecordsWithExerciseRoutes()
562 for (RecordInternal<?> recordInternal : recordInternals) { in getNumberOfRecordsWithExerciseRoutes()
DActivityDateHelper.java77 public static void insertRecordDate(@NonNull List<RecordInternal<?>> recordInternals) { in insertRecordDate() argument
78 Objects.requireNonNull(recordInternals); in insertRecordDate()
83 recordInternals.forEach( in insertRecordDate()
DRecordHelper.java367 @NonNull List<RecordInternal<?>> recordInternals, @NonNull String packageName) { in logUpsertMetrics()
378 @NonNull List<RecordInternal<?>> recordInternals, @NonNull String packageName) { in logReadMetrics()
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/
DHealthConnectServiceImpl.java379 final List<RecordInternal<?>> recordInternals = recordsParcel.getRecords(); in insertRecords()
380 logger.setNumberOfRecords(recordInternals.size()); in insertRecords()
390 recordInternals, attributionSource); in insertRecords()
394 recordInternals, in insertRecords()
399 recordInternals, attributionSource)); in insertRecords()
407 recordInternals, attributionSource.getPackageName()); in insertRecords()
408 logger.setDataTypesFromRecordInternals(recordInternals); in insertRecords()
827 final List<RecordInternal<?>> recordInternals = recordsParcel.getRecords(); in updateRecords()
828 logger.setNumberOfRecords(recordInternals.size()); in updateRecords()
838 recordInternals, attributionSource); in updateRecords()
[all …]
/packages/modules/HealthFitness/framework/java/android/health/connect/aidl/
DRecordsParcel.java58 public RecordsParcel(@NonNull List<RecordInternal<?>> recordInternals) { in RecordsParcel() argument
59 mRecordInternals = recordInternals; in RecordsParcel()
/packages/modules/HealthFitness/framework/java/android/health/connect/
DHealthConnectManager.java557 List<RecordInternal<?>> recordInternals = in insertRecords() local
566 new RecordsParcel(recordInternals), in insertRecords()
576 recordInternals, in insertRecords()
1279 List<RecordInternal<?>> recordInternals = in updateRecords() local
1282 for (RecordInternal<?> recordInternal : recordInternals) { in updateRecords()
1295 new RecordsParcel(recordInternals), in updateRecords()
1971 List<RecordInternal<?>> recordInternals, List<String> uuids) {
1975 for (RecordInternal recordInternal : recordInternals) {
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/logging/
DHealthConnectServiceLogger.java429 @NonNull List<RecordInternal<?>> recordInternals) { in setDataTypesFromRecordInternals()
430 Objects.requireNonNull(recordInternals); in setDataTypesFromRecordInternals()
432 for (RecordInternal<?> recordInternal : recordInternals) { in setDataTypesFromRecordInternals()
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/
DTransactionManager.java400 List<RecordInternal<?>> recordInternals = new ArrayList<>(); in readRecordsByIds() local
408 recordInternals.addAll(internalRecords); in readRecordsByIds()
412 return recordInternals; in readRecordsByIds()