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

1 2

  /frameworks/base/core/java/android/view/
InputEvent.java 43 public abstract int getDeviceId();
51 return InputDevice.getDevice(getDeviceId());
MotionEvent.java     [all...]
KeyEvent.java     [all...]
  /packages/apps/Email/src/com/android/email/service/
AccountService.java 101 public String getDeviceId() {
111 return Device.getDeviceId(mContext);
125 Device.getDeviceId(this);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
AccountServiceProxy.java 115 public String getDeviceId() {
119 mReturn = mService.getDeviceId();
121 }, "getDeviceId");
  /frameworks/base/telephony/java/com/android/internal/telephony/
PhoneSubInfoProxy.java 41 public String getDeviceId() {
42 return mPhoneSubInfo.getDeviceId();
PhoneSubInfo.java 61 public String getDeviceId() {
63 return mPhone.getDeviceId();
203 pw.println(" Device ID = " + mPhone.getDeviceId());
Phone.java     [all...]
PhoneProxy.java 653 public String getDeviceId() {
654 return mActivePhone.getDeviceId();
  /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");
102 deviceId = tm.getDeviceId();
107 Log.d(Logging.LOG_TAG, "Error in TelephonyManager.getDeviceId(): " + e.getMessage());
  /frameworks/base/core/java/android/hardware/usb/
UsbDevice.java 84 public int getDeviceId() {
85 return getDeviceId(mName);
208 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();
  /cts/tests/tests/view/src/android/view/cts/
KeyEventTest.java 359 notes = "Test {@link KeyEvent#getDeviceId()}",
360 method = "getDeviceId",
367 assertEquals(deviceId, mKeyEvent.getDeviceId());
746 assertEquals(mKeyEvent.getDeviceId(), keyEvent.getDeviceId());
    [all...]
MotionEventTest.java 128 method = "getDeviceId",
164 assertEquals(0, mMotionEvent1.getDeviceId());
190 assertEquals(motionEvent.getDeviceId(), mMotionEvent1.getDeviceId());
218 assertEquals(DEVICE_ID_1, mMotionEvent1.getDeviceId());
304 assertEquals(mMotionEvent2.getDeviceId(), motionEvent.getDeviceId());
  /cts/tests/tests/telephony/src/android/telephony/cts/
TelephonyManagerTest.java 184 method = "getDeviceId",
272 mTelephonyManager.getDeviceId();
283 method = "getDeviceId",
287 String deviceId = mTelephonyManager.getDeviceId();
  /frameworks/base/telephony/java/android/telephony/
TelephonyManager.java 194 public String getDeviceId() {
196 return getSubscriberInfo().getDeviceId();
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipPhoneBase.java 259 public String getDeviceId() {
  /frameworks/base/include/ui/
Input.h 268 inline int32_t getDeviceId() const { return mDeviceId; }
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GSMPhone.java 840 public String getDeviceId() {
    [all...]
  /frameworks/base/services/input/
InputReader.h 819 inline int32_t getDeviceId() { return mDevice->getId(); }
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CDMAPhone.java 474 public String getDeviceId() {
477 Log.d(LOG_TAG, "getDeviceId(): MEID is not initialized use ESN");
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/
ExchangeService.java     [all...]
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/13/
android.jar 

Completed in 788 milliseconds

1 2