HomeSort by relevance Sort by last modified time
    Searched full:uuidstr (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/platform/
UUID.cpp 69 wchar_t uuidStr[40];
70 int num = StringFromGUID2(uuid, reinterpret_cast<LPOLESTR>(uuidStr), WTF_ARRAY_LENGTH(uuidStr));
72 String canonicalUuidStr = String(uuidStr + 1, num - 3).lower(); // remove opening and closing bracket and make it lower.
78 String uuidStr(uuidStrRef);
81 String canonicalUuidStr = uuidStr.lower(); // make it lower.
89 char uuidStr[37];
90 char* result = fgets(uuidStr, sizeof(uuidStr), fptr);
94 String canonicalUuidStr = String(uuidStr).lower(); // make it lower
    [all...]
  /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) {
  /external/clang/lib/CodeGen/
CodeGenModule.cpp     [all...]
CodeGenModule.h     [all...]
  /frameworks/av/include/media/
AudioEffect.h 240 const char *uuidStr = NULL,

Completed in 473 milliseconds