Searched refs:__android_log_message (Results 1 – 8 of 8) sorted by relevance
/system/core/liblog/include/android/ |
D | log.h | 187 struct __android_log_message { struct 213 typedef void (*__android_logger_function)(const struct __android_log_message* log_message); argument 234 void __android_log_write_log_message(struct __android_log_message* log_message) __INTRODUCED_IN(30); 256 void __android_log_logd_logger(const struct __android_log_message* log_message) __INTRODUCED_IN(30); 266 void __android_log_stderr_logger(const struct __android_log_message* log_message)
|
/system/core/include/android/ |
D | log.h | 187 struct __android_log_message { struct 213 typedef void (*__android_logger_function)(const struct __android_log_message* log_message); argument 234 void __android_log_write_log_message(struct __android_log_message* log_message) __INTRODUCED_IN(30); 256 void __android_log_logd_logger(const struct __android_log_message* log_message) __INTRODUCED_IN(30); 266 void __android_log_stderr_logger(const struct __android_log_message* log_message)
|
/system/libbase/ |
D | liblog_symbols.h | 28 void (*__android_log_write_log_message)(struct __android_log_message* log_message); 30 void (*__android_log_logd_logger)(const struct __android_log_message* log_message); 31 void (*__android_log_stderr_logger)(const struct __android_log_message* log_message);
|
D | logging.cpp | 323 __android_log_message log_message = {sizeof(__android_log_message), lg_id, priority, tag, in LogdLogChunk() 405 liblog_functions->__android_log_set_logger([](const struct __android_log_message* log_message) { in SetLogger() 525 __android_log_message log_message = { in LogLine() 526 sizeof(__android_log_message), LOG_ID_DEFAULT, priority, tag, file, line, message}; in LogLine()
|
/system/core/liblog/ |
D | logger_write.cpp | 244 void __android_log_stderr_logger(const struct __android_log_message* log_message) { in __android_log_stderr_logger() 276 void __android_log_logd_logger(const struct __android_log_message* log_message) { in __android_log_logd_logger() 295 void __android_log_write_log_message(__android_log_message* log_message) { in __android_log_write_log_message() 324 __android_log_message log_message = { in __android_log_buf_write() 325 sizeof(__android_log_message), bufID, prio, tag, nullptr, 0, msg}; in __android_log_buf_write() 341 __android_log_message log_message = { in __android_log_vprint() 342 sizeof(__android_log_message), LOG_ID_MAIN, prio, tag, nullptr, 0, buf}; in __android_log_vprint() 361 __android_log_message log_message = { in __android_log_print() 362 sizeof(__android_log_message), LOG_ID_MAIN, prio, tag, nullptr, 0, buf}; in __android_log_print() 381 __android_log_message log_message = { in __android_log_buf_print() [all …]
|
/system/update_engine/ |
D | logging_android.cc | 118 using LoggerFunction = std::function<void(const struct __android_log_message*)>; 145 void operator()(const struct __android_log_message* log_message) { in operator ()() 165 string GetPrefix(const struct __android_log_message* log_message) { in GetPrefix() 206 void operator()(const struct __android_log_message* log_message) { in operator ()() 258 __android_log_set_logger([](const struct __android_log_message* log_message) { in SetupLogging()
|
/system/core/liblog/tests/ |
D | liblog_global_state.cpp | 62 auto liblog_logger_function = [](const struct __android_log_message* log_message) { in TEST() 64 EXPECT_EQ(sizeof(__android_log_message), log_message->struct_size); in TEST() 113 auto liblog_logger_function = [](const struct __android_log_message* log_message) { in TEST() 115 EXPECT_EQ(sizeof(__android_log_message), log_message->struct_size); in TEST()
|
/system/core/logd/ |
D | ReplayMessages.cpp | 428 __android_log_set_logger([](const struct __android_log_message* log_message) { in main()
|