Searched refs:getCursorUUID (Results 1 – 14 of 14) sorted by relevance
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/datatypehelpers/ |
D | CyclingPedalingCadenceRecordHelper.java | 27 import static com.android.server.healthconnect.storage.utils.StorageUtils.getCursorUUID; 91 UUID uuid = getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME); in populateSpecificValues() 98 && uuid.equals(getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME))); in populateSpecificValues()
|
D | PowerRecordHelper.java | 27 import static com.android.server.healthconnect.storage.utils.StorageUtils.getCursorUUID; 122 UUID uuid = getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME); in populateSpecificValues() 129 && uuid.equals(getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME))); in populateSpecificValues()
|
D | StepsCadenceRecordHelper.java | 27 import static com.android.server.healthconnect.storage.utils.StorageUtils.getCursorUUID; 88 UUID uuid = getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME); in populateSpecificValues() 95 && uuid.equals(getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME))); in populateSpecificValues()
|
D | HeartRateRecordHelper.java | 27 import static com.android.server.healthconnect.storage.utils.StorageUtils.getCursorUUID; 127 UUID uuid = getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME); in populateSpecificValues() 134 && uuid.equals(getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME))); in populateSpecificValues()
|
D | SleepSessionRecordHelper.java | 23 import static com.android.server.healthconnect.storage.utils.StorageUtils.getCursorUUID; 95 UUID uuid = getCursorUUID(cursor, UUID_COLUMN_NAME); in populateSpecificRecordValue() 103 } while (cursor.moveToNext() && uuid.equals(getCursorUUID(cursor, UUID_COLUMN_NAME))); in populateSpecificRecordValue()
|
D | SpeedRecordHelper.java | 27 import static com.android.server.healthconnect.storage.utils.StorageUtils.getCursorUUID; 88 UUID uuid = getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME); in populateSpecificValues() 95 && uuid.equals(getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME))); in populateSpecificValues()
|
D | SkinTemperatureRecordHelper.java | 32 import static com.android.server.healthconnect.storage.utils.StorageUtils.getCursorUUID; 138 UUID uuid = getCursorUUID(cursor, UUID_COLUMN_NAME); in populateSpecificRecordValue() 144 } while (cursor.moveToNext() && uuid.equals(getCursorUUID(cursor, UUID_COLUMN_NAME))); in populateSpecificRecordValue()
|
D | ExerciseSessionRecordHelper.java | 41 import static com.android.server.healthconnect.storage.utils.StorageUtils.getCursorUUID; 121 UUID uuid = getCursorUUID(cursor, UUID_COLUMN_NAME); in populateSpecificRecordValue() 130 StorageUtils.getCursorUUID(cursor, PLANNED_EXERCISE_SESSION_ID_COLUMN_NAME)); in populateSpecificRecordValue() 140 } while (cursor.moveToNext() && uuid.equals(getCursorUUID(cursor, UUID_COLUMN_NAME))); in populateSpecificRecordValue()
|
D | PlannedExerciseSessionRecordHelper.java | 40 import static com.android.server.healthconnect.storage.utils.StorageUtils.getCursorUUID; 247 getCursorUUID(cursor, COMPLETED_SESSION_ID_COLUMN_NAME)); in populateSpecificRecordValue() 260 UUID uuid = getCursorUUID(cursor, UUID_COLUMN_NAME); in extractBlocks() 269 } while (cursor.moveToNext() && uuid.equals(getCursorUUID(cursor, UUID_COLUMN_NAME))); in extractBlocks()
|
D | MedicalResourceHelper.java | 36 import static com.android.server.healthconnect.storage.utils.StorageUtils.getCursorUUID; 244 getCursorUUID(cursor, UUID_COLUMN_NAME).toString(), in getMedicalResource()
|
D | RecordHelper.java | 36 import static com.android.server.healthconnect.storage.utils.StorageUtils.getCursorUUID; 263 StorageUtils.getCursorUUID( in getUpsertTableRequest() 552 record.setUuid(getCursorUUID(cursor, UUID_COLUMN_NAME)); in getRecord()
|
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/ |
D | TransactionManager.java | 295 StorageUtils.getCursorUUID( in deleteAll() 300 StorageUtils.getCursorUUID( in deleteAll() 320 StorageUtils.getCursorUUID( in deleteAll() 933 StorageUtils.getCursorUUID(cursorAdditionalUuids, UUID_COLUMN_NAME)); in addChangelogsForOtherModifiedRecords()
|
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/datatypehelpers/aggregation/ |
D | AggregationRecordData.java | 72 return StorageUtils.getCursorUUID(cursor, UUID_COLUMN_NAME); in readUuid()
|
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/utils/ |
D | StorageUtils.java | 105 + getCursorUUID(cursor, UUID_COLUMN_NAME) in getConflictErrorMessageForRecord() 227 public static UUID getCursorUUID(Cursor cursor, String columnName) { in getCursorUUID() method in StorageUtils
|