Home
last modified time | relevance | path

Searched refs:inputState (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/services/usb/java/com/android/server/usb/
DUsbAlsaDevice.java218 int inputState = (enable && connected) ? 1 : 0; in updateWiredDeviceConnectionState() local
219 if (inputState != mInputState) { in updateWiredDeviceConnectionState()
220 mInputState = inputState; in updateWiredDeviceConnectionState()
222 device, inputState, alsaCardDeviceString, in updateWiredDeviceConnectionState()
/frameworks/av/media/libaaudio/tests/
Dtest_various.cpp77 aaudio_stream_state_t inputState = AAUDIO_STREAM_STATE_UNINITIALIZED; in checkStateTransition() local
94 inputState = AAUDIO_STREAM_STATE_STOPPING; in checkStateTransition()
99 inputState = AAUDIO_STREAM_STATE_PAUSING; in checkStateTransition()
105 if (inputState != AAUDIO_STREAM_STATE_UNINITIALIZED) { in checkStateTransition()
107 inputState, in checkStateTransition()
/frameworks/av/media/libaaudio/examples/utils/
DAAudioSimplePlayer.h226 aaudio_stream_state_t inputState = AAUDIO_STREAM_STATE_PAUSING; in waitUntilPaused() local
228 result = AAudioStream_waitForStateChange(mStream, inputState, in waitUntilPaused()
230 inputState = currentState; in waitUntilPaused()
/frameworks/base/services/core/java/com/android/server/tv/
DTvInputManagerService.java313 TvInputState inputState = userState.inputMap.get(info.getId()); in buildTvInputListLocked() local
314 if (inputState == null) { in buildTvInputListLocked()
315 inputState = new TvInputState(); in buildTvInputListLocked()
317 inputState.info = info; in buildTvInputListLocked()
318 inputMap.put(info.getId(), inputState); in buildTvInputListLocked() local
817 TvInputState inputState = userState.inputMap.get(inputId); in updateTvInputInfoLocked() local
818 if (inputState == null) { in updateTvInputInfoLocked()
822 inputState.info = inputInfo; in updateTvInputInfoLocked()
835 TvInputState inputState = userState.inputMap.get(inputId); in setStateLocked() local
836 ServiceState serviceState = userState.serviceStateMap.get(inputState.info.getComponent()); in setStateLocked()
[all …]
/frameworks/av/media/libaaudio/src/core/
DAAudioAudio.cpp329 aaudio_stream_state_t inputState, in AAudioStream_waitForStateChange() argument
335 return audioStream->waitForStateChange(inputState, nextState, timeoutNanoseconds); in AAudioStream_waitForStateChange()
/frameworks/av/media/libaaudio/include/aaudio/
DAAudio.h1038 aaudio_stream_state_t inputState, aaudio_stream_state_t *nextState,
/frameworks/native/services/inputflinger/
DInputDispatcher.cpp2059 if (!connection->inputState.trackKey(keyEntry, in enqueueDispatchEntryLocked()
2087 && !connection->inputState.isHovering( in enqueueDispatchEntryLocked()
2104 if (!connection->inputState.trackMotion(motionEntry, in enqueueDispatchEntryLocked()
2446 connection->inputState.synthesizeCancelationEvents(currentTime, in synthesizeCancelationEventsForConnectionLocked()
3536 fromConnection->inputState.copyPointerStateTo(toConnection->inputState); in transferTouchFocus()
4251 int32_t fallbackKeyCode = connection->inputState.getFallbackKey(originalKeyCode); in afterKeyEventLockedInterruptible()
4253 connection->inputState.removeFallbackKey(originalKeyCode); in afterKeyEventLockedInterruptible()
4288 connection->inputState.removeFallbackKey(originalKeyCode); in afterKeyEventLockedInterruptible()
4325 connection->inputState.removeFallbackKey(originalKeyCode); in afterKeyEventLockedInterruptible()
4337 connection->inputState.setFallbackKey(originalKeyCode, fallbackKeyCode); in afterKeyEventLockedInterruptible()
[all …]
DInputDispatcher.h878 InputState inputState; variable