Lines Matching refs:mPrefetchStatus

80                 mp->mPrefetchStatus.mLevel = 0;  in player_handleMediaPlayerEventNotifications()
81 mp->mPrefetchStatus.mStatus = SL_PREFETCHSTATUS_UNDERFLOW; in player_handleMediaPlayerEventNotifications()
82 if (!(~mp->mPrefetchStatus.mCallbackEventsMask & in player_handleMediaPlayerEventNotifications()
84 callback = mp->mPrefetchStatus.mCallback; in player_handleMediaPlayerEventNotifications()
85 callbackPContext = mp->mPrefetchStatus.mContext; in player_handleMediaPlayerEventNotifications()
95 (*callback)(&mp->mPrefetchStatus.mItf, callbackPContext, events); in player_handleMediaPlayerEventNotifications()
205 interface_lock_exclusive(&mp->mPrefetchStatus); in player_handleMediaPlayerEventNotifications()
206 if (mp->mPrefetchStatus.mCallbackEventsMask & SL_PREFETCHEVENT_FILLLEVELCHANGE) { in player_handleMediaPlayerEventNotifications()
207 callback = mp->mPrefetchStatus.mCallback; in player_handleMediaPlayerEventNotifications()
208 callbackPContext = mp->mPrefetchStatus.mContext; in player_handleMediaPlayerEventNotifications()
210 mp->mPrefetchStatus.mLevel = (SLpermille)data1; in player_handleMediaPlayerEventNotifications()
211 interface_unlock_exclusive(&mp->mPrefetchStatus); in player_handleMediaPlayerEventNotifications()
215 (*callback)(&mp->mPrefetchStatus.mItf, callbackPContext, in player_handleMediaPlayerEventNotifications()
231 if (mp->mPrefetchStatus.mCallbackEventsMask & SL_PREFETCHEVENT_STATUSCHANGE) { in player_handleMediaPlayerEventNotifications()
232 callback = mp->mPrefetchStatus.mCallback; in player_handleMediaPlayerEventNotifications()
233 callbackPContext = mp->mPrefetchStatus.mContext; in player_handleMediaPlayerEventNotifications()
236 mp->mPrefetchStatus.mStatus = SL_PREFETCHSTATUS_SUFFICIENTDATA; in player_handleMediaPlayerEventNotifications()
238 mp->mPrefetchStatus.mStatus = SL_PREFETCHSTATUS_UNDERFLOW; in player_handleMediaPlayerEventNotifications()
244 (*callback)(&mp->mPrefetchStatus.mItf, callbackPContext, SL_PREFETCHEVENT_STATUSCHANGE); in player_handleMediaPlayerEventNotifications()
272 mp->mPrefetchStatus.mLevel = 0; in player_handleMediaPlayerEventNotifications()
273 mp->mPrefetchStatus.mStatus = SL_PREFETCHSTATUS_UNDERFLOW; in player_handleMediaPlayerEventNotifications()
274 if (!(~mp->mPrefetchStatus.mCallbackEventsMask & in player_handleMediaPlayerEventNotifications()
276 callback = mp->mPrefetchStatus.mCallback; in player_handleMediaPlayerEventNotifications()
277 callbackPContext = mp->mPrefetchStatus.mContext; in player_handleMediaPlayerEventNotifications()
287 (*callback)(&mp->mPrefetchStatus.mItf, callbackPContext, in player_handleMediaPlayerEventNotifications()