Home
last modified time | relevance | path

Searched refs:UUID_COLUMN_NAME (Results 1 – 17 of 17) sorted by relevance

/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/datatypehelpers/
DRecordHelper.java90 public static final String UUID_COLUMN_NAME = "uuid"; field in RecordHelper
101 new Pair<>(UUID_COLUMN_NAME, UpsertTableRequest.TYPE_BLOB));
117 .setRequiresUuId(UUID_COLUMN_NAME); in getDeleteRequestForAutoDelete()
261 UUID_COLUMN_NAME)); in getUpsertTableRequest()
264 cursor, UUID_COLUMN_NAME); in getUpsertTableRequest()
269 UUID_COLUMN_NAME, in getUpsertTableRequest()
394 UUID_COLUMN_NAME, StorageUtils.getListOfHexStrings(uuids)) in getReadTableRequest()
552 record.setUuid(getCursorUUID(cursor, UUID_COLUMN_NAME)); in getRecord()
602 .setRequiresUuId(UUID_COLUMN_NAME); in getDeleteTableRequest()
607 .setIds(UUID_COLUMN_NAME, StorageUtils.getListOfHexStrings(ids)) in getDeleteTableRequest()
[all …]
DMedicalResourceHelper.java25 …port static com.android.server.healthconnect.storage.datatypehelpers.RecordHelper.UUID_COLUMN_NAME;
75 List.of(new Pair<>(UUID_COLUMN_NAME, UpsertTableRequest.TYPE_BLOB));
106 Pair.create(UUID_COLUMN_NAME, BLOB_UNIQUE_NON_NULL), in getColumnInfo()
144 UUID_COLUMN_NAME, StorageUtils.getListOfHexStrings(ids)); in getReadTableWhereClause()
160 resourceContentValues.put(UUID_COLUMN_NAME, StorageUtils.convertUUIDToBytes(uuid)); in getContentValues()
244 getCursorUUID(cursor, UUID_COLUMN_NAME).toString(), in getMedicalResource()
DExerciseSessionRecordHelper.java121 UUID uuid = getCursorUUID(cursor, UUID_COLUMN_NAME); in populateSpecificRecordValue()
140 } while (cursor.moveToNext() && uuid.equals(getCursorUUID(cursor, UUID_COLUMN_NAME))); in populateSpecificRecordValue()
283 + UUID_COLUMN_NAME in getPostUpsertCommands()
397 UUID_COLUMN_NAME, StorageUtils.getListOfHexStrings(uuids)) in getExtraDataReadRequests()
450 UUID_COLUMN_NAME); in getAlterTableRequestForPlannedExerciseFeature()
496 + UUID_COLUMN_NAME in getReadRequestsForRecordsModifiedByUpsertion()
520 UUID_COLUMN_NAME, in getReadRequestsForRecordsModifiedByUpsertion()
540 UUID_COLUMN_NAME, in getReadRequestsForRecordsModifiedByDeletion()
DCyclingPedalingCadenceRecordHelper.java91 UUID uuid = getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME); in populateSpecificValues()
98 && uuid.equals(getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME))); in populateSpecificValues()
DPowerRecordHelper.java122 UUID uuid = getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME); in populateSpecificValues()
129 && uuid.equals(getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME))); in populateSpecificValues()
DStepsCadenceRecordHelper.java88 UUID uuid = getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME); in populateSpecificValues()
95 && uuid.equals(getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME))); in populateSpecificValues()
DHeartRateRecordHelper.java127 UUID uuid = getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME); in populateSpecificValues()
134 && uuid.equals(getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME))); in populateSpecificValues()
DSleepSessionRecordHelper.java95 UUID uuid = getCursorUUID(cursor, UUID_COLUMN_NAME); in populateSpecificRecordValue()
103 } while (cursor.moveToNext() && uuid.equals(getCursorUUID(cursor, UUID_COLUMN_NAME))); in populateSpecificRecordValue()
DSpeedRecordHelper.java88 UUID uuid = getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME); in populateSpecificValues()
95 && uuid.equals(getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME))); in populateSpecificValues()
DSkinTemperatureRecordHelper.java138 UUID uuid = getCursorUUID(cursor, UUID_COLUMN_NAME); in populateSpecificRecordValue()
144 } while (cursor.moveToNext() && uuid.equals(getCursorUUID(cursor, UUID_COLUMN_NAME))); in populateSpecificRecordValue()
DPlannedExerciseSessionRecordHelper.java165 UUID_COLUMN_NAME); in getAlterTableRequestForPlannedExerciseFeature()
260 UUID uuid = getCursorUUID(cursor, UUID_COLUMN_NAME); in extractBlocks()
269 } while (cursor.moveToNext() && uuid.equals(getCursorUUID(cursor, UUID_COLUMN_NAME))); in extractBlocks()
597 UUID_COLUMN_NAME, in getReadRequestsForRecordsModifiedByDeletion()
DIntervalRecordHelper.java228 UUID_COLUMN_NAME, in getPriorityAggregationColumnNames()
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/datatypehelpers/aggregation/
DAggregationRecordData.java26 …port static com.android.server.healthconnect.storage.datatypehelpers.RecordHelper.UUID_COLUMN_NAME;
72 return StorageUtils.getCursorUUID(cursor, UUID_COLUMN_NAME); in readUuid()
/packages/modules/HealthFitness/tests/unittests/src/com/android/server/healthconnect/storage/datatypehelpers/
DMedicalResourceHelperTest.java30 …port static com.android.server.healthconnect.storage.datatypehelpers.RecordHelper.UUID_COLUMN_NAME;
76 assertThat(contentValues.get(UUID_COLUMN_NAME)) in getUpsertTableRequest_correctResult()
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/utils/
DStorageUtils.java31 …port static com.android.server.healthconnect.storage.datatypehelpers.RecordHelper.UUID_COLUMN_NAME;
101 + convertBytesToUUID(contentValues.getAsByteArray(UUID_COLUMN_NAME)) in getConflictErrorMessageForRecord()
105 + getCursorUUID(cursor, UUID_COLUMN_NAME) in getConflictErrorMessageForRecord()
565 mUuid = StorageUtils.convertBytesToUUID(contentValues.getAsByteArray(UUID_COLUMN_NAME)); in RecordIdentifierData()
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/
DTransactionManager.java28 …port static com.android.server.healthconnect.storage.datatypehelpers.RecordHelper.UUID_COLUMN_NAME;
321 cursorAdditionalUuids, UUID_COLUMN_NAME)); in deleteAll()
933 StorageUtils.getCursorUUID(cursorAdditionalUuids, UUID_COLUMN_NAME)); in addChangelogsForOtherModifiedRecords()
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/request/
DUpsertTransactionRequest.java182 RecordHelper.UUID_COLUMN_NAME, StorageUtils.getHexString(recordInternal.getUuid())); in generateWhereClausesForUpdate()