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

1 2 3 4 5 6 7 8 910

  /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");
  /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/av/services/oboeservice/
AAudioServiceEndpoint.cpp 59 result << " Device Id: " << getDeviceId() << "\n";
124 if (configuration.getDeviceId() != AAUDIO_UNSPECIFIED &&
125 configuration.getDeviceId() != getDeviceId()) {
AAudioEndpointManager.cpp 120 endpoint.get(), configuration.getDeviceId(), configuration.getSessionId());
138 endpoint.get(), configuration.getDeviceId(), configuration.getSessionId());
171 endpointMMap.get(), configuration.getDeviceId());
228 __func__, endpoint.get(), configuration.getDeviceId(), (int)direction);
266 __func__, serviceEndpoint.get(), serviceEndpoint->getDeviceId());
289 __func__, serviceEndpoint.get(), serviceEndpoint->getDeviceId());
AAudioServiceEndpointMMAP.cpp 111 mRequestedDeviceId = deviceId = getDeviceId();
184 ALOGD("%s() deviceId = %d, sessionId = %d", __func__, getDeviceId(), getSessionId());
386 ALOGD("%s(%p) called with dev %d, old = %d", __func__, this, deviceId, getDeviceId());
387 if (getDeviceId() != AUDIO_PORT_HANDLE_NONE && getDeviceId() != deviceId) {
AAudioServiceEndpointShared.cpp 64 mRequestedDeviceId = configuration.getDeviceId();
79 setDeviceId(mStreamInternal->getDeviceId());
  /packages/apps/TV/tuner/src/com/android/tv/tuner/
TunerHal.java 183 mDeliverySystemType = nativeGetDeliverySystemType(getDeviceId());
213 protected abstract long getDeviceId();
231 nativeCloseAllPidFilters(getDeviceId());
251 if (nativeTune(getDeviceId(), frequency, modulation, timeout_ms)) {
282 nativeAddPidFilter(getDeviceId(), pid, filterType);
303 nativeCloseAllPidFilters(getDeviceId());
305 nativeStopTune(getDeviceId());
313 nativeSetHasPendingTune(getDeviceId(), hasPendingTune);
335 return nativeWriteInBuffer(getDeviceId(), javaBuffer, javaBufferSize);
DvbDeviceAccessor.java 151 sGetDeviceIdMethod = dvbDeviceInfoClass.getDeclaredMethod("getDeviceId");
164 mId = (((long) getAdapterId()) << 32) | (getDeviceId() & 0xffffffffL);
186 public int getDeviceId() {
210 return getDeviceId() - another.getDeviceId();
219 getDeviceId());
  /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,
  /packages/apps/Contacts/src/com/android/contacts/compat/
TelephonyManagerCompat.java 86 public static String getDeviceId(@Nullable TelephonyManager telephonyManager, int slotId) {
92 "getDeviceId", Integer.class)) {
93 return telephonyManager.getDeviceId(slotId);
  /frameworks/av/media/libaudioclient/include/media/
AudioIoDescriptor.h 47 audio_port_handle_t getDeviceId() {
  /frameworks/base/media/java/android/media/tv/
DvbDeviceInfo.java 78 public int getDeviceId() {
  /packages/apps/TV/tuner/tests/unittests/javatests/com/android/tv/tuner/
FakeTunerHal.java 40 protected long 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");
103 deviceId = tm.getDeviceId();
108 LogUtils.d(Logging.LOG_TAG, "Error in TelephonyManager.getDeviceId(): "
  /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 71 public long getDeviceId() { return mDeviceId; }
  /cts/tests/tests/permission/src/android/permission/cts/
TelephonyManagerPermissionTest.java 58 * Verify that TelephonyManager.getDeviceId requires Permission.
70 String id = mTelephonyManager.getDeviceId();
76 String id = mTelephonyManager.getDeviceId(0);
  /frameworks/av/media/libaaudio/src/legacy/
AudioStreamLegacy.cpp 203 if (getDeviceId() != AAUDIO_UNSPECIFIED && getDeviceId() != deviceId &&

Completed in 446 milliseconds

1 2 3 4 5 6 7 8 910