Home | History | Annotate | Download | only in libopensles

Lines Matching defs:this

5  * you may not use this file except in compliance with the License.
29 IAndroidConfiguration *this = (IAndroidConfiguration *) self;
31 interface_lock_exclusive(this);
34 if (SL_OBJECTID_AUDIORECORDER == IObjectToObjectID((this)->mThis)) {
37 result = android_audioRecorder_setConfig((CAudioRecorder *) this->mThis, configKey,
39 } else if (SL_OBJECTID_AUDIOPLAYER == IObjectToObjectID((this)->mThis)) {
42 result = android_audioPlayer_setConfig((CAudioPlayer *) this->mThis, configKey,
48 interface_unlock_exclusive(this);
66 IAndroidConfiguration *this = (IAndroidConfiguration *) self;
68 interface_lock_exclusive(this);
71 if (SL_OBJECTID_AUDIORECORDER == IObjectToObjectID((this)->mThis)) {
72 result = android_audioRecorder_getConfig((CAudioRecorder *) this->mThis, configKey,
74 } else if (SL_OBJECTID_AUDIOPLAYER == IObjectToObjectID((this)->mThis)) {
75 result = android_audioPlayer_getConfig((CAudioPlayer *) this->mThis, configKey,
81 interface_unlock_exclusive(this);
95 IAndroidConfiguration *this = (IAndroidConfiguration *) self;
96 this->mItf = &IAndroidConfiguration_Itf;