Searched refs:bytesToUuids (Results 1 – 3 of 3) sorted by relevance
24 import static com.android.server.healthconnect.storage.utils.StorageUtils.bytesToUuids;47 bytesToUuids((byte[]) requests.get(0).getContentValues().get(UUIDS_COLUMN_NAME)); in changeLogs_getUpsertTableRequests_listLessThanDefaultPageSize()63 bytesToUuids((byte[]) requests.get(0).getContentValues().get(UUIDS_COLUMN_NAME)); in changeLogs_getUpsertTableRequests_listMoreThanDefaultPageSize()66 bytesToUuids((byte[]) requests.get(1).getContentValues().get(UUIDS_COLUMN_NAME)); in changeLogs_getUpsertTableRequests_listMoreThanDefaultPageSize()
25 import static com.android.server.healthconnect.storage.utils.StorageUtils.bytesToUuids;43 assertThat(bytesToUuids(bytes)).isEmpty(); in uuidToBytesAndBack_emptyList()52 assertThat(bytesToUuids(bytes)).containsExactly(uuid1, uuid2); in uuidToBytesAndBack_oneUuid()
510 return bytesToUuids(bytes); in getCursorUUIDList()515 public static List<UUID> bytesToUuids(byte[] bytes) { in bytesToUuids() method in StorageUtils