HomeSort by relevance Sort by last modified time
    Searched defs:mUuid (Results 1 - 13 of 13) sorted by null

  /frameworks/base/core/java/android/os/
ParcelUuid.java 28 private final UUID mUuid;
37 mUuid = uuid;
61 return mUuid;
72 return mUuid.toString();
78 return mUuid.hashCode();
107 return (this.mUuid.equals(that.mUuid));
129 dest.writeLong(mUuid.getMostSignificantBits());
130 dest.writeLong(mUuid.getLeastSignificantBits());
  /frameworks/av/services/audiopolicy/
AudioPolicyEffects.h 93 mUuid(uuid) { }
96 mUuid(orig.mUuid) {
119 effect_uuid_t mUuid;
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattDescriptor.java 91 protected UUID mUuid;
144 mUuid = uuid;
171 return mUuid;
BluetoothGattService.java 52 protected UUID mUuid;
98 mUuid = uuid;
112 mUuid = uuid;
205 return mUuid;
BluetoothGattCharacteristic.java 173 protected UUID mUuid;
248 mUuid = uuid;
320 return mUuid;
BluetoothSocket.java 108 private final ParcelUuid mUuid;
153 mUuid = uuid;
154 else mUuid = new ParcelUuid(new UUID(0, 0));
175 mUuid = s.mUuid;
304 mUuid, mPort, getSecurityFlags());
346 mUuid, mPort, getSecurityFlags());
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/identity/
UuidBasedUniqueIdentificationGeneratorTest.java 74 private final String mUuid;
79 mUuid = uuid;
85 return mUuid;
  /system/vold/
Volume.h 53 char* mUuid;
75 const char* getUuid() { return mUuid; }
  /frameworks/base/core/java/android/os/storage/
StorageVolume.java 52 private String mUuid;
86 mUuid = in.readString();
203 mUuid = uuid;
207 return mUuid;
215 if (mUuid == null || mUuid.length() != 9) {
219 return (int)Long.parseLong(mUuid.replace("-", ""), 16);
275 pw.printPair("mUuid", mUuid);
310 parcel.writeString(mUuid);
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
RecyclerViewBasicTest.java 202 assertEquals("uuid in layout manager should be preserved properly", mlm.mUuid,
203 mlmRestored.mUuid);
219 String mUuid = UUID.randomUUID().toString();
238 lss.mUuid = mUuid;
246 mUuid = ((LayoutManagerSavedState) state).mUuid;
293 String mUuid;
296 mUuid = in.readString();
310 dest.writeString(mUuid);
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BluetoothChatService.java 70 private final UUID mUuid;
92 mUuid = uuid;
285 tmp = mAdapter.listenUsingRfcommWithServiceRecord(NAME_SECURE, mUuid);
287 tmp = mAdapter.listenUsingInsecureRfcommWithServiceRecord(NAME_INSECURE, mUuid);
372 tmp = device.createRfcommSocketToServiceRecord(mUuid);
374 tmp = device.createInsecureRfcommSocketToServiceRecord(mUuid);
MessageTestActivity.java 80 private final UUID mUuid;
88 mUuid = uuid;
176 mChatService = new BluetoothChatService(this, new ChatHandler(), mUuid);
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 337 milliseconds