HomeSort by relevance Sort by last modified time
    Searched refs:uuidStr (Results 1 - 4 of 4) 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...]
  /frameworks/av/media/libmedia/
AudioEffect.cpp 60 const char *uuidStr,
74 ALOGV("Constructor string\n - type: %s\n - uuid: %s", typeStr, uuidStr);
82 if (uuidStr != NULL) {
83 if (stringToGuid(uuidStr, &uuid) == NO_ERROR) {
  /frameworks/av/include/media/
AudioEffect.h 249 const char *uuidStr = NULL,

Completed in 892 milliseconds