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

  /frameworks/base/core/java/android/view/
InputEvent.java 27 protected int mDeviceId;
49 return mDeviceId;
58 return InputDevice.getDevice(mDeviceId);
87 mDeviceId = in.readInt();
93 out.writeInt(mDeviceId);
KeyEvent.java 690 mDeviceId = deviceId;
720 mDeviceId = deviceId;
    [all...]
MotionEvent.java 427 ev.mDeviceId = deviceId;
489 ev.mDeviceId = deviceId;
586 ev.mDeviceId = o.mDeviceId;
618 ev.mDeviceId = o.mDeviceId;
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyKeyEvent.java 33 private int mDeviceId = -1;
59 mDeviceId = device;
93 if (mDeviceId < 0) {
98 mKeyCode, mRepeatCount, mMetaState, mDeviceId, mScancode);
MonkeyMotionEvent.java 41 private int mDeviceId = -1;
71 mDeviceId = deviceId;
116 if (mDeviceId < 0) {
124 mXPrecision, mYPrecision, mDeviceId, mEdgeFlags);
  /frameworks/base/core/jni/
android_view_KeyEvent.cpp 35 jfieldID mDeviceId;
66 jint deviceId = env->GetIntField(eventObj, gKeyEventClassInfo.mDeviceId);
116 GET_FIELD_ID(gKeyEventClassInfo.mDeviceId, gKeyEventClassInfo.clazz,
117 "mDeviceId", "I");
android_view_MotionEvent.cpp 39 jfieldID mDeviceId;
75 env->SetIntField(eventObj, gMotionEventClassInfo.mDeviceId,
158 jint deviceId = env->GetIntField(eventObj, gMotionEventClassInfo.mDeviceId);
268 GET_FIELD_ID(gMotionEventClassInfo.mDeviceId, gMotionEventClassInfo.clazz,
269 "mDeviceId", "I");
  /frameworks/base/libs/ui/
Input.cpp 17 mDeviceId = deviceId;
22 mDeviceId = from.mDeviceId;
  /frameworks/base/include/ui/
Input.h 173 inline int32_t getDeviceId() const { return mDeviceId; }
182 int32_t mDeviceId;
  /packages/apps/Email/src/com/android/exchange/
EasOutboxService.java 183 mDeviceId = SyncManager.getDeviceId();
EasSyncService.java 190 protected String mDeviceId = null;
402 svc.mDeviceId = "validate";
    [all...]
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 102 private TextView mDeviceId; //DeviceId is the IMEI in GSM and the MEID in CDMA
250 mDeviceId= (TextView) findViewById(R.id.imei);
600 mDeviceId.setText(s);
    [all...]

Completed in 102 milliseconds