Lines Matching defs:AudioCommandThread

78         mTonePlaybackThread = new AudioCommandThread(String8("ApmTone"), this);
80 mAudioCommandThread = new AudioCommandThread(String8("ApmAudio"), this);
82 mOutputCommandThread = new AudioCommandThread(String8("ApmOutput"), this);
433 // ----------- AudioPolicyService::AudioCommandThread implementation ----------
435 AudioPolicyService::AudioCommandThread::AudioCommandThread(String8 name,
443 AudioPolicyService::AudioCommandThread::~AudioCommandThread()
452 void AudioPolicyService::AudioCommandThread::onFirstRef()
457 bool AudioPolicyService::AudioCommandThread::threadLoop()
477 ALOGV("AudioCommandThread() processing start tone %d on stream %d",
486 ALOGV("AudioCommandThread() processing stop tone");
496 ALOGV("AudioCommandThread() processing set volume stream %d, \
504 ALOGV("AudioCommandThread() processing set parameters string %s, io %d",
510 ALOGV("AudioCommandThread() processing set voice volume volume %f",
516 ALOGV("AudioCommandThread() processing stop output %d",
528 ALOGV("AudioCommandThread() processing release output %d",
540 ALOGV("AudioCommandThread() processing create audio patch");
550 ALOGV("AudioCommandThread() processing release audio patch");
559 ALOGV("AudioCommandThread() processing update audio port list");
569 ALOGV("AudioCommandThread() processing update audio patch list");
580 ALOGV("AudioCommandThread() processing set port config");
591 ALOGV("AudioCommandThread() processing dyn policy mix state update %s %d",
604 ALOGV("AudioCommandThread() processing recording configuration update");
616 ALOGW("AudioCommandThread() unknown command %d", command->mCommand);
627 // AudioPolicyService destructor calls AudioCommandThread::exit() which
646 ALOGV("AudioCommandThread() going to sleep");
662 status_t AudioPolicyService::AudioCommandThread::dump(int fd)
668 snprintf(buffer, SIZE, "AudioCommandThread %p Dump\n", this);
700 void AudioPolicyService::AudioCommandThread::startToneCommand(ToneGenerator::tone_type type,
709 ALOGV("AudioCommandThread() adding tone start type %d, stream %d", type, stream);
713 void AudioPolicyService::AudioCommandThread::stopToneCommand()
717 ALOGV("AudioCommandThread() adding tone stop");
721 status_t AudioPolicyService::AudioCommandThread::volumeCommand(audio_stream_type_t stream,
734 ALOGV("AudioCommandThread() adding set volume stream %d, volume %f, output %d",
739 status_t AudioPolicyService::AudioCommandThread::parametersCommand(audio_io_handle_t ioHandle,
750 ALOGV("AudioCommandThread() adding set parameter string %s, io %d ,delay %d",
755 status_t AudioPolicyService::AudioCommandThread::voiceVolumeCommand(float volume, int delayMs)
763 ALOGV("AudioCommandThread() adding set voice volume volume %f", volume);
767 void AudioPolicyService::AudioCommandThread::stopOutputCommand(audio_io_handle_t output,
778 ALOGV("AudioCommandThread() adding stop output %d", output);
782 void AudioPolicyService::AudioCommandThread::releaseOutputCommand(audio_io_handle_t output,
793 ALOGV("AudioCommandThread() adding release output %d", output);
797 status_t AudioPolicyService::AudioCommandThread::createAudioPatchCommand(
811 ALOGV("AudioCommandThread() adding create patch delay %d", delayMs);
819 status_t AudioPolicyService::AudioCommandThread::releaseAudioPatchCommand(audio_patch_handle_t handle,
828 ALOGV("AudioCommandThread() adding release patch delay %d", delayMs);
832 void AudioPolicyService::AudioCommandThread::updateAudioPortListCommand()
836 ALOGV("AudioCommandThread() adding update audio port list");
840 void AudioPolicyService::AudioCommandThread::updateAudioPatchListCommand()
844 ALOGV("AudioCommandThread() adding update audio patch list");
848 status_t AudioPolicyService::AudioCommandThread::setAudioPortConfigCommand(
857 ALOGV("AudioCommandThread() adding set port config delay %d", delayMs);
861 void AudioPolicyService::AudioCommandThread::dynamicPolicyMixStateUpdateCommand(
870 ALOGV("AudioCommandThread() sending dynamic policy mix (id=%s) state update to %d",
875 void AudioPolicyService::AudioCommandThread::recordingConfigurationUpdateCommand(
890 ALOGV("AudioCommandThread() adding recording configuration update event %d, source %d",
895 status_t AudioPolicyService::AudioCommandThread::sendCommand(sp<AudioCommand>& command, int delayMs)
914 void AudioPolicyService::AudioCommandThread::insertCommand_l(sp<AudioCommand>& command, int delayMs)
1078 void AudioPolicyService::AudioCommandThread::exit()
1080 ALOGV("AudioCommandThread::exit");
1091 void AudioPolicyService::AudioCommandThread::AudioCommand::dump(char* buffer, size_t size)