HomeSort by relevance Sort by last modified time
    Searched defs:getDeviceId (Results 1 - 25 of 41) sorted by null

1 2

  /packages/apps/Email/src/com/android/email/service/
AccountService.java 73 public String getDeviceId() {
83 return Device.getDeviceId(mContext);
97 Device.getDeviceId(this);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
AccountServiceProxy.java 113 public String getDeviceId() {
117 mReturn = mService.getDeviceId();
119 }, "getDeviceId");
  /frameworks/base/core/java/android/view/
InputEvent.java 58 public abstract int getDeviceId();
66 return InputDevice.getDevice(getDeviceId());
MotionEvent.java     [all...]
KeyEvent.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneSubInfoProxy.java 40 public String getDeviceId() {
41 return mPhoneSubInfo.getDeviceId();
PhoneSubInfo.java 66 public String getDeviceId() {
68 return mPhone.getDeviceId();
237 pw.println(" Device ID = " + mPhone.getDeviceId());
Phone.java     [all...]
PhoneProxy.java 922 public String getDeviceId() {
923 return mActivePhone.getDeviceId();
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/
Device.java 43 static public synchronized String getDeviceId(Context context) throws IOException {
52 throw new IllegalStateException("getDeviceId requires a Context");
103 deviceId = tm.getDeviceId();
108 LogUtils.d(Logging.LOG_TAG, "Error in TelephonyManager.getDeviceId(): "
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTelephonyManager.java 47 public String getDeviceId() {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TelephonyManagerTest.java 48 assertEquals(testId, telephonyManager.getDeviceId());
78 manager.getDeviceId();
  /frameworks/base/core/java/android/hardware/usb/
UsbDevice.java 90 public int getDeviceId() {
91 return getDeviceId(mName);
214 public static int getDeviceId(String name) {
  /frameworks/base/media/java/android/mtp/
MtpDevice.java 97 * This returns the same value as {@link android.hardware.usb.UsbDevice#getDeviceId}
102 public int getDeviceId() {
103 return mDevice.getDeviceId();
  /frameworks/base/core/jni/
android_view_KeyCharacterMap.cpp 55 inline int32_t getDeviceId() const {
105 parcel->writeInt32(map->getDeviceId());
179 if (map->getMap()->getEvents(map->getDeviceId(), chars, size_t(numChars), events)) {
  /cts/tests/tests/view/src/android/view/cts/
KeyEventTest.java 224 assertEquals(deviceId, mKeyEvent.getDeviceId());
544 assertEquals(mKeyEvent.getDeviceId(), keyEvent.getDeviceId());
586 assertEquals(mKeyEvent.getDeviceId(), newEvent.getDeviceId());
602 assertEquals(mKeyEvent.getDeviceId(), newEvent.getDeviceId());
622 assertEquals(mKeyEvent.getDeviceId(), newEvent.getDeviceId());
MotionEventTest.java 86 assertEquals(0, mMotionEvent1.getDeviceId());
107 assertEquals(motionEvent.getDeviceId(), mMotionEvent1.getDeviceId());
129 assertEquals(DEVICE_ID_1, mMotionEvent1.getDeviceId());
180 assertEquals(mMotionEvent2.getDeviceId(), motionEvent.getDeviceId());
  /cts/tests/tests/telephony/src/android/telephony/cts/
TelephonyManagerTest.java 160 mTelephonyManager.getDeviceId();
170 String deviceId = mTelephonyManager.getDeviceId();
  /packages/apps/Exchange/src/com/android/exchange/
ExchangeService.java 426 static public String getDeviceId(Context context) {
428 sDeviceId = new AccountServiceProxy(context).getDeviceId();
  /frameworks/native/include/input/
Input.h 244 inline int32_t getDeviceId() const { return mDeviceId; }
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhoneBase.java 286 public String getDeviceId() {
  /frameworks/base/telephony/java/android/telephony/
TelephonyManager.java 285 public String getDeviceId() {
287 return getSubscriberInfo().getDeviceId();
    [all...]
  /packages/apps/Email/emailsync/src/com/android/emailsync/
SyncManager.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMAPhone.java 504 public String getDeviceId() {
507 Rlog.d(LOG_TAG, "getDeviceId(): MEID is not initialized use ESN");
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GSMPhone.java 865 public String getDeviceId() {
    [all...]

Completed in 1335 milliseconds

1 2