Searched refs:MixerThread (Results 1 – 6 of 6) sorted by relevance
/frameworks/av/services/audioflinger/ |
D | Threads.h | 856 class MixerThread : public PlaybackThread { 858 MixerThread(const sp<AudioFlinger>& audioFlinger, 864 virtual ~MixerThread(); 1023 class DuplicatingThread : public MixerThread { 1025 DuplicatingThread(const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread, 1030 void addOutputTrack(MixerThread* thread); 1031 void removeOutputTrack(MixerThread* thread);
|
D | Threads.cpp | 3077 status_t AudioFlinger::MixerThread::createAudioPatch_l(const struct audio_patch *patch, in createAudioPatch_l() 3185 status_t AudioFlinger::MixerThread::releaseAudioPatch_l(const audio_patch_handle_t handle) in releaseAudioPatch_l() 3257 AudioFlinger::MixerThread::MixerThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, in MixerThread() function in android::AudioFlinger::MixerThread 3419 AudioFlinger::MixerThread::~MixerThread() in ~MixerThread() 3457 uint32_t AudioFlinger::MixerThread::correctLatency_l(uint32_t latency) const in correctLatency_l() 3467 void AudioFlinger::MixerThread::threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove) in threadLoop_removeTracks() 3472 ssize_t AudioFlinger::MixerThread::threadLoop_write() in threadLoop_write() 3509 void AudioFlinger::MixerThread::threadLoop_standby() in threadLoop_standby() 3576 void AudioFlinger::MixerThread::threadLoop_mix() in threadLoop_mix() 3608 void AudioFlinger::MixerThread::threadLoop_sleepTime() in threadLoop_sleepTime() [all …]
|
D | AudioFlinger.h | 459 class MixerThread; variable 536 MixerThread *checkMixerThread_l(audio_io_handle_t output) const;
|
D | PlaybackTracks.h | 78 friend class MixerThread; variable
|
D | AudioFlinger.cpp | 1823 thread = new MixerThread(this, outputStream, *output, devices, mSystemReady); in openOutput_l() 1882 MixerThread *thread1 = checkMixerThread_l(output1); in openDuplicateOutput() 1883 MixerThread *thread2 = checkMixerThread_l(output2); in openDuplicateOutput() 1924 dupThread->removeOutputTrack((MixerThread *)thread.get()); in closeOutput_nonvirtual() 2381 AudioFlinger::MixerThread *AudioFlinger::checkMixerThread_l(audio_io_handle_t output) const in checkMixerThread_l() 2384 return thread != NULL && thread->type() != ThreadBase::DIRECT ? (MixerThread *) thread : NULL; in checkMixerThread_l()
|
D | PatchPanel.cpp | 225 newPatch->mPlaybackThread = (MixerThread *)thread.get(); in createAudioPatch()
|