Home
last modified time | relevance | path

Searched refs:error_str (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/emoji/
DEmojiFactory.cpp78 const char* error_str = dlerror(); in TryRegisterEmojiFactory() local
79 if (error_str) { in TryRegisterEmojiFactory()
80 error_str = "Unknown reason"; in TryRegisterEmojiFactory()
82 ALOGE("Failed to load shared library %s: %s", library_name, error_str); in TryRegisterEmojiFactory()
89 const char* error_str = dlerror(); in TryRegisterEmojiFactory() local
90 if (error_str) { in TryRegisterEmojiFactory()
91 error_str = "Unknown reason"; in TryRegisterEmojiFactory()
93 ALOGE("Failed to call GetEmojiFactory: %s", error_str); in TryRegisterEmojiFactory()
/frameworks/base/core/jni/
Dandroid_emoji_EmojiFactory.cpp58 const char* error_str = dlerror(); in Init()
59 if (error_str == NULL) { in Init()
60 error_str = "unknown reason"; in Init()
63 ALOGE("%s: %s", error_msg, error_str); in Init()