Lines Matching defs:uniqueId

167     jint uniqueId = event.getUniqueId();
171 ALOGV("JNIOnInfoListener::onInfo => %d | %d | %s", uniqueId, type, event.getMessage().string());
176 mObject, uniqueId, type, message);
213 int uniqueId = 0;
214 sp<DrmManagerClientImpl> drmManager = DrmManagerClientImpl::create(&uniqueId, false);
215 drmManager->addClient(uniqueId);
219 return static_cast<jint>(uniqueId);
223 JNIEnv* env, jobject thiz, jint uniqueId, jobject weak_thiz) {
228 getDrmManagerClientImpl(env, thiz)->setOnInfoListener(uniqueId, listener);
234 JNIEnv* env, jobject thiz, jint uniqueId) {
236 getDrmManagerClientImpl(env, thiz)->remove(uniqueId);
237 getDrmManagerClientImpl(env, thiz)->setOnInfoListener(uniqueId, NULL);
241 oldClient->setOnInfoListener(uniqueId, NULL);
242 oldClient->removeClient(uniqueId);
248 JNIEnv* env, jobject thiz, jint uniqueId, jstring jpath, jint usage) {
253 = getDrmManagerClientImpl(env, thiz)->getConstraints(uniqueId, &pathString, usage);
297 JNIEnv* env, jobject thiz, jint uniqueId, jstring jpath) {
301 getDrmManagerClientImpl(env, thiz)->getMetadata(uniqueId, &pathString);
337 JNIEnv* env, jobject thiz, jint uniqueId) {
342 getDrmManagerClientImpl(env, thiz)->getAllSupportInfo(uniqueId, &length, &drmSupportInfoArray);
384 JNIEnv* env, jobject thiz, jint uniqueId, jstring engineFilePath) {
387 // ->installDrmEngine(uniqueId, Utility::getStringValue(env, engineFilePath));
392 JNIEnv* env, jobject thiz, jint uniqueId,
405 ->saveRights(uniqueId, rights, Utility::getStringValue(env, rightsPath),
415 JNIEnv* env, jobject thiz, jint uniqueId, jstring path, jstring mimeType) {
419 ->canHandle(uniqueId, Utility::getStringValue(env, path),
426 JNIEnv* env, jobject thiz, jint uniqueId, jobject drmInfoObject) {
467 = getDrmManagerClientImpl(env, thiz)->processDrmInfo(uniqueId, &drmInfo);
509 JNIEnv* env, jobject thiz, jint uniqueId, jobject drmInfoRequest) {
540 DrmInfo* pDrmInfo = getDrmManagerClientImpl(env, thiz)->acquireDrmInfo(uniqueId, &drmInfoReq);
581 JNIEnv* env, jobject thiz, jint uniqueId, jstring path, jstring mimeType) {
585 ->getDrmObjectType(uniqueId, Utility::getStringValue(env, path),
592 JNIEnv* env, jobject thiz, jint uniqueId, jstring path, jobject fileDescriptor) {
601 ->getOriginalMimeType(uniqueId,
608 JNIEnv* env, jobject thiz, jint uniqueId, jstring path, int action) {
612 ->checkRightsStatus(uniqueId, Utility::getStringValue(env, path), action);
618 JNIEnv* env, jobject thiz, jint uniqueId, jstring path) {
621 ->removeRights(uniqueId, Utility::getStringValue(env, path)));
625 JNIEnv* env, jobject thiz, jint uniqueId) {
628 ->removeAllRights(uniqueId));
632 JNIEnv* env, jobject thiz, jint uniqueId, jstring mimeType) {
636 ->openConvertSession(uniqueId, Utility::getStringValue(env, mimeType));
673 JNIEnv* env, jobject thiz, jint uniqueId, jint convertId, jbyteArray inputData) {
681 = getDrmManagerClientImpl(env, thiz)->convertData(uniqueId, convertId, &buffer);
692 JNIEnv* env, jobject thiz, jint uniqueId, jint convertId) {
697 = getDrmManagerClientImpl(env, thiz)->closeConvertSession(uniqueId, convertId);