Home | History | Annotate | Download | only in service

Lines Matching refs:delayMs

209                                                 int delayMs)
211 return mAudioCommandThread->createAudioPatchCommand(patch, handle, delayMs);
215 int delayMs)
217 return mAudioCommandThread->releaseAudioPatchCommand(handle, delayMs);
221 int delayMs)
223 return mAudioCommandThread->setAudioPortConfigCommand(config, delayMs);
661 int delayMs)
673 return sendCommand(command, delayMs);
678 int delayMs)
688 keyValuePairs, ioHandle, delayMs);
689 return sendCommand(command, delayMs);
692 status_t AudioPolicyService::AudioCommandThread::voiceVolumeCommand(float volume, int delayMs)
701 return sendCommand(command, delayMs);
737 int delayMs)
748 ALOGV("AudioCommandThread() adding create patch delay %d", delayMs);
749 status = sendCommand(command, delayMs);
757 int delayMs)
765 ALOGV("AudioCommandThread() adding release patch delay %d", delayMs);
766 return sendCommand(command, delayMs);
786 const struct audio_port_config *config, int delayMs)
794 ALOGV("AudioCommandThread() adding set port config delay %d", delayMs);
795 return sendCommand(command, delayMs);
831 status_t AudioPolicyService::AudioCommandThread::sendCommand(sp<AudioCommand>& command, int delayMs)
835 insertCommand_l(command, delayMs);
840 nsecs_t timeOutNs = kAudioCommandTimeoutNs + milliseconds(delayMs);
850 void AudioPolicyService::AudioCommandThread::insertCommand_l(sp<AudioCommand>& command, int delayMs)
854 command->mTime = systemTime() + milliseconds(delayMs);
909 // force delayMs to non 0 so that code below does not request to wait for
911 delayMs = 1;
923 // force delayMs to non 0 so that code below does not request to wait for
925 delayMs = 1;
935 // force delayMs to non 0 so that code below does not request to wait for
937 delayMs = 1;
980 // force delayMs to non 0 so that code below does not request to wait for
982 delayMs = 1;
1016 if (delayMs != 0 && command->mCommand != CREATE_AUDIO_PATCH) {
1052 int delayMs)
1055 delayMs);
1061 int delayMs)
1064 output, delayMs);
1088 int AudioPolicyService::setVoiceVolume(float volume, int delayMs)
1090 return (int)mAudioCommandThread->voiceVolumeCommand(volume, delayMs);