Lines Matching full:uuid
46 const uint8_t uuid[16], const void *initData, size_t initSize) {
49 mCrypto = MakeCrypto(uuid, initData, initSize);
86 const uint8_t uuid[16], const void *initData, size_t initSize) {
93 status_t err = crypto->createPlugin(uuid, initData, initSize);
111 bool JCrypto::IsCryptoSchemeSupported(const uint8_t uuid[16]) {
118 return crypto->isCryptoSchemeSupported(uuid);
187 jbyte *uuid = env->GetByteArrayElements(uuidObj, &isCopy);
198 env, thiz, (const uint8_t *)uuid, initData, initDataLength);
207 env->ReleaseByteArrayElements(uuidObj, uuid, 0);
208 uuid = NULL;
239 jbyte *uuid = env->GetByteArrayElements(uuidObj, &isCopy);
241 bool result = JCrypto::IsCryptoSchemeSupported((const uint8_t *)uuid);
243 env->ReleaseByteArrayElements(uuidObj, uuid, 0);
244 uuid = NULL;