Home
last modified time | relevance | path

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

/aosp12/packages/modules/StatsD/tests/apps/statsdapp/jni/
H A Dalloc_stress_activity.cpp30 #define LOG(...) __android_log_write(ANDROID_LOG_INFO, "ALLOC-STRESS", __VA_ARGS__)
/aosp12/system/logging/liblog/include/android/
H A Dlog.h98 int __android_log_write(int prio, const char* tag, const char* text);
/aosp12/system/logging/liblog/
H A Dliblog.map.txt10 __android_log_write;
H A 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()
/aosp12/system/logging/liblog/include_vndk/log/
H A Dlog_main.h82 #define android_writeLog(prio, tag, text) __android_log_write(prio, tag, text)
/aosp12/system/logging/liblog/include/log/
H A Dlog_main.h82 #define android_writeLog(prio, tag, text) __android_log_write(prio, tag, text)
/aosp12/system/update_engine/aosp/
H A Dlogging_android.cc251 __android_log_write(priority, nullptr /* tag */, str.c_str()); in RedirectToLiblog()
/aosp12/frameworks/av/drm/libmediadrm/interface/mediadrm/
H A DDrmUtils.h85 __android_log_write(level, LOG_TAG, buf); in LogToBuffer()
/aosp12/libnativehelper/
H A DJNIHelp.c354 __android_log_write(priority, tag, details); in jniLogException()
/aosp12/libnativehelper/include/nativehelper/
H A DJNIHelp.h494 __android_log_write(priority, tag, details);
/aosp12/frameworks/base/cmds/incidentd/src/
H A DReporter.cpp478 __android_log_write(level, LOG_TAG, line); in vflog()
/aosp12/system/logging/liblog/tests/
H A Dliblog_test.cpp307 auto write_function = [&] { ASSERT_LT(0, __android_log_write(prio, tag, buf.c_str())); }; in TEST()