Searched refs:AndroidLogFormat (Results 1 – 5 of 5) sorted by relevance
| /system/logging/liblog/include/log/ |
| D | logprint.h | 55 typedef struct AndroidLogFormat_t AndroidLogFormat; typedef 70 AndroidLogFormat* android_log_format_new(); 72 void android_log_format_free(AndroidLogFormat* p_format); 75 int android_log_setPrintFormat(AndroidLogFormat* p_format, 93 int android_log_addFilterRule(AndroidLogFormat* p_format, 106 int android_log_addFilterString(AndroidLogFormat* p_format, 113 int android_log_shouldPrintLine(AndroidLogFormat* p_format, const char* tag, 145 char* android_log_formatLogLine(AndroidLogFormat* p_format, char* defaultBuffer, 153 size_t android_log_printLogLine(AndroidLogFormat* p_format, FILE* fp, const AndroidLogEntry* entry);
|
| /system/logging/liblog/ |
| D | logprint.cpp | 178 static android_LogPriority filterPriForTag(AndroidLogFormat* p_format, const char* tag) { in filterPriForTag() 198 int android_log_shouldPrintLine(AndroidLogFormat* p_format, const char* tag, in android_log_shouldPrintLine() 203 AndroidLogFormat* android_log_format_new() { in android_log_format_new() 204 AndroidLogFormat* p_ret; in android_log_format_new() 206 p_ret = static_cast<AndroidLogFormat*>(calloc(1, sizeof(AndroidLogFormat))); in android_log_format_new() 227 void android_log_format_free(AndroidLogFormat* p_format) { in android_log_format_free() 250 int android_log_setPrintFormat(AndroidLogFormat* p_format, AndroidLogPrintFormat format) { in android_log_setPrintFormat() 366 int android_log_addFilterRule(AndroidLogFormat* p_format, const char* filterExpression) { in android_log_addFilterRule() 460 int android_log_addFilterString(AndroidLogFormat* p_format, const char* filterString) { in android_log_addFilterString() 1415 char* android_log_formatLogLine(AndroidLogFormat* p_format, char* defaultBuffer, in android_log_formatLogLine() [all …]
|
| /system/logging/logd/ |
| D | ReplayMessages.cpp | 69 static AndroidLogFormat* GetLogFormat() { in GetLogFormat() 70 static AndroidLogFormat* format = [] { in GetLogFormat()
|
| /system/logging/liblog/tests/ |
| D | liblog_test.cpp | 377 AndroidLogFormat* logformat = android_log_format_new(); in bswrite_test() 465 AndroidLogFormat* logformat = android_log_format_new(); in buf_write_test() 1055 AndroidLogFormat* logformat = android_log_format_new(); in TEST() 1212 static bool checkPriForTag(AndroidLogFormat* p_format, const char* tag, in checkPriForTag() 1222 AndroidLogFormat* p_format = android_log_format_new(); in TEST() 2482 AndroidLogFormat* logformat = android_log_format_new(); in create_android_logger()
|
| /system/logging/logcat/ |
| D | logcat.cpp | 109 std::unique_ptr<AndroidLogFormat, decltype(&android_log_format_free)> logformat_{
|