Searched defs:setPhoneState (Results 1 - 11 of 11) sorted by relevance

/frameworks/av/services/audiopolicy/enginedefault/src/
H A DEngine.h73 virtual status_t setPhoneState(audio_mode_t mode) function in class:android::audio_policy::Engine::ManagerInterfaceImpl
75 return mPolicyEngine->setPhoneState(mode);
113 status_t setPhoneState(audio_mode_t mode);
H A DEngine.cpp65 status_t Engine::setPhoneState(audio_mode_t state) function in class:android::audio_policy::Engine
67 ALOGV("setPhoneState() state %d", state);
70 ALOGW("setPhoneState() invalid state %d", state);
75 ALOGW("setPhoneState() setting same state %d", state);
84 ALOGV(" Entering call in setPhoneState()");
88 ALOGV(" Exiting call in setPhoneState()");
/frameworks/av/services/audiopolicy/engineconfigurable/src/
H A DEngine.cpp201 status_t Engine::setPhoneState(audio_mode_t mode) function in class:android::audio_policy::Engine
203 return mPolicyParameterMgr->setPhoneState(mode);
H A DEngine.h69 virtual status_t setPhoneState(audio_mode_t mode) function in class:android::audio_policy::Engine::ManagerInterfaceImpl
71 return mPolicyEngine->setPhoneState(mode);
160 status_t setPhoneState(audio_mode_t mode);
/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/
H A DParameterManagerWrapper.cpp335 status_t ParameterManagerWrapper::setPhoneState(audio_mode_t mode) function in class:android::audio_policy::ParameterManagerWrapper
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyInterfaceImpl.cpp65 status_t AudioPolicyService::setPhoneState(audio_mode_t state) function in class:android::AudioPolicyService
77 ALOGV("setPhoneState()");
79 // acquire lock before calling setMode() so that setMode() + setPhoneState() are an atomic
87 mAudioPolicyManager->setPhoneState(state);
H A DAudioPolicyInterfaceImplLegacy.cpp70 status_t AudioPolicyService::setPhoneState(audio_mode_t state) function in class:android::AudioPolicyService
82 ALOGV("setPhoneState()");
/frameworks/av/media/libmedia/
H A DAudioSystem.cpp754 status_t AudioSystem::setPhoneState(audio_mode_t state) function in class:android::AudioSystem
760 return aps->setPhoneState(state);
H A DIAudioPolicyService.cpp119 virtual status_t setPhoneState(audio_mode_t state) function in class:android::BpAudioPolicyService
843 reply->writeInt32(static_cast <uint32_t>(setPhoneState(
/frameworks/base/media/java/android/media/
H A DAudioSystem.java102 /* modes for setPhoneState, must match AudioSystem.h audio_mode */
681 public static native int setPhoneState(int state); method in class:AudioSystem
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp447 ALOGW_IF(status != NO_ERROR, "setPhoneState() error %d creating TX audio patch",
457 void AudioPolicyManager::setPhoneState(audio_mode_t state) function in class:android::AudioPolicyManager
459 ALOGV("setPhoneState() state %d", state);
463 if (mEngine->setPhoneState(state) != NO_ERROR) {
464 ALOGW("setPhoneState() invalid or same state %d", state);
471 ALOGV("setPhoneState() in call state management: new state is %d", state);
547 ALOGV("setPhoneState() in call state management: new state is %d", state);
5092 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as

Completed in 1071 milliseconds