Home
last modified time | relevance | path

Searched refs:TableColumnPair (Results 1 – 5 of 5) sorted by relevance

/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/datatypehelpers/
DExerciseSessionRecordHelper.java225 public List<TableColumnPair> getChildTablesWithRowsToBeDeletedDuringUpdate( in getChildTablesWithRowsToBeDeletedDuringUpdate()
227 ArrayList<TableColumnPair> childTablesToDelete = new ArrayList<>(); in getChildTablesWithRowsToBeDeletedDuringUpdate()
228 childTablesToDelete.add(new TableColumnPair(EXERCISE_LAPS_RECORD_TABLE_NAME, PARENT_KEY)); in getChildTablesWithRowsToBeDeletedDuringUpdate()
230 new TableColumnPair(EXERCISE_SEGMENT_RECORD_TABLE_NAME, PARENT_KEY)); in getChildTablesWithRowsToBeDeletedDuringUpdate()
235 new TableColumnPair(EXERCISE_ROUTE_RECORD_TABLE_NAME, PARENT_KEY)); in getChildTablesWithRowsToBeDeletedDuringUpdate()
DRecordHelper.java303 public List<TableColumnPair> getChildTablesWithRowsToBeDeletedDuringUpdate( in getChildTablesWithRowsToBeDeletedDuringUpdate()
305 return getAllChildTables().stream().map(it -> new TableColumnPair(it, PARENT_KEY)).toList(); in getChildTablesWithRowsToBeDeletedDuringUpdate()
921 public static final class TableColumnPair { class in RecordHelper
922 TableColumnPair(String tableName, String columnName) { in TableColumnPair() method in RecordHelper.TableColumnPair
DPlannedExerciseSessionRecordHelper.java582 public List<TableColumnPair> getChildTablesWithRowsToBeDeletedDuringUpdate( in getChildTablesWithRowsToBeDeletedDuringUpdate()
586 new TableColumnPair( in getChildTablesWithRowsToBeDeletedDuringUpdate()
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/request/
DUpsertTableRequest.java209 public List<RecordHelper.TableColumnPair> getChildTablesWithRowsToBeDeletedDuringUpdate() { in getChildTablesWithRowsToBeDeletedDuringUpdate()
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/
DTransactionManager.java898 for (RecordHelper.TableColumnPair childTableAndColumn : in deleteChildTableRequest()