Home | History | Annotate | Download | only in itf

Lines Matching refs:thiz

32     IAndroidNoiseSuppression *thiz = (IAndroidNoiseSuppression *) self;
33 interface_lock_exclusive(thiz);
34 thiz->mEnabled = (SLboolean) enabled;
35 if (NO_NOISESUPPRESS(thiz)) {
38 android::status_t status = thiz->mNSEffect->setEnabled((bool) thiz->mEnabled);
41 interface_unlock_exclusive(thiz);
53 IAndroidNoiseSuppression *thiz = (IAndroidNoiseSuppression *) self;
54 interface_lock_exclusive(thiz);
55 if (NO_NOISESUPPRESS(thiz)) {
58 *pEnabled = (SLboolean) thiz->mNSEffect->getEnabled();
61 interface_unlock_exclusive(thiz);
73 IAndroidNoiseSuppression *thiz = (IAndroidNoiseSuppression *) self;
74 thiz->mItf = &IAndroidNoiseSuppression_Itf;
75 thiz->mEnabled = SL_BOOLEAN_FALSE;
76 memset(&thiz->mNSDescriptor, 0, sizeof(effect_descriptor_t));
78 (void) new (&thiz->mNSEffect) android::sp<android::AudioEffect>();
83 IAndroidNoiseSuppression *thiz = (IAndroidNoiseSuppression *) self;
85 thiz->mNSEffect.~sp();
90 IAndroidNoiseSuppression *thiz = (IAndroidNoiseSuppression *) self;
91 if (!android_fx_initEffectDescriptor(SL_IID_ANDROIDNOISESUPPRESSION, &thiz->mNSDescriptor)) {