Lines Matching refs:playItf
144 SLPlayItf playItf;
206 res = (*player)->GetInterface(player, SL_IID_PLAY, (void*)&playItf);
224 res = (*playItf)->SetMarkerPosition(playItf, 2000);
226 res = (*playItf)->SetPositionUpdatePeriod(playItf, 500);
228 res = (*playItf)->SetCallbackEventsMask(playItf,
231 res = (*playItf)->RegisterCallback(playItf, PlayEventCallback, NULL);
241 res = (*playItf)->SetPlayState( playItf, SL_PLAYSTATE_PAUSED ); CheckErr(res);
260 res = (*playItf)->GetDuration(playItf, &durationInMsec); CheckErr(res);
269 res = (*playItf)->SetPlayState( playItf, SL_PLAYSTATE_PLAYING ); CheckErr(res);
275 res = (*playItf)->GetPosition(playItf, &posInMsec); CheckErr(res);
301 res = (*playItf)->SetPlayState(playItf, SL_PLAYSTATE_STOPPED); CheckErr(res);