Searched refs:setLoop (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/media/java/android/media/
H A DSoundPool.java422 public final void setLoop(int streamID, int loop) { method in class:SoundPool
423 mImpl.setLoop(streamID, loop);
499 public void setLoop(int streamID, int loop); method in interface:SoundPool.SoundPoolDelegate
648 public native final void setLoop(int streamID, int loop); method in class:SoundPool.SoundPoolImpl
771 public final void setLoop(int streamID, int loop) { } method in class:SoundPool.SoundPoolStub
/frameworks/av/include/media/
H A DSoundPool.h141 void setLoop(int loop);
184 void setLoop(int channelID, int loop);
H A DAudioTrack.h357 * loopCount: number of loops to execute. Calling setLoop() with loopCount == 0 cancels any
364 * setLoop() will return BAD_VALUE. loopCount must be >= -1.
367 status_t setLoop(uint32_t loopStart, uint32_t loopEnd, int loopCount);
440 * setLoop() and setPosition(). After underrun, the position will be at end of buffer.
/frameworks/av/media/libmedia/
H A DSoundPool.cpp393 void SoundPool::setLoop(int channelID, int loop) function in class:android::SoundPool
395 ALOGV("setLoop(%d, %d)", channelID, loop);
399 channel->setLoop(loop);
634 newTrack->setLoop(0, frameCount, loop);
879 void SoundChannel::setLoop(int loop) function in class:android::SoundChannel
885 mAudioTrack->setLoop(0, loopEnd, loop);
H A DAudioTrack.cpp717 status_t AudioTrack::setLoop(uint32_t loopStart, uint32_t loopEnd, int loopCount) function in class:android::AudioTrack
746 mStaticProxy->setLoop(loopStart, loopEnd, loopCount);
829 // If we use setLoop for both purposes we lose the capability to set the position while looping.
830 mStaticProxy->setLoop(position, mFrameCount, 0);
899 mStaticProxy->setLoop(0, mFrameCount, 0);
1876 mStaticProxy->setLoop(bufferPosition, mFrameCount, 0);
H A DAudioTrackShared.cpp497 void StaticAudioTrackClientProxy::setLoop(size_t loopStart, size_t loopEnd, int loopCount) function in class:android::StaticAudioTrackClientProxy
/frameworks/av/include/private/media/
H A DAudioTrackShared.h316 void setLoop(size_t loopStart, size_t loopEnd, int loopCount);
/frameworks/base/media/jni/soundpool/
H A Dandroid_media_SoundPool_SoundPoolImpl.cpp165 ap->setLoop(channelID, loop);
295 { "setLoop",
/frameworks/base/core/jni/
H A Dandroid_media_AudioTrack.cpp880 "Unable to retrieve AudioTrack pointer for setLoop()");
883 return nativeToJavaStatus( lpTrack->setLoop(loopStart, loopEnd, loopCount) );

Completed in 21 milliseconds