Home | History | Annotate | Download | only in itf

Lines Matching full:thiz

28     IAndroidEffect *thiz = (IAndroidEffect *) self;
29 if (SL_OBJECTID_AUDIOPLAYER == IObjectToObjectID(thiz->mThis)) {
30 CAudioPlayer *ap = (CAudioPlayer *)thiz->mThis;
32 result = android_genericFx_createEffect(thiz, effectImplementationId, ap->mSessionId);
36 } else if (SL_OBJECTID_OUTPUTMIX == IObjectToObjectID(thiz->mThis)) {
37 result = android_genericFx_createEffect(thiz, effectImplementationId,
54 IAndroidEffect *thiz = (IAndroidEffect *) self;
55 result = android_genericFx_releaseEffect(thiz, effectImplementationId);
66 IAndroidEffect *thiz = (IAndroidEffect *) self;
67 result = android_genericFx_setEnabled(thiz, effectImplementationId, enabled);
78 IAndroidEffect *thiz = (IAndroidEffect *) self;
79 result = android_genericFx_isEnabled(thiz, effectImplementationId, pEnabled);
91 IAndroidEffect *thiz = (IAndroidEffect *) self;
92 result = android_genericFx_sendCommand(thiz, effectImplementationId, command, commandSize,
109 IAndroidEffect *thiz = (IAndroidEffect *) self;
110 thiz->mItf = &IAndroidEffect_Itf;
111 thiz->mEffects = new android::KeyedVector<SLuint32, android::AudioEffect* >();
116 IAndroidEffect *thiz = (IAndroidEffect *) self;
117 if (NULL != thiz->mEffects) {
118 if (!thiz->mEffects->isEmpty()) {
119 for (size_t i = 0 ; i < thiz->mEffects->size() ; i++) {
120 delete thiz->mEffects->valueAt(i);
122 thiz->mEffects->clear();
124 delete thiz->mEffects;
125 thiz->mEffects = NULL;