OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:uuidStr
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
GattDebugUtils.java
165
String
uuidStr
= intent.getStringExtra(EXTRA_UUID);
166
if (
uuidStr
!= null &&
uuidStr
.length() == 4) {
167
uuidStr
= String.format("0000%s-0000-1000-8000-00805f9b34fb",
uuidStr
);
169
return (
uuidStr
!= null) ? UUID.fromString(
uuidStr
) : null;
/frameworks/base/media/jni/audioeffect/
android_media_AudioEffect.cpp
260
const char *
uuidStr
= NULL;
279
uuidStr
= env->GetStringUTFChars(uuid, NULL);
280
if (
uuidStr
== NULL) { // Out of memory
286
if (typeStr == NULL &&
uuidStr
== NULL) {
315
uuidStr
,
347
if (
uuidStr
) {
348
env->ReleaseStringUTFChars(uuid,
uuidStr
);
349
uuidStr
= NULL;
414
if (
uuidStr
!= NULL) {
415
env->ReleaseStringUTFChars(uuid,
uuidStr
);
[
all
...]
/frameworks/av/media/libmedia/
AudioEffect.cpp
58
const char *
uuidStr
,
72
ALOGV("Constructor string\n - type: %s\n - uuid: %s", typeStr,
uuidStr
);
80
if (
uuidStr
!= NULL) {
81
if (stringToGuid(
uuidStr
, &uuid) == NO_ERROR) {
/frameworks/av/include/media/
AudioEffect.h
240
const char *
uuidStr
= NULL,
Completed in 805 milliseconds