Home | History | Annotate | Download | only in itf

Lines Matching defs:thiz

35     IAndroidAcousticEchoCancellation *thiz = (IAndroidAcousticEchoCancellation *) self;
36 interface_lock_exclusive(thiz);
37 thiz->mEnabled = (SLboolean) enabled;
38 if (NO_ECHOCANCEL(thiz)) {
41 android::status_t status = thiz->mAECEffect->setEnabled((bool) thiz->mEnabled);
44 interface_unlock_exclusive(thiz);
58 IAndroidAcousticEchoCancellation *thiz = (IAndroidAcousticEchoCancellation *) self;
59 interface_lock_exclusive(thiz);
60 if (NO_ECHOCANCEL(thiz)) {
63 *pEnabled = (SLboolean) thiz->mAECEffect->getEnabled();
66 interface_unlock_exclusive(thiz);
79 IAndroidAcousticEchoCancellation *thiz = (IAndroidAcousticEchoCancellation *) self;
80 thiz->mItf = &IAndroidAcousticEchoCancellation_Itf;
81 thiz->mEnabled = SL_BOOLEAN_FALSE;
82 memset(&thiz->mAECDescriptor, 0, sizeof(effect_descriptor_t));
84 (void) new (&thiz->mAECEffect) android::sp<android::AudioEffect>();
89 IAndroidAcousticEchoCancellation *thiz = (IAndroidAcousticEchoCancellation *) self;
91 thiz->mAECEffect.~sp();
96 IAndroidAcousticEchoCancellation *thiz = (IAndroidAcousticEchoCancellation *) self;
98 &thiz->mAECDescriptor)) {