Home
last modified time | relevance | path

Searched refs:MixerThread (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/services/audioflinger/
DThreads.h1319 class MixerThread : public PlaybackThread {
1321 MixerThread(const sp<AudioFlinger>& audioFlinger,
1326 virtual ~MixerThread();
1556 class DuplicatingThread : public MixerThread {
1558 DuplicatingThread(const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread,
1563 void addOutputTrack(MixerThread* thread);
1564 void removeOutputTrack(MixerThread* thread);
DThreads.cpp4284 status_t AudioFlinger::MixerThread::createAudioPatch_l(const struct audio_patch *patch, in createAudioPatch_l()
4392 status_t AudioFlinger::MixerThread::releaseAudioPatch_l(const audio_patch_handle_t handle) in releaseAudioPatch_l()
4450 AudioFlinger::MixerThread::MixerThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, in MixerThread() function in android::AudioFlinger::MixerThread
4633 AudioFlinger::MixerThread::~MixerThread() in ~MixerThread()
4671 uint32_t AudioFlinger::MixerThread::correctLatency_l(uint32_t latency) const in correctLatency_l()
4680 ssize_t AudioFlinger::MixerThread::threadLoop_write() in threadLoop_write()
4723 void AudioFlinger::MixerThread::threadLoop_standby() in threadLoop_standby()
4806 void AudioFlinger::MixerThread::threadLoop_mix() in threadLoop_mix()
4824 void AudioFlinger::MixerThread::threadLoop_sleepTime() in threadLoop_sleepTime()
4875 AudioFlinger::PlaybackThread::mixer_state AudioFlinger::MixerThread::prepareTracks_l( in prepareTracks_l()
[all …]
DPlaybackTracks.h191 friend class MixerThread; variable
DAudioFlinger.h558 class MixerThread; variable
721 MixerThread *checkMixerThread_l(audio_io_handle_t output) const;
DAudioFlinger.cpp2578 thread = new MixerThread(this, outputStream, *output, mSystemReady); in openOutput_l()
2667 MixerThread *thread1 = checkMixerThread_l(output1); in openDuplicateOutput()
2668 MixerThread *thread2 = checkMixerThread_l(output2); in openDuplicateOutput()
2709 dupThread->removeOutputTrack((MixerThread *)playbackThread.get()); in closeOutput_nonvirtual()
3257 AudioFlinger::MixerThread *AudioFlinger::checkMixerThread_l(audio_io_handle_t output) const in checkMixerThread_l()
3260 return thread != NULL && thread->type() != ThreadBase::DIRECT ? (MixerThread *) thread : NULL; in checkMixerThread_l()