Home | History | Annotate | Download | only in libmedia

Lines Matching refs:SoundPoolThread

18 #define LOG_TAG "SoundPoolThread"
21 #include "SoundPoolThread.h"
25 void SoundPoolThread::write(SoundPoolMsg msg) {
38 const SoundPoolMsg SoundPoolThread::read() {
49 void SoundPoolThread::quit() {
61 SoundPoolThread::SoundPoolThread(SoundPool* soundPool) :
65 if (createThreadEtc(beginThread, this, "SoundPoolThread")) {
70 SoundPoolThread::~SoundPoolThread()
75 int SoundPoolThread::beginThread(void* arg) {
77 SoundPoolThread* soundPoolThread = (SoundPoolThread*)arg;
78 return soundPoolThread->run();
81 int SoundPoolThread::run() {
101 void SoundPoolThread::loadSample(int sampleID) {
105 void SoundPoolThread::doLoadSample(int sampleID) {