Home | History | Annotate | Download | only in jni

Lines Matching full:uuid

47         const uint8_t uuid[16], const void *initData, size_t initSize) {
50 mCrypto = MakeCrypto(uuid, initData, initSize);
82 const uint8_t uuid[16], const void *initData, size_t initSize) {
89 status_t err = crypto->createPlugin(uuid, initData, initSize);
107 bool JCrypto::IsCryptoSchemeSupported(const uint8_t uuid[16]) {
114 return crypto->isCryptoSchemeSupported(uuid);
192 jbyte *uuid = env->GetByteArrayElements(uuidObj, &isCopy);
203 env, thiz, (const uint8_t *)uuid, initData, initDataLength);
212 env->ReleaseByteArrayElements(uuidObj, uuid, 0);
213 uuid = NULL;
244 jbyte *uuid = env->GetByteArrayElements(uuidObj, &isCopy);
246 bool result = JCrypto::IsCryptoSchemeSupported((const uint8_t *)uuid);
248 env->ReleaseByteArrayElements(uuidObj, uuid, 0);
249 uuid = NULL;