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

1 2 3 4 5 6 7

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
IAccountService.aidl 26 String getDeviceId();
AccountServiceProxy.java 81 public String getDeviceId() {
85 mReturn = mService.getDeviceId();
87 }, "getDeviceId");
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/
InternalTunerHal.java 44 nativeFinalize(getDeviceId());
54 protected long getDeviceId() {
TunerHal.java 110 protected abstract long getDeviceId();
125 nativeCloseAllPidFilters(getDeviceId());
139 if (nativeTune(getDeviceId(), frequency, modulation, timeout_ms)) {
166 nativeAddPidFilter(getDeviceId(), pid, filterType);
182 nativeCloseAllPidFilters(getDeviceId());
184 nativeStopTune(getDeviceId());
206 return nativeWriteInBuffer(getDeviceId(), javaBuffer, javaBufferSize);
DvbDeviceAccessor.java 169 sGetDeviceIdMethod = dvbDeviceInfoClass.getDeclaredMethod("getDeviceId");
182 mId = (((long) getAdapterId()) << 32) | (getDeviceId() & 0xffffffffL);
204 public int getDeviceId() {
228 return getDeviceId() - another.getDeviceId();
234 getDeviceId());
  /frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
MtpManagerTest.java 53 mManager.closeDevice(mUsbDevice.getDeviceId());
69 mManager.readEvent(mUsbDevice.getDeviceId(), signal);
108 MtpEvent event = mManager.readEvent(mUsbDevice.getDeviceId(), signal);
120 if (record.deviceId == mUsbDevice.getDeviceId()) {
129 mUsbDevice.getDeviceId(), storageId, MtpManager.OBJECT_HANDLE_ROOT_CHILDREN)) {
130 if (mManager.getObjectInfo(mUsbDevice.getDeviceId(), handle)
132 mManager.deleteDocument(mUsbDevice.getDeviceId(), handle);
144 mUsbDevice.getDeviceId(),
154 mUsbDevice.getDeviceId(), objectHandle, 0, 5, bytes));
157 mUsbDevice.getDeviceId(), objectHandle, 6, 100, bytes))
    [all...]
TestUtil.java 56 waitForStorages(instrumentation, manager, device.getDeviceId());
104 manager.openDevice(device.getDeviceId());
  /packages/apps/Email/provider_src/com/android/email/service/
AccountService.java 56 public String getDeviceId() {
66 return Device.getDeviceId(mContext);
80 Device.getDeviceId(this);
  /frameworks/base/core/java/android/view/
InputEvent.java 58 public abstract int getDeviceId();
66 return InputDevice.getDevice(getDeviceId());
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
ReceiverActivity.java 44 provider.openDevice(device.getDeviceId());
45 final String deviceRootId = provider.getDeviceDocumentId(device.getDeviceId());
UsbIntentReceiver.java 38 MtpDocumentsProvider.getInstance().closeDevice(device.getDeviceId());
MtpManager.java 79 if (candidate.getDeviceId() == deviceId) {
260 roots.add(new MtpRoot(device.getDeviceId(), info));
267 final MtpDevice mtpDevice = mDevices.get(device.getDeviceId());
275 roots = getRoots(device.getDeviceId());
292 device.getDeviceId(), name, device.getSerialNumber(), opened, roots,
  /system/weaved/brillo/android/weave/
IWeaveServiceManager.aidl 28 String getDeviceId();
  /frameworks/av/include/media/
AudioIoDescriptor.h 45 audio_port_handle_t getDeviceId() {
  /frameworks/base/media/java/android/media/tv/
DvbDeviceInfo.java 78 public int getDeviceId() {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/compat/
TelephonyManagerCompat.java 88 public static String getDeviceId(@Nullable TelephonyManager telephonyManager, int slotId) {
94 "getDeviceId", Integer.class)) {
95 return telephonyManager.getDeviceId(slotId);
  /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(): "
  /cts/tests/tests/permission/src/android/permission/cts/
TelephonyManagerPermissionTest.java 48 * Verify that TelephonyManager.getDeviceId requires Permission.
60 String id = mTelephonyManager.getDeviceId();
66 String id = mTelephonyManager.getDeviceId(0);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
TelephonyManagerTest.java 48 assertEquals(testId, telephonyManager.getDeviceId());
78 manager.getDeviceId();
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTelephonyManager.java 47 public String getDeviceId() {
  /frameworks/base/core/java/android/hardware/fingerprint/
Fingerprint.java 70 public long getDeviceId() { return mDeviceId; }
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
StorageUtils.java 109 final long dataDev = getDeviceId(Environment.getDataDirectory());
110 final long cacheDev = getDeviceId(Environment.getDownloadCacheDirectory());
111 final long externalDev = getDeviceId(Environment.getExternalStorageDirectory());
189 private static long getDeviceId(File file) {
  /cts/tests/tests/telephony/src/android/telephony/cts/
TelephonyManagerTest.java 162 mTelephonyManager.getDeviceId();
163 mTelephonyManager.getDeviceId(mTelephonyManager.getDefaultSim());
200 String deviceId = mTelephonyManager.getDeviceId();
210 String deviceId = mTelephonyManager.getDeviceId(mTelephonyManager.getDefaultSim());
214 mTelephonyManager.getDeviceId(i);
  /frameworks/base/media/java/android/mtp/
MtpDevice.java 115 * This returns the same value as {@link android.hardware.usb.UsbDevice#getDeviceId}
120 public int getDeviceId() {
121 return mDevice.getDeviceId();
  /frameworks/base/services/core/java/com/android/server/tv/
TvInputHal.java 163 retrieveStreamConfigsLocked(info.getDeviceId());
167 configs = mStreamConfigs.get(info.getDeviceId());

Completed in 970 milliseconds

1 2 3 4 5 6 7