Searched refs:min_log_level (Results 1 – 9 of 9) sorted by relevance
/external/chromium/base/ |
D | vlog_unittest.cc | 21 int min_log_level = 0; in TEST_F() local 22 EXPECT_EQ(0, VlogInfo("", "", &min_log_level).GetVlogLevel("test1")); in TEST_F() 23 EXPECT_EQ(0, VlogInfo("0", "", &min_log_level).GetVlogLevel("test2")); in TEST_F() 24 EXPECT_EQ(0, VlogInfo("blah", "", &min_log_level).GetVlogLevel("test3")); in TEST_F() 25 EXPECT_EQ(0, VlogInfo("0blah1", "", &min_log_level).GetVlogLevel("test4")); in TEST_F() 26 EXPECT_EQ(1, VlogInfo("1", "", &min_log_level).GetVlogLevel("test5")); in TEST_F() 27 EXPECT_EQ(5, VlogInfo("5", "", &min_log_level).GetVlogLevel("test6")); in TEST_F() 82 int min_log_level = 0; in TEST_F() local 83 VlogInfo vlog_info(kVSwitch, kVModuleSwitch, &min_log_level); in TEST_F() 97 int min_log_level = 0; in TEST_F() local [all …]
|
D | vlog.cc | 45 int* min_log_level) in VlogInfo() argument 46 : min_log_level_(min_log_level) { in VlogInfo() 47 DCHECK(min_log_level != NULL); in VlogInfo()
|
D | vlog.h | 44 int* min_log_level);
|
D | logging.cc | 72 int min_log_level = 0; variable 373 &min_log_level); in BaseInitLoggingImpl() 405 min_log_level = std::min(LOG_ERROR_REPORT, level); in SetMinLogLevel() 409 return min_log_level; in GetMinLogLevel() 793 if (level >= min_log_level) { in RawLog()
|
/external/chromium_org/base/ |
D | vlog_unittest.cc | 18 int min_log_level = 0; in TEST() local 20 VlogInfo(std::string(), std::string(), &min_log_level) in TEST() 23 VlogInfo("0", std::string(), &min_log_level).GetVlogLevel("test2")); in TEST() 25 0, VlogInfo("blah", std::string(), &min_log_level).GetVlogLevel("test3")); in TEST() 28 VlogInfo("0blah1", std::string(), &min_log_level).GetVlogLevel("test4")); in TEST() 30 VlogInfo("1", std::string(), &min_log_level).GetVlogLevel("test5")); in TEST() 32 VlogInfo("5", std::string(), &min_log_level).GetVlogLevel("test6")); in TEST() 87 int min_log_level = 0; in TEST() local 88 VlogInfo vlog_info(kVSwitch, kVModuleSwitch, &min_log_level); in TEST() 102 int min_log_level = 0; in TEST() local [all …]
|
D | vlog.cc | 49 int* min_log_level) in VlogInfo() argument 50 : min_log_level_(min_log_level) { in VlogInfo() 51 DCHECK(min_log_level != NULL); in VlogInfo()
|
D | vlog.h | 42 int* min_log_level);
|
D | logging.cc | 86 int min_log_level = 0; variable 381 &min_log_level); in BaseInitLoggingImpl() 407 min_log_level = std::min(LOG_ERROR_REPORT, level); in SetMinLogLevel() 411 return min_log_level; in GetMinLogLevel() 821 if (level >= min_log_level) { in RawLog()
|
/external/chromium/googleurl/base/ |
D | logging.cc | 43 int min_log_level = 0; variable 155 min_log_level = level; in SetMinLogLevel() 282 if (severity_ < min_log_level) in ~LogMessage()
|