Home
last modified time | relevance | path

Searched refs:min_log_level (Results 1 – 9 of 9) sorted by relevance

/external/chromium/base/
Dvlog_unittest.cc21 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 …]
Dvlog.cc45 int* min_log_level) in VlogInfo() argument
46 : min_log_level_(min_log_level) { in VlogInfo()
47 DCHECK(min_log_level != NULL); in VlogInfo()
Dvlog.h44 int* min_log_level);
Dlogging.cc72 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/
Dvlog_unittest.cc18 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 …]
Dvlog.cc49 int* min_log_level) in VlogInfo() argument
50 : min_log_level_(min_log_level) { in VlogInfo()
51 DCHECK(min_log_level != NULL); in VlogInfo()
Dvlog.h42 int* min_log_level);
Dlogging.cc86 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/
Dlogging.cc43 int min_log_level = 0; variable
155 min_log_level = level; in SetMinLogLevel()
282 if (severity_ < min_log_level) in ~LogMessage()