OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mUuid
(Results
1 - 11
of
11
) 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/
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
174
protected UUID
mUuid
;
249
mUuid
= uuid;
321
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());
/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/av/services/audioflinger/
AudioPolicyService.h
266
mUuid
(uuid) { }
269
mUuid
(orig.
mUuid
) {
292
effect_uuid_t
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
...]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
MessageTestActivity.java
78
private final UUID
mUuid
;
86
mUuid
= uuid;
173
mChatService = new BluetoothChatService(this, new ChatHandler(),
mUuid
);
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
);
Completed in 1360 milliseconds