Searched defs:mUuid (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/os/
H A DParcelUuid.java28 private final UUID mUuid; field in class:ParcelUuid
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/
H A DBluetoothGattIncludedService.java34 protected UUID mUuid; field in class:BluetoothGattIncludedService
50 mUuid = uuid;
60 out.writeParcelable(new ParcelUuid(mUuid), 0);
77 mUuid = ((ParcelUuid)in.readParcelable(null)).getUuid();
88 return mUuid;
H A DBluetoothGattDescriptor.java94 protected UUID mUuid; field in class:BluetoothGattDescriptor
154 mUuid = uuid;
167 out.writeParcelable(new ParcelUuid(mUuid), 0);
184 mUuid = ((ParcelUuid)in.readParcelable(null)).getUuid();
211 return mUuid;
H A DBluetoothGattService.java55 protected UUID mUuid; field in class:BluetoothGattService
101 mUuid = uuid;
115 mUuid = uuid;
128 mUuid = uuid;
144 out.writeParcelable(new ParcelUuid(mUuid), 0);
170 mUuid = ((ParcelUuid)in.readParcelable(null)).getUuid();
290 return mUuid;
H A DBluetoothGattCharacteristic.java176 protected UUID mUuid; field in class:BluetoothGattCharacteristic
260 mUuid = uuid;
283 out.writeParcelable(new ParcelUuid(mUuid), 0);
304 mUuid = ((ParcelUuid)in.readParcelable(null)).getUuid();
380 return mUuid;
H A DBluetoothSocket.java120 private final ParcelUuid mUuid; field in class:BluetoothSocket
194 mUuid = uuid;
195 else mUuid = new ParcelUuid(new UUID(0, 0));
219 mUuid = s.mUuid;
363 mUuid, mPort, getSecurityFlags());
405 mUuid, mPort, getSecurityFlags());
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyEffects.h93 mUuid(uuid) { }
96 mUuid(orig.mUuid) {
119 effect_uuid_t mUuid; member in class:android::AudioPolicyEffects::EffectDesc
/frameworks/base/core/java/android/app/usage/
H A DCacheQuotaHint.java38 private final String mUuid; field in class:CacheQuotaHint
48 this.mUuid = builder.mUuid;
55 return mUuid;
72 dest.writeString(mUuid);
87 return Objects.equals(mUuid, other.mUuid)
97 return Objects.hash(this.mUuid, this.mUid, this.mUsageStats, this.mQuota);
101 private String mUuid; field in class:CacheQuotaHint.Builder
117 mUuid
[all...]
/frameworks/native/libs/sensor/include/sensor/
H A DSensor.h134 uuid_t mUuid; member in class:android::Sensor
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewBasicTest.java316 assertEquals("uuid in layout manager should be preserved properly", mlm.mUuid,
317 mlmRestored.mUuid);
502 String mUuid = UUID.randomUUID().toString(); field in class:RecyclerViewBasicTest.MockLayoutManager
521 lss.mUuid = mUuid;
529 mUuid = ((LayoutManagerSavedState) state).mUuid;
576 String mUuid; field in class:RecyclerViewBasicTest.LayoutManagerSavedState
579 mUuid = in.readString();
593 dest.writeString(mUuid);
[all...]

Completed in 737 milliseconds