HomeSort by relevance Sort by last modified time
    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 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...]

Completed in 836 milliseconds