OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:uuidStr
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
GattDebugUtils.java
147
String
uuidStr
= intent.getStringExtra(EXTRA_UUID);
148
if (
uuidStr
!= null &&
uuidStr
.length() == 4) {
149
uuidStr
= String.format("0000%s-0000-1000-8000-00805f9b34fb",
uuidStr
);
151
return (
uuidStr
!= null) ? UUID.fromString(
uuidStr
) : null;
/frameworks/base/media/jni/audioeffect/
android_media_AudioEffect.cpp
290
const char *
uuidStr
= NULL;
313
uuidStr
= env->GetStringUTFChars(uuid, NULL);
314
if (
uuidStr
== NULL) { // Out of memory
320
if (typeStr == NULL &&
uuidStr
== NULL) {
350
uuidStr
,
382
if (
uuidStr
) {
383
env->ReleaseStringUTFChars(uuid,
uuidStr
);
384
uuidStr
= NULL;
446
if (
uuidStr
!= NULL) {
447
env->ReleaseStringUTFChars(uuid,
uuidStr
);
[
all
...]
Completed in 151 milliseconds