Home
last modified time | relevance | path

Searched refs:__android_log_write (Results 1 – 8 of 8) sorted by relevance

/system/core/liblog/include/android/
Dlog.h98 int __android_log_write(int prio, const char* tag, const char* text);
/system/core/liblog/
Dliblog.map.txt10 __android_log_write;
Dlogger_write.cpp291 int __android_log_write(int prio, const char* tag, const char* msg) { in __android_log_write() function
411 __android_log_write(ANDROID_LOG_FATAL, tag, buf); in __android_log_assert()
/system/core/include/android/
Dlog.h98 int __android_log_write(int prio, const char* tag, const char* text);
/system/core/liblog/include_vndk/log/
Dlog_main.h82 #define android_writeLog(prio, tag, text) __android_log_write(prio, tag, text)
/system/core/liblog/include/log/
Dlog_main.h82 #define android_writeLog(prio, tag, text) __android_log_write(prio, tag, text)
/system/update_engine/
Dlogging_android.cc245 __android_log_write(priority, nullptr /* tag */, str.c_str()); in RedirectToLiblog()
/system/core/liblog/tests/
Dliblog_test.cpp307 auto write_function = [&] { ASSERT_LT(0, __android_log_write(prio, tag, buf.c_str())); }; in TEST()