Lines Matching full:uuid
275 JNIEnv *env, jobject thiz, const uint8_t uuid[16]) {
277 mDrm = MakeDrm(uuid);
316 sp<IDrm> JDrm::MakeDrm(const uint8_t uuid[16]) {
323 status_t err = drm->createPlugin(uuid);
352 bool JDrm::IsCryptoSchemeSupported(const uint8_t uuid[16], const String8 &mimeType) {
359 return drm->isCryptoSchemeSupported(uuid, mimeType);
580 jniThrowException(env, "java/lang/IllegalArgumentException", "uuid is null");
584 Vector<uint8_t> uuid = JByteArrayToVector(env, uuidObj);
586 if (uuid.size() != 16) {
588 "invalid UUID size, expected 16 bytes");
592 sp<JDrm> drm = new JDrm(env, thiz, uuid.array());
622 Vector<uint8_t> uuid = JByteArrayToVector(env, uuidObj);
624 if (uuid.size() != 16) {
628 "invalid UUID size, expected 16 bytes");
637 return JDrm::IsCryptoSchemeSupported(uuid.array(), mimeType);