Lines Matching refs:thiz

29         IPrefetchStatus *thiz = (IPrefetchStatus *) self;
30 interface_lock_shared(thiz);
31 SLuint32 status = thiz->mStatus;
32 interface_unlock_shared(thiz);
48 IPrefetchStatus *thiz = (IPrefetchStatus *) self;
49 interface_lock_shared(thiz);
50 SLpermille level = thiz->mLevel;
51 interface_unlock_shared(thiz);
65 IPrefetchStatus *thiz = (IPrefetchStatus *) self;
66 interface_lock_exclusive(thiz);
67 thiz->mCallback = callback;
68 thiz->mContext = pContext;
69 interface_unlock_exclusive(thiz);
84 IPrefetchStatus *thiz = (IPrefetchStatus *) self;
85 interface_lock_exclusive(thiz);
86 thiz->mCallbackEventsMask = eventFlags;
87 interface_unlock_exclusive(thiz);
104 IPrefetchStatus *thiz = (IPrefetchStatus *) self;
105 interface_lock_shared(thiz);
106 SLuint32 callbackEventsMask = thiz->mCallbackEventsMask;
107 interface_unlock_shared(thiz);
123 IPrefetchStatus *thiz = (IPrefetchStatus *) self;
124 interface_lock_exclusive(thiz);
125 thiz->mFillUpdatePeriod = period;
127 if (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) {
128 CAudioPlayer *ap = (CAudioPlayer *) thiz->mThis;
132 interface_unlock_exclusive(thiz);
147 IPrefetchStatus *thiz = (IPrefetchStatus *) self;
148 interface_lock_shared(thiz);
149 SLpermille fillUpdatePeriod = thiz->mFillUpdatePeriod;
150 interface_unlock_shared(thiz);
171 IPrefetchStatus *thiz = (IPrefetchStatus *) self;
172 thiz->mItf = &IPrefetchStatus_Itf;
173 thiz->mStatus = SL_PREFETCHSTATUS_UNDERFLOW;
174 thiz->mLevel = 0;
175 thiz->mCallback = NULL;
176 thiz->mContext = NULL;
177 thiz->mCallbackEventsMask = 0;
178 thiz->mFillUpdatePeriod = 100;
180 thiz->mDeferredPrefetchCallback = NULL;
181 thiz->mDeferredPrefetchContext = NULL;
182 thiz->mDeferredPrefetchEvents = SL_PREFETCHEVENT_NONE;