Searched refs:state (Results 76 - 100 of 183) sorted by relevance

12345678

/hardware/msm7k/libaudio-qsd8k/
H A DAudioHardware.h181 virtual status_t setMicMute(bool state);
182 virtual status_t getMicMute(bool* state);
217 status_t setMicMute_nosync(bool state);
/hardware/qcom/display/libhwcomposer/
H A Dhwc_video.cpp31 //Cache stats, figure out the state, config overlay
75 ALOGD_IF(VIDEO_DEBUG, "%s: old state = %s", __FUNCTION__,
105 ALOGD_IF(VIDEO_DEBUG, "%s: new chosen state = %s", __FUNCTION__,
268 // Set overlay state
309 ovutils::eOverlayState state = ov.getState(); local
313 switch (state) {
327 switch(state) {
/hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/tests/
H A DG726EncTest.c305 /* This method will wait for the component to get to the state
339 OMX_STATETYPE state = OMX_StateInvalid; local
342 eError = OMX_GetState(pComponent, &state);
349 APP_DPRINT( "%d :: App: Component State Changed To %d\n", __LINE__,state);
356 APP_DPRINT( "%d :: App: Component State Changed To %d\n", __LINE__,state);
459 OMX_STATETYPE state = OMX_StateInvalid; local
1092 eError = OMX_GetState(pComponent, &state);
1100 if((eError == OMX_ErrorNone) && (state != OMX_StateIdle) && (state != OMX_StateInvalid) ){
1102 while((eError == OMX_ErrorNone) && (state !
[all...]
/hardware/invensense/libsensors_iio/software/core/mllite/
H A Dml_math_func.h28 float state[4]; member in struct:__anon135
/hardware/libhardware/include/hardware/
H A Dbt_hh.h87 /** Callback for connection state change.
88 * state will have one of the values from bthh_connection_state_t
90 typedef void (* bthh_connection_state_callback)(bt_bdaddr_t *bd_addr, bthh_connection_state_t state);
H A Daudio_policy.h56 * - keep track of current system state (removable device connections, phone
57 * state, user requests...).
58 * System state changes and user actions are notified to audio policy
69 * current system state.
91 audio_policy_dev_state_t state,
100 /* indicate a change in phone state. Valid phones states are defined
102 void (*set_phone_state)(struct audio_policy *pol, audio_mode_t state);
238 /* dump state */
/hardware/libhardware_legacy/audio/
H A DA2dpAudioInterface.cpp123 status_t A2dpAudioInterface::setMicMute(bool state) argument
125 return mHardwareInterface->setMicMute(state);
128 status_t A2dpAudioInterface::getMicMute(bool* state) argument
130 return mHardwareInterface->getMicMute(state);
H A DAudioHardwareGeneric.cpp154 status_t AudioHardwareGeneric::setMicMute(bool state) argument
156 mMicMute = state;
160 status_t AudioHardwareGeneric::getMicMute(bool* state) argument
162 *state = mMicMute;
H A Daudio_policy_hal.cpp66 audio_policy_dev_state_t state,
72 (AudioSystem::device_connection_state)state,
87 static void ap_set_phone_state(struct audio_policy *pol, audio_mode_t state) argument
91 lap->apm->setPhoneState((int) state);
64 ap_set_device_connection_state(struct audio_policy *pol, audio_devices_t device, audio_policy_dev_state_t state, const char *device_address) argument
/hardware/libhardware_legacy/include/hardware_legacy/
H A DAudioPolicyManagerBase.h76 AudioSystem::device_connection_state state,
80 virtual void setPhoneState(int state);
318 bool mEnabled; // enabled state: CPU load being used or not
327 // phone state, connected devices...
329 // otherwise it is determine by current state
330 // (device connected,phone state, force use, a2dp output...)
332 // 1 speed up process when the state is stable (when starting or stopping an output)
389 // true if given state represents a device in a telephony or VoIP call
390 virtual bool isStateInCall(int state);
399 AudioSystem::device_connection_state state,
[all...]
H A DAudioPolicyInterface.h42 // - keep track of current system state (removable device connections, phone state, user requests...).
43 // System state changes and user actions are notified to audio policy manager with methods of the AudioPolicyInterface.
48 // to close or reconfigure the output depending on other streams using this output and current system state.
70 AudioSystem::device_connection_state state,
75 // indicate a change in phone state. Valid phones states are defined by AudioSystem::audio_mode
76 virtual void setPhoneState(int state) = 0;
162 //dump state
/hardware/qcom/audio/alsa_sound/
H A Daudio_policy_hal.cpp66 audio_policy_dev_state_t state,
72 (AudioSystem::device_connection_state)state,
87 static void ap_set_phone_state(struct audio_policy *pol, audio_mode_t state) argument
90 qap->apm->setPhoneState(state);
64 ap_set_device_connection_state(struct audio_policy *pol, audio_devices_t device, audio_policy_dev_state_t state, const char *device_address) argument
/hardware/qcom/media/mm-core/inc/
H A Dqc_omx_component.h110 // Get Current state information
113 OMX_STATETYPE* state)=0;
/hardware/qcom/media/mm-core/omxcore/inc/
H A Dqc_omx_component.h110 // Get Current state information
113 OMX_STATETYPE* state)=0;
/hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/
H A DmcContainer.h78 /** Container state unregistered. */
97 mcContainerState_t state; member in struct:__anon1783
/hardware/samsung_slsi/exynos5/mobicore/daemon/ClientLib/
H A DSession.cpp52 sessionInfo.state = SESSION_STATE_INITIAL;
/hardware/ti/omap4xxx/camera/OMXCameraAdapter/
H A DOMXCameraAdapter.cpp350 BaseCameraAdapter::AdapterState state; local
351 BaseCameraAdapter::getState(state);
353 if ( ( PREVIEW_ACTIVE & state ) != PREVIEW_ACTIVE )
429 BaseCameraAdapter::AdapterState state; local
430 BaseCameraAdapter::getState(state);
572 ret |= setParametersCapture(params, state);
574 ret |= setParameters3A(params, state);
576 ret |= setParametersAlgo(params, state);
578 ret |= setParametersFocus(params, state);
580 ret |= setParametersFD(params, state);
638 BaseCameraAdapter::AdapterState state; local
2936 BaseCameraAdapter::AdapterState state, nextState; local
[all...]
/hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/tests/
H A DG711DecTest.c303 * automatically starting the state change from
310 OMX_STATETYPE state = OMX_StateInvalid; local
314 eError = pComponent->GetState (hComponent, &state);
333 APP_DPRINT ( "%d :: App: Component State Changed To %d\n", __LINE__,state);
475 OMX_STATETYPE state = OMX_StateInvalid; local
1069 APP_DPRINT("%d :: TestApp: Change state to Idle, pHandle %p\n", __LINE__, pHandle);
1188 error = OMX_GetState(pHandle, &state);
1190 while( (error == OMX_ErrorNone) && (state != OMX_StateIdle) &&
1191 (state != OMX_StateInvalid)) {
1416 if ((state !
[all...]
/hardware/libhardware/modules/audio/
H A Daudio_policy.c47 audio_policy_dev_state_t state,
61 static void ap_set_phone_state(struct audio_policy *pol, audio_mode_t state) argument
45 ap_set_device_connection_state(struct audio_policy *pol, audio_devices_t device, audio_policy_dev_state_t state, const char *device_address) argument
/hardware/msm7k/libaudio/
H A DAudioHardware.cpp259 status_t AudioHardware::setMicMute(bool state) argument
262 return setMicMute_nosync(state);
266 status_t AudioHardware::setMicMute_nosync(bool state) argument
268 if (mMicMute != state) {
269 mMicMute = state;
275 status_t AudioHardware::getMicMute(bool* state) argument
277 *state = mMicMute;
650 // as only one input can be in this state
651 if (mInputs[i]->state() > AudioStreamInMSM72xx::AUDIO_INPUT_CLOSED) {
/hardware/ti/omap4xxx/camera/inc/
H A DBaseCameraAdapter.h57 //Retrieves the current Adapter state
59 //Retrieves the next Adapter state
62 // Rolls the state machine back to INTIALIZED_STATE from the current state
66 //The first two methods will try to switch the adapter state.
68 //call to commitState(). If the state switch fails, then it will
69 //get reset to the previous state via rollbackState().
74 // Retrieves the current Adapter state - for internal use (not locked)
75 virtual status_t getState(AdapterState &state);
76 // Retrieves the next Adapter state
[all...]
/hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/tests/
H A DG729DecTest.c249 /* This method will wait for the component to get to the state
282 OMX_STATETYPE state = OMX_StateInvalid; local
289 eError = pComponent->GetState (hComponent, &state);
388 OMX_STATETYPE state = OMX_StateInvalid; local
1022 error = pComponent->GetState(pHandle, &state);
1063 error = pComponent->GetState(pHandle, &state);
1070 while( (error == OMX_ErrorNone) && ((state != OMX_StateIdle) || (retval>0)) ) {
1107 if (state == OMX_StateExecuting){
1181 if ((state != OMX_StateExecuting) && (pBuf->nFilledLen > 0)){
1188 if (state
[all...]
/hardware/qcom/media/mm-video/vidc/vdec/test/
H A Domx_vdec_test.cpp1709 DEBUG_PRINT("\nComponent %s is in LOADED state\n", vdecCompNames);
2066 OMX_STATETYPE state = OMX_StateInvalid; local
2067 OMX_GetState(dec_handle, &state);
2068 if (state == OMX_StateIdle)
2075 DEBUG_PRINT_ERROR("Error - Decoder is in state %d and trying to call OMX_FreeHandle \n", state);
2226 OMX_STATETYPE state = OMX_StateInvalid; local
2227 OMX_GetState(dec_handle, &state);
2228 if (state == OMX_StateExecuting)
2235 DEBUG_PRINT_ERROR("Error - Decoder is in state
2245 OMX_STATETYPE state = OMX_StateInvalid; local
2458 OMX_STATETYPE state = OMX_StateInvalid; local
[all...]
/hardware/ti/omap4xxx/camera/inc/OMXCameraAdapter/
H A DOMXCameraAdapter.h449 BaseCameraAdapter::AdapterState state);
466 BaseCameraAdapter::AdapterState state);
480 BaseCameraAdapter::AdapterState state);
486 BaseCameraAdapter::AdapterState state);
531 BaseCameraAdapter::AdapterState state);
552 BaseCameraAdapter::AdapterState state);
608 BaseCameraAdapter::AdapterState state);
931 //OMX_Executing state during
/hardware/ti/omap3/omx/audio/src/openmax_il/g729_enc/tests/
H A DG729EncTest.c248 /* This method will wait for the component to get to the state
289 OMX_STATETYPE state = OMX_StateInvalid; local
291 eError = pComponent->GetState (hComponent, &state);
298 APP_DPRINT( "%d :: App: Component State Changed To %d\n", __LINE__,state);
300 APP_DPRINT( "%d :: App: Component State Changed To %d\n", __LINE__,state);
372 OMX_STATETYPE state = OMX_StateInvalid; local
971 eError = OMX_GetState(pHandle, &state);
978 while((eError == OMX_ErrorNone) && (state != OMX_StateIdle)) {
1344 eError = OMX_GetState(pHandle, &state);
1352 printf("%d :: App: The current state o
[all...]

Completed in 288 milliseconds

12345678