Home
last modified time | relevance | path

Searched refs:p_format (Results 1 – 3 of 3) sorted by relevance

/system/core/include/log/
Dlogprint.h60 void android_log_format_free(AndroidLogFormat *p_format);
63 int android_log_setPrintFormat(AndroidLogFormat *p_format,
81 int android_log_addFilterRule(AndroidLogFormat *p_format,
95 int android_log_addFilterString(AndroidLogFormat *p_format,
104 AndroidLogFormat *p_format, const char *tag, android_LogPriority pri);
137 AndroidLogFormat *p_format,
151 AndroidLogFormat *p_format,
/system/core/liblog/tests/
Dliblog_test.cpp625 static bool checkPriForTag(AndroidLogFormat *p_format, const char *tag, android_LogPriority pri) { in checkPriForTag() argument
626 return android_log_shouldPrintLine(p_format, tag, pri) in checkPriForTag()
627 && !android_log_shouldPrintLine(p_format, tag, (android_LogPriority)(pri - 1)); in checkPriForTag()
633 AndroidLogFormat *p_format = android_log_format_new(); in TEST() local
635 android_log_addFilterRule(p_format,"*:i"); in TEST()
637 EXPECT_TRUE(checkPriForTag(p_format, tag, ANDROID_LOG_INFO)); in TEST()
638 EXPECT_TRUE(android_log_shouldPrintLine(p_format, tag, ANDROID_LOG_DEBUG) == 0); in TEST()
639 android_log_addFilterRule(p_format, "*"); in TEST()
640 EXPECT_TRUE (checkPriForTag(p_format, tag, ANDROID_LOG_DEBUG)); in TEST()
641 EXPECT_TRUE(android_log_shouldPrintLine(p_format, tag, ANDROID_LOG_DEBUG) > 0); in TEST()
[all …]
/system/core/liblog/
Dlogprint.c154 AndroidLogFormat *p_format, const char *tag) in filterPriForTag() argument
158 for (p_curFilter = p_format->filters in filterPriForTag()
164 return p_format->global_pri; in filterPriForTag()
171 return p_format->global_pri; in filterPriForTag()
179 AndroidLogFormat *p_format, const char *tag, android_LogPriority pri) in android_log_shouldPrintLine() argument
181 return pri >= filterPriForTag(p_format, tag); in android_log_shouldPrintLine()
199 void android_log_format_free(AndroidLogFormat *p_format) in android_log_format_free() argument
203 p_info = p_format->filters; in android_log_format_free()
212 free(p_format); in android_log_format_free()
217 int android_log_setPrintFormat(AndroidLogFormat *p_format, in android_log_setPrintFormat() argument
[all …]