Lines Matching refs:cryptoInfoObj
1597 NativeCryptoInfo(JNIEnv *env, jobject cryptoInfoObj) in NativeCryptoInfo()
1599 mIvObj{env, (jbyteArray)env->GetObjectField(cryptoInfoObj, gFields.cryptoInfoIVID)},
1600 mKeyObj{env, (jbyteArray)env->GetObjectField(cryptoInfoObj, gFields.cryptoInfoKeyID)} {
1601 mNumSubSamples = env->GetIntField(cryptoInfoObj, gFields.cryptoInfoNumSubSamplesID);
1604 cryptoInfoObj, gFields.cryptoInfoNumBytesOfClearDataID)};
1607 cryptoInfoObj, gFields.cryptoInfoNumBytesOfEncryptedDataID)};
1609 jint jmode = env->GetIntField(cryptoInfoObj, gFields.cryptoInfoModeID);
1622 env, env->GetObjectField(cryptoInfoObj, gFields.cryptoInfoPatternID)};
1745 jobject cryptoInfoObj, in android_media_MediaCodec_queueSecureInputBuffer() argument
1758 env->GetIntField(cryptoInfoObj, gFields.cryptoInfoNumSubSamplesID); in android_media_MediaCodec_queueSecureInputBuffer()
1762 cryptoInfoObj, gFields.cryptoInfoNumBytesOfClearDataID); in android_media_MediaCodec_queueSecureInputBuffer()
1766 cryptoInfoObj, gFields.cryptoInfoNumBytesOfEncryptedDataID); in android_media_MediaCodec_queueSecureInputBuffer()
1769 (jbyteArray)env->GetObjectField(cryptoInfoObj, gFields.cryptoInfoKeyID); in android_media_MediaCodec_queueSecureInputBuffer()
1772 (jbyteArray)env->GetObjectField(cryptoInfoObj, gFields.cryptoInfoIVID); in android_media_MediaCodec_queueSecureInputBuffer()
1774 jint jmode = env->GetIntField(cryptoInfoObj, gFields.cryptoInfoModeID); in android_media_MediaCodec_queueSecureInputBuffer()
1787 jobject patternObj = env->GetObjectField(cryptoInfoObj, gFields.cryptoInfoPatternID); in android_media_MediaCodec_queueSecureInputBuffer()
2135 jint offset, jint size, jobject cryptoInfoObj, in android_media_MediaCodec_native_queueLinearBlock() argument
2182 NativeCryptoInfo cryptoInfo = [env, cryptoInfoObj, size]{ in android_media_MediaCodec_native_queueLinearBlock()
2183 if (cryptoInfoObj == nullptr) { in android_media_MediaCodec_native_queueLinearBlock()
2186 return NativeCryptoInfo{env, cryptoInfoObj}; in android_media_MediaCodec_native_queueLinearBlock()