Lines Matching refs:thiz

29         IVolume *thiz = (IVolume *) self;
30 interface_lock_exclusive(thiz);
31 SLmillibel oldLevel = thiz->mLevel;
33 thiz->mLevel = level;
34 interface_unlock_exclusive_attributes(thiz, ATTR_GAIN);
36 interface_unlock_exclusive(thiz);
52 IVolume *thiz = (IVolume *) self;
53 interface_lock_shared(thiz);
54 SLmillibel level = thiz->mLevel;
55 interface_unlock_shared(thiz);
83 IVolume *thiz = (IVolume *) self;
85 interface_lock_exclusive(thiz);
86 SLboolean oldMute = thiz->mMute;
88 thiz->mMute = (SLuint8) mute;
89 interface_unlock_exclusive_attributes(thiz, ATTR_GAIN);
91 interface_unlock_exclusive(thiz);
106 IVolume *thiz = (IVolume *) self;
107 interface_lock_shared(thiz);
108 SLboolean mute = thiz->mMute;
109 interface_unlock_shared(thiz);
122 IVolume *thiz = (IVolume *) self;
124 interface_lock_exclusive(thiz);
125 SLboolean oldEnable = thiz->mEnableStereoPosition;
127 thiz->mEnableStereoPosition = (SLuint8) enable;
128 interface_unlock_exclusive_attributes(thiz, ATTR_GAIN);
130 interface_unlock_exclusive(thiz);
145 IVolume *thiz = (IVolume *) self;
146 interface_lock_shared(thiz);
147 SLboolean enable = thiz->mEnableStereoPosition;
148 interface_unlock_shared(thiz);
164 IVolume *thiz = (IVolume *) self;
165 interface_lock_exclusive(thiz);
166 SLpermille oldStereoPosition = thiz->mStereoPosition;
168 thiz->mStereoPosition = stereoPosition;
169 interface_unlock_exclusive_attributes(thiz, ATTR_GAIN);
171 interface_unlock_exclusive(thiz);
187 IVolume *thiz = (IVolume *) self;
188 interface_lock_shared(thiz);
189 SLpermille stereoPosition = thiz->mStereoPosition;
190 interface_unlock_shared(thiz);
213 IVolume *thiz = (IVolume *) self;
214 thiz->mItf = &IVolume_Itf;
215 thiz->mLevel = 0;
216 thiz->mMute = SL_BOOLEAN_FALSE;
217 thiz->mEnableStereoPosition = SL_BOOLEAN_FALSE;
218 thiz->mStereoPosition = 0;