Lines Matching refs:thiz

30         IVolume *thiz = (IVolume *) self;
31 interface_lock_exclusive(thiz);
32 SLmillibel oldLevel = thiz->mLevel;
34 thiz->mLevel = level;
35 interface_unlock_exclusive_attributes(thiz, ATTR_GAIN);
37 interface_unlock_exclusive(thiz);
53 IVolume *thiz = (IVolume *) self;
54 interface_lock_shared(thiz);
55 SLmillibel level = thiz->mLevel;
56 interface_unlock_shared(thiz);
84 IVolume *thiz = (IVolume *) self;
86 interface_lock_exclusive(thiz);
87 SLboolean oldMute = thiz->mMute;
89 thiz->mMute = (SLuint8) mute;
90 interface_unlock_exclusive_attributes(thiz, ATTR_GAIN);
92 interface_unlock_exclusive(thiz);
107 IVolume *thiz = (IVolume *) self;
108 interface_lock_shared(thiz);
109 SLboolean mute = thiz->mMute;
110 interface_unlock_shared(thiz);
123 IVolume *thiz = (IVolume *) self;
125 interface_lock_exclusive(thiz);
126 SLboolean oldEnable = thiz->mEnableStereoPosition;
128 thiz->mEnableStereoPosition = (SLuint8) enable;
129 interface_unlock_exclusive_attributes(thiz, ATTR_GAIN);
131 interface_unlock_exclusive(thiz);
146 IVolume *thiz = (IVolume *) self;
147 interface_lock_shared(thiz);
148 SLboolean enable = thiz->mEnableStereoPosition;
149 interface_unlock_shared(thiz);
165 IVolume *thiz = (IVolume *) self;
166 interface_lock_exclusive(thiz);
167 SLpermille oldStereoPosition = thiz->mStereoPosition;
169 thiz->mStereoPosition = stereoPosition;
170 interface_unlock_exclusive_attributes(thiz, ATTR_GAIN);
172 interface_unlock_exclusive(thiz);
188 IVolume *thiz = (IVolume *) self;
189 interface_lock_shared(thiz);
190 SLpermille stereoPosition = thiz->mStereoPosition;
191 interface_unlock_shared(thiz);
214 IVolume *thiz = (IVolume *) self;
215 thiz->mItf = &IVolume_Itf;
216 thiz->mLevel = 0;
217 thiz->mMute = SL_BOOLEAN_FALSE;
218 thiz->mEnableStereoPosition = SL_BOOLEAN_FALSE;
219 thiz->mStereoPosition = 0;