Home
last modified time | relevance | path

Searched refs:mUuid (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/core/java/android/os/
DParcelUuid.java28 private final UUID mUuid; field in ParcelUuid
37 mUuid = uuid; in ParcelUuid()
61 return mUuid; in getUuid()
72 return mUuid.toString(); in toString()
78 return mUuid.hashCode(); in hashCode()
107 return (this.mUuid.equals(that.mUuid)); in equals()
129 dest.writeLong(mUuid.getMostSignificantBits()); in writeToParcel()
130 dest.writeLong(mUuid.getLeastSignificantBits()); in writeToParcel()
/frameworks/base/core/java/android/app/usage/
DCacheQuotaHint.java38 private final String mUuid; field in CacheQuotaHint
48 this.mUuid = builder.mUuid; in CacheQuotaHint()
55 return mUuid; in getVolumeUuid()
72 dest.writeString(mUuid); in writeToParcel()
87 return Objects.equals(mUuid, other.mUuid) in equals()
97 return Objects.hash(this.mUuid, this.mUid, this.mUsageStats, this.mQuota); in hashCode()
101 private String mUuid; field in CacheQuotaHint.Builder
117 mUuid = uuid; in setVolumeUuid()
/frameworks/base/core/java/android/bluetooth/
DBluetoothGattIncludedService.java34 protected UUID mUuid; field in BluetoothGattIncludedService
50 mUuid = uuid; in BluetoothGattIncludedService()
60 out.writeParcelable(new ParcelUuid(mUuid), 0); in writeToParcel()
77 mUuid = ((ParcelUuid)in.readParcelable(null)).getUuid(); in BluetoothGattIncludedService()
88 return mUuid; in getUuid()
DBluetoothGattService.java55 protected UUID mUuid; field in BluetoothGattService
101 mUuid = uuid; in BluetoothGattService()
115 mUuid = uuid; in BluetoothGattService()
128 mUuid = uuid; in BluetoothGattService()
144 out.writeParcelable(new ParcelUuid(mUuid), 0); in writeToParcel()
170 mUuid = ((ParcelUuid)in.readParcelable(null)).getUuid(); in BluetoothGattService()
290 return mUuid; in getUuid()
DBluetoothGattDescriptor.java94 protected UUID mUuid; field in BluetoothGattDescriptor
154 mUuid = uuid; in initDescriptor()
167 out.writeParcelable(new ParcelUuid(mUuid), 0); in writeToParcel()
184 mUuid = ((ParcelUuid)in.readParcelable(null)).getUuid(); in BluetoothGattDescriptor()
211 return mUuid; in getUuid()
DBluetoothGattCharacteristic.java176 protected UUID mUuid; field in BluetoothGattCharacteristic
260 mUuid = uuid; in initCharacteristic()
283 out.writeParcelable(new ParcelUuid(mUuid), 0); in writeToParcel()
304 mUuid = ((ParcelUuid)in.readParcelable(null)).getUuid(); in BluetoothGattCharacteristic()
380 return mUuid; in getUuid()
DBluetoothSocket.java120 private final ParcelUuid mUuid; field in BluetoothSocket
194 mUuid = uuid; in BluetoothSocket()
195 else mUuid = new ParcelUuid(new UUID(0, 0)); in BluetoothSocket()
219 mUuid = s.mUuid; in BluetoothSocket()
363 mUuid, mPort, getSecurityFlags()); in connect()
405 mUuid, mPort, getSecurityFlags()); in bindListen()
/frameworks/native/libs/sensor/
DSensor.cpp54 mUuid = uuid; in Sensor()
444 return mUuid; in getUuid()
448 mUuid.i64[0] = id; in setId()
449 mUuid.i64[1] = 0; in setId()
453 return int32_t(mUuid.i64[0]); in getId()
462 sizeof(mRequiredAppOp) + sizeof(mMaxDelay) + sizeof(mFlags) + sizeof(mUuid); in getFlattenedSize()
496 if (mUuid.i64[1] != 0) { in flatten()
506 FlattenableUtils::write(buffer, size, mUuid); in flatten()
547 sizeof(mFlags) + sizeof(mUuid); in unflatten()
556 FlattenableUtils::read(buffer, size, mUuid); in unflatten()
/frameworks/av/services/audiopolicy/service/
DAudioPolicyEffects.h93 mUuid(uuid) { } in EffectDesc()
96 mUuid(orig.mUuid) { in EffectDesc()
119 effect_uuid_t mUuid; variable
DAudioPolicyEffects.cpp121 sp<AudioEffect> fx = new AudioEffect(NULL, String16("android"), &effect->mUuid, -1, 0, in addInputEffects()
270 sp<AudioEffect> fx = new AudioEffect(NULL, String16("android"), &effect->mUuid, 0, 0, 0, in addOutputSessionEffects()
596 effect->mName, effect->mUuid.timeLow); in loadEffectConfig()
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
DRecyclerViewBasicTest.java317 assertEquals("uuid in layout manager should be preserved properly", mlm.mUuid, in savedState()
318 mlmRestored.mUuid); in savedState()
510 String mUuid = UUID.randomUUID().toString(); field in RecyclerViewBasicTest.MockLayoutManager
529 lss.mUuid = mUuid; in onSaveInstanceState()
537 mUuid = ((LayoutManagerSavedState) state).mUuid; in onRestoreInstanceState()
584 String mUuid; field in RecyclerViewBasicTest.LayoutManagerSavedState
587 mUuid = in.readString(); in LayoutManagerSavedState()
601 dest.writeString(mUuid); in writeToParcel()
/frameworks/native/libs/sensor/include/sensor/
DSensor.h135 uuid_t mUuid; variable
/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/
DSoundTriggerService.java395 private UUID mUuid; field in SoundTriggerService.LocalSoundTriggerRecognitionStatusCallback
402 mUuid = modelUuid; in LocalSoundTriggerRecognitionStatusCallback()
517 mIntentCallbacks.remove(mUuid); in removeCallback()