Home
last modified time | relevance | path

Searched refs:AndroidLogFormat (Results 1 – 5 of 5) sorted by relevance

/system/logging/liblog/include/log/
Dlogprint.h54 typedef struct AndroidLogFormat_t AndroidLogFormat; typedef
69 AndroidLogFormat* android_log_format_new();
71 void android_log_format_free(AndroidLogFormat* p_format);
74 int android_log_setPrintFormat(AndroidLogFormat* p_format,
92 int android_log_addFilterRule(AndroidLogFormat* p_format,
105 int android_log_addFilterString(AndroidLogFormat* p_format,
112 int android_log_shouldPrintLine(AndroidLogFormat* p_format, const char* tag,
144 char* android_log_formatLogLine(AndroidLogFormat* p_format, char* defaultBuffer,
155 int android_log_printLogLine(AndroidLogFormat* p_format, int fd,
/system/logging/liblog/
Dlogprint.cpp183 static android_LogPriority filterPriForTag(AndroidLogFormat* p_format, const char* tag) { in filterPriForTag()
203 int android_log_shouldPrintLine(AndroidLogFormat* p_format, const char* tag, in android_log_shouldPrintLine()
208 AndroidLogFormat* android_log_format_new() { in android_log_format_new()
209 AndroidLogFormat* p_ret; in android_log_format_new()
211 p_ret = static_cast<AndroidLogFormat*>(calloc(1, sizeof(AndroidLogFormat))); in android_log_format_new()
232 void android_log_format_free(AndroidLogFormat* p_format) { in android_log_format_free()
255 int android_log_setPrintFormat(AndroidLogFormat* p_format, AndroidLogPrintFormat format) { in android_log_setPrintFormat()
372 int android_log_addFilterRule(AndroidLogFormat* p_format, const char* filterExpression) { in android_log_addFilterRule()
467 int android_log_addFilterString(AndroidLogFormat* p_format, const char* filterString) { in android_log_addFilterString()
1431 char* android_log_formatLogLine(AndroidLogFormat* p_format, char* defaultBuffer, in android_log_formatLogLine()
[all …]
/system/logging/logd/
DReplayMessages.cpp69 static AndroidLogFormat* GetLogFormat() { in GetLogFormat()
70 static AndroidLogFormat* format = [] { in GetLogFormat()
/system/logging/liblog/tests/
Dliblog_test.cpp373 AndroidLogFormat* logformat = android_log_format_new(); in bswrite_test()
461 AndroidLogFormat* logformat = android_log_format_new(); in buf_write_test()
1002 AndroidLogFormat* logformat = android_log_format_new(); in TEST()
1160 static bool checkPriForTag(AndroidLogFormat* p_format, const char* tag, in checkPriForTag()
1170 AndroidLogFormat* p_format = android_log_format_new(); in TEST()
2484 AndroidLogFormat* logformat = android_log_format_new(); in create_android_logger()
/system/logging/logcat/
Dlogcat.cpp82 std::unique_ptr<AndroidLogFormat, decltype(&android_log_format_free)> logformat_{