Lines Matching refs:thiz

26     I3DSource *thiz = (I3DSource *) self;
27 interface_lock_poke(thiz);
28 thiz->mHeadRelative = SL_BOOLEAN_FALSE != headRelative; // normalize
29 interface_unlock_poke(thiz);
43 I3DSource *thiz = (I3DSource *) self;
44 interface_lock_peek(thiz);
45 SLboolean headRelative = thiz->mHeadRelative;
46 interface_unlock_peek(thiz);
64 I3DSource *thiz = (I3DSource *) self;
65 interface_lock_exclusive(thiz);
66 thiz->mMinDistance = minDistance;
67 thiz->mMaxDistance = maxDistance;
68 interface_unlock_exclusive(thiz);
84 I3DSource *thiz = (I3DSource *) self; interface_lock_shared(thiz);
85 SLmillimeter minDistance = thiz->mMinDistance;
86 SLmillimeter maxDistance = thiz->mMaxDistance;
87 interface_unlock_shared(thiz);
101 I3DSource *thiz = (I3DSource *) self;
102 interface_lock_poke(thiz);
103 thiz->mRolloffMaxDistanceMute = SL_BOOLEAN_FALSE != mute; // normalize
104 interface_unlock_poke(thiz);
118 I3DSource *thiz = (I3DSource *) self;
119 interface_lock_peek(thiz);
120 SLboolean mute = thiz->mRolloffMaxDistanceMute;
121 interface_unlock_peek(thiz);
137 I3DSource *thiz = (I3DSource *) self;
138 interface_lock_poke(thiz);
139 thiz->mRolloffFactor = rolloffFactor;
140 interface_unlock_poke(thiz);
152 I3DSource *thiz = (I3DSource *) self;
153 interface_lock_peek(thiz);
154 SLpermille rolloffFactor = thiz->mRolloffFactor;
155 interface_unlock_peek(thiz);
170 I3DSource *thiz = (I3DSource *) self;
171 interface_lock_poke(thiz);
172 thiz->mRoomRolloffFactor = roomRolloffFactor;
173 interface_unlock_poke(thiz);
185 I3DSource *thiz = (I3DSource *) self;
186 interface_lock_peek(thiz);
187 SLpermille roomRolloffFactor = thiz->mRoomRolloffFactor;
188 interface_unlock_peek(thiz);
204 I3DSource *thiz = (I3DSource *) self;
205 interface_lock_poke(thiz);
206 thiz->mDistanceModel = model;
207 interface_unlock_poke(thiz);
224 I3DSource *thiz = (I3DSource *) self;
225 interface_lock_peek(thiz);
226 SLuint8 model = thiz->mDistanceModel;
227 interface_unlock_peek(thiz);
245 I3DSource *thiz = (I3DSource *) self;
246 interface_lock_exclusive(thiz);
247 thiz->mConeInnerAngle = innerAngle;
248 thiz->mConeOuterAngle = outerAngle;
249 thiz->mConeOuterLevel = outerLevel;
250 interface_unlock_exclusive(thiz);
266 I3DSource *thiz = (I3DSource *) self;
267 interface_lock_shared(thiz);
268 SLmillidegree innerAngle = thiz->mConeInnerAngle;
269 SLmillidegree outerAngle = thiz->mConeOuterAngle;
270 SLmillibel outerLevel = thiz->mConeOuterLevel;
271 interface_unlock_shared(thiz);
301 I3DSource *thiz = (I3DSource *) self;
302 thiz->mItf = &I3DSource_Itf;
303 thiz->mHeadRelative = SL_BOOLEAN_FALSE;
304 thiz->mRolloffMaxDistanceMute = SL_BOOLEAN_FALSE;
305 thiz->mMaxDistance = SL_MILLIMETER_MAX;
306 thiz->mMinDistance = 1000;
307 thiz->mConeInnerAngle = 360000;
308 thiz->mConeOuterAngle = 360000;
309 thiz->mConeOuterLevel = 0;
310 thiz->mRolloffFactor = 1000;
311 thiz->mRoomRolloffFactor = 0;
312 thiz->mDistanceModel = SL_ROLLOFFMODEL_EXPONENTIAL;