Lines Matching refs:playItf
139 SLPlayItf playItf; in TestPlayUri() local
196 res = (*player)->GetInterface(player, SL_IID_PLAY, (void*)&playItf); in TestPlayUri()
214 res = (*playItf)->SetMarkerPosition(playItf, 2000); in TestPlayUri()
216 res = (*playItf)->SetPositionUpdatePeriod(playItf, 500); in TestPlayUri()
218 res = (*playItf)->SetCallbackEventsMask(playItf, in TestPlayUri()
221 res = (*playItf)->RegisterCallback(playItf, PlayEventCallback, NULL); in TestPlayUri()
226 res = (*playItf)->GetDuration(playItf, &durationInMsec); in TestPlayUri()
242 res = (*playItf)->SetPlayState( playItf, SL_PLAYSTATE_PAUSED ); in TestPlayUri()
264 res = (*playItf)->GetDuration(playItf, &durationInMsec); in TestPlayUri()
273 res = (*playItf)->SetPlayState( playItf, SL_PLAYSTATE_PLAYING ); in TestPlayUri()
307 res = (*playItf)->SetPlayState(playItf, SL_PLAYSTATE_STOPPED); in TestPlayUri()