Lines Matching refs:AudioCommandThread
73 mTonePlaybackThread = new AudioCommandThread(String8("ApmTone"), this);
75 mAudioCommandThread = new AudioCommandThread(String8("ApmAudio"), this);
77 mOutputCommandThread = new AudioCommandThread(String8("ApmOutput"), this);
666 // ----------- AudioPolicyService::AudioCommandThread implementation ----------
668 AudioPolicyService::AudioCommandThread::AudioCommandThread(String8 name,
676 AudioPolicyService::AudioCommandThread::~AudioCommandThread()
685 void AudioPolicyService::AudioCommandThread::onFirstRef()
690 bool AudioPolicyService::AudioCommandThread::threadLoop()
709 ALOGV("AudioCommandThread() processing start tone %d on stream %d",
719 ALOGV("AudioCommandThread() processing stop tone");
729 ALOGV("AudioCommandThread() processing set volume stream %d, \
742 ALOGV("AudioCommandThread() processing set parameters string %s, io %d",
753 ALOGV("AudioCommandThread() processing set voice volume volume %f",
764 ALOGV("AudioCommandThread() processing stop output %d",
777 ALOGV("AudioCommandThread() processing release output %d",
789 ALOGW("AudioCommandThread() unknown command %d", command->mCommand);
802 ALOGV("AudioCommandThread() going to sleep");
804 ALOGV("AudioCommandThread() waking up");
810 status_t AudioPolicyService::AudioCommandThread::dump(int fd)
816 snprintf(buffer, SIZE, "AudioCommandThread %p Dump\n", this);
844 void AudioPolicyService::AudioCommandThread::startToneCommand(ToneGenerator::tone_type type,
855 ALOGV("AudioCommandThread() adding tone start type %d, stream %d", type, stream);
859 void AudioPolicyService::AudioCommandThread::stopToneCommand()
866 ALOGV("AudioCommandThread() adding tone stop");
870 status_t AudioPolicyService::AudioCommandThread::volumeCommand(audio_stream_type_t stream,
886 ALOGV("AudioCommandThread() adding set volume stream %d, volume %f, output %d",
897 status_t AudioPolicyService::AudioCommandThread::parametersCommand(audio_io_handle_t ioHandle,
911 ALOGV("AudioCommandThread() adding set parameter string %s, io %d ,delay %d",
922 status_t AudioPolicyService::AudioCommandThread::voiceVolumeCommand(float volume, int delayMs)
933 ALOGV("AudioCommandThread() adding set voice volume volume %f", volume);
943 void AudioPolicyService::AudioCommandThread::stopOutputCommand(audio_io_handle_t output,
956 ALOGV("AudioCommandThread() adding stop output %d", output);
960 void AudioPolicyService::AudioCommandThread::releaseOutputCommand(audio_io_handle_t output)
969 ALOGV("AudioCommandThread() adding release output %d", output);
974 void AudioPolicyService::AudioCommandThread::insertCommand_l(AudioCommand *command, int delayMs)
1075 void AudioPolicyService::AudioCommandThread::exit()
1077 ALOGV("AudioCommandThread::exit");
1086 void AudioPolicyService::AudioCommandThread::AudioCommand::dump(char* buffer, size_t size)