Home | History | Annotate | Download | only in jni

Lines Matching refs:uuid

271         JNIEnv *env, jobject thiz, const uint8_t uuid[16]) {
273 mDrm = MakeDrm(uuid);
312 sp<IDrm> JDrm::MakeDrm(const uint8_t uuid[16]) {
319 status_t err = drm->createPlugin(uuid);
348 bool JDrm::IsCryptoSchemeSupported(const uint8_t uuid[16]) {
355 return drm->isCryptoSchemeSupported(uuid);
576 jniThrowException(env, "java/lang/IllegalArgumentException", "uuid is null");
580 Vector<uint8_t> uuid = JByteArrayToVector(env, uuidObj);
582 if (uuid.size() != 16) {
584 "invalid UUID size, expected 16 bytes");
588 sp<JDrm> drm = new JDrm(env, thiz, uuid.array());
618 Vector<uint8_t> uuid = JByteArrayToVector(env, uuidObj);
620 if (uuid.size() != 16) {
624 "invalid UUID size, expected 16 bytes");
628 return JDrm::IsCryptoSchemeSupported(uuid.array());