HomeSort by relevance Sort by last modified time
    Searched refs:inputDevice (Results 1 - 7 of 7) sorted by null

  /frameworks/base/core/java/android/hardware/input/
InputManager.java 36 import android.view.InputDevice;
64 private SparseArray<InputDevice> mInputDevices;
199 public InputDevice getInputDevice(int id) {
208 InputDevice inputDevice = mInputDevices.valueAt(index);
209 if (inputDevice == null) {
211 inputDevice = mIm.getInputDevice(id);
216 mInputDevices.setValueAt(index, inputDevice);
217 return inputDevice;
227 public InputDevice getInputDeviceByDescriptor(String descriptor)
    [all...]
  /packages/apps/Settings/src/com/android/settings/inputmethod/
KeyboardLayoutPickerFragment.java 30 import android.view.InputDevice;
73 InputDevice inputDevice = mIm.getInputDeviceByDescriptor(mInputDeviceDescriptor);
74 if (inputDevice == null) {
78 mInputDeviceId = inputDevice.getId();
KeyboardLayoutDialogFragment.java 37 import android.view.InputDevice;
122 InputDevice inputDevice = mIm.getInputDeviceByDescriptor(mInputDeviceDescriptor);
123 if (inputDevice == null) {
127 mInputDeviceId = inputDevice.getId();
  /frameworks/base/services/java/com/android/server/input/
InputManagerService.java 66 import android.view.InputDevice;
120 private InputDevice[] mInputDevices = new InputDevice[0];
126 private final ArrayList<InputDevice>
127 mTempFullKeyboards = new ArrayList<InputDevice>(); // handler thread only
313 * @param sourceMask The input sources to consult, or {@link InputDevice#SOURCE_ANY} to
326 * @param sourceMask The input sources to consult, or {@link InputDevice#SOURCE_ANY} to
339 * @param sourceMask The input sources to consult, or {@link InputDevice#SOURCE_ANY} to
352 * @param sourceMask The input sources to consult, or {@link InputDevice#SOURCE_ANY} to
496 public InputDevice getInputDevice(int deviceId)
    [all...]
  /hardware/msm7k/libaudio/
AudioHardware.cpp 504 uint32_t inputDevice = (input == NULL) ? 0 : input->devices();
507 if (inputDevice != 0) {
508 ALOGI("do input routing device %x\n", inputDevice);
509 if (inputDevice & AudioSystem::DEVICE_IN_BLUETOOTH_SCO_HEADSET) {
512 } else if (inputDevice & AudioSystem::DEVICE_IN_WIRED_HEADSET) {
533 // if inputDevice == 0, restore output routing
    [all...]
  /hardware/msm7k/libaudio-qsd8k/
AudioHardware.cpp     [all...]
  /device/moto/wingray/libaudio/
AudioHardware.cpp 592 uint32_t inputDevice = (input == NULL) ? 0 : input->devices();
601 uint32_t btScoInDevice = inputDevice & AudioSystem::DEVICE_IN_BLUETOOTH_SCO_HEADSET;
602 uint32_t micInDevice = inputDevice ^ btScoInDevice;
607 ALOGV("%s: inputDevice %x, outputDevices %x", __FUNCTION__,
608 inputDevice, outputDevices);
610 switch (inputDevice) {
649 inputDevice);
    [all...]

Completed in 133 milliseconds