HomeSort by relevance Sort by last modified time
    Searched refs: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/base/core/java/android/bluetooth/
BluetoothGattService.java 54 protected UUID mUuid;
95 mUuid = uuid;
109 mUuid = uuid;
202 return mUuid;
BluetoothGattDescriptor.java 91 protected UUID mUuid;
144 mUuid = uuid;
171 return mUuid;
BluetoothSocket.java 113 private final ParcelUuid mUuid;
158 mUuid = uuid;
159 else mUuid = new ParcelUuid(new UUID(0, 0));
180 mUuid = s.mUuid;
309 mUuid, mPort, getSecurityFlags());
350 mUuid, mPort, getSecurityFlags());
BluetoothGattCharacteristic.java 174 protected UUID mUuid;
249 mUuid = uuid;
321 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 Integer.parseInt(mUuid.replace("-", ""), 16);
275 pw.printPair("mUuid", mUuid);
310 parcel.writeString(mUuid);
    [all...]
  /system/vold/
Volume.h 53 char* mUuid;
75 const char* getUuid() { return mUuid; }
Volume.cpp 117 mUuid = NULL;
128 free(mUuid);
158 if (mUuid) {
159 free(mUuid);
163 mUuid = strdup(uuid);
165 getFuseMountpoint(), mUuid);
167 mUuid = NULL;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
IntentUtilities.java 93 public static void setAccountUuid(Uri.Builder b, String mUuid) {
94 if (TextUtils.isEmpty(mUuid)) {
97 b.appendQueryParameter(ACCOUNT_UUID_PARAM, mUuid);
  /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 78 private final UUID mUuid;
86 mUuid = uuid;
173 mChatService = new BluetoothChatService(this, new ChatHandler(), mUuid);
  /frameworks/av/services/audioflinger/
AudioPolicyService.h 266 mUuid(uuid) { }
269 mUuid(orig.mUuid) {
292 effect_uuid_t mUuid;
AudioPolicyService.cpp 335 sp<AudioEffect> fx = new AudioEffect(NULL, &effect->mUuid, -1, 0, 0, audioSession, input);
    [all...]

Completed in 816 milliseconds