Lines Matching refs:uuidBytes
225 byte[] uuidBytes = getSupportedCryptoSchemesNative(); in getSupportedCryptoSchemes()
226 return getUUIDsFromByteArray(uuidBytes); in getSupportedCryptoSchemes()
233 byte[] uuidBytes = new byte[16]; in getByteArrayFromUUID()
235 uuidBytes[i] = (byte)(msb >>> (8 * (7 - i))); in getByteArrayFromUUID()
236 uuidBytes[8 + i] = (byte)(lsb >>> (8 * (7 - i))); in getByteArrayFromUUID()
239 return uuidBytes; in getByteArrayFromUUID()
242 private static final UUID getUUIDFromByteArray(@NonNull byte[] uuidBytes, int off) { in getUUIDFromByteArray() argument
247 msb = (msb << 8) | (0xffl & uuidBytes[off + i]); in getUUIDFromByteArray()
248 lsb = (lsb << 8) | (0xffl & uuidBytes[off + i + 8]); in getUUIDFromByteArray()
254 private static final List<UUID> getUUIDsFromByteArray(@NonNull byte[] uuidBytes) { in getUUIDsFromByteArray() argument
256 for (int off = 0; off < uuidBytes.length; off+=16) { in getUUIDsFromByteArray()
257 uuids.add(getUUIDFromByteArray(uuidBytes, off)); in getUUIDsFromByteArray()