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 | 176 static android_LogPriority filterPriForTag(AndroidLogFormat* p_format, const char* tag) { in filterPriForTag() 196 int android_log_shouldPrintLine(AndroidLogFormat* p_format, const char* tag, in android_log_shouldPrintLine() 201 AndroidLogFormat* android_log_format_new() { in android_log_format_new() 202 AndroidLogFormat* p_ret; in android_log_format_new() 204 p_ret = static_cast<AndroidLogFormat*>(calloc(1, sizeof(AndroidLogFormat))); in android_log_format_new() 225 void android_log_format_free(AndroidLogFormat* p_format) { in android_log_format_free() 248 int android_log_setPrintFormat(AndroidLogFormat* p_format, AndroidLogPrintFormat format) { in android_log_setPrintFormat() 364 int android_log_addFilterRule(AndroidLogFormat* p_format, const char* filterExpression) { in android_log_addFilterRule() 458 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 | 373 AndroidLogFormat* logformat = android_log_format_new(); in bswrite_test() 461 AndroidLogFormat* logformat = android_log_format_new(); in buf_write_test() 1000 AndroidLogFormat* logformat = android_log_format_new(); in TEST() 1157 static bool checkPriForTag(AndroidLogFormat* p_format, const char* tag, in checkPriForTag() 1167 AndroidLogFormat* p_format = android_log_format_new(); in TEST() 2478 AndroidLogFormat* logformat = android_log_format_new(); in create_android_logger()
|
/system/logging/logcat/ |
D | logcat.cpp | 88 std::unique_ptr<AndroidLogFormat, decltype(&android_log_format_free)> logformat_{
|