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

/frameworks/base/media/jni/soundpool/
H A DSoundPool.h133 void setLoop(int loop);
177 void setLoop(int channelID, int loop);
H A DSoundPool.cpp412 void SoundPool::setLoop(int channelID, int loop) function in class:android::SoundPool
414 ALOGV("setLoop(%d, %d)", channelID, loop);
418 channel->setLoop(loop);
802 newTrack->setLoop(0, frameCount, loop);
1045 void SoundChannel::setLoop(int loop) function in class:android::SoundChannel
1051 mAudioTrack->setLoop(0, loopEnd, loop);
H A Dandroid_media_SoundPool.cpp151 ap->setLoop(channelID, loop);
277 { "setLoop",
/frameworks/base/media/java/android/media/
H A DSoundPool.java448 public native final void setLoop(int streamID, int loop); method in class:SoundPool
/frameworks/av/include/media/
H A DAudioTrack.h464 * loopCount: number of loops to execute. Calling setLoop() with loopCount == 0 cancels any
471 * setLoop() will return BAD_VALUE. loopCount must be >= -1.
474 status_t setLoop(uint32_t loopStart, uint32_t loopEnd, int loopCount);
547 * setLoop() and setPosition(). After underrun, the position will be at end of buffer.
1012 int32_t mLoopCount; // last setLoop loopCount; zero means disabled
1013 uint32_t mLoopStart; // last setLoop loopStart
1014 uint32_t mLoopEnd; // last setLoop loopEnd
/frameworks/av/include/private/media/
H A DAudioTrackShared.h415 // setLoop(), setBufferPosition(), and setBufferPositionAndLoop() set the
422 // setBufferPositionAndLoop() is equivalent to calling, in order, setLoop() and
428 void setLoop(size_t loopStart, size_t loopEnd, int loopCount);
/frameworks/av/media/libmedia/
H A DAudioTrackShared.cpp538 void StaticAudioTrackClientProxy::setLoop(size_t loopStart, size_t loopEnd, int loopCount) function in class:android::StaticAudioTrackClientProxy
587 setLoop(loopStart, loopEnd, loopCount);
H A DAudioTrack.cpp956 status_t AudioTrack::setLoop(uint32_t loopStart, uint32_t loopEnd, int loopCount) function in class:android::AudioTrack
988 mStaticProxy->setLoop(loopStart, loopEnd, loopCount);
1163 mStaticProxy->setLoop(mLoopStart, mLoopEnd, mLoopCount);
/frameworks/base/core/jni/
H A Dandroid_media_AudioTrack.cpp1002 "Unable to retrieve AudioTrack pointer for setLoop()");
1005 return nativeToJavaStatus( lpTrack->setLoop(loopStart, loopEnd, loopCount) );

Completed in 187 milliseconds