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