HomeSort by relevance Sort by last modified time
    Searched refs:VlogInfo (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/base/
vlog.h 18 class BASE_EXPORT VlogInfo {
40 VlogInfo(const std::string& v_switch,
43 ~VlogInfo();
59 DISALLOW_COPY_AND_ASSIGN(VlogInfo);
vlog.cc 18 const int VlogInfo::kDefaultVlogLevel = 0;
20 struct VlogInfo::VmodulePattern {
32 VlogInfo::VmodulePattern::VmodulePattern(const std::string& pattern)
34 vlog_level(VlogInfo::kDefaultVlogLevel),
43 VlogInfo::VmodulePattern::VmodulePattern()
44 : vlog_level(VlogInfo::kDefaultVlogLevel),
47 VlogInfo::VlogInfo(const std::string& v_switch,
81 VlogInfo::~VlogInfo() {}
    [all...]
vlog_unittest.cc 20 VlogInfo(std::string(), std::string(), &min_log_level)
23 VlogInfo("0", std::string(), &min_log_level).GetVlogLevel("test2"));
25 0, VlogInfo("blah", std::string(), &min_log_level).GetVlogLevel("test3"));
28 VlogInfo("0blah1", std::string(), &min_log_level).GetVlogLevel("test4"));
30 VlogInfo("1", std::string(), &min_log_level).GetVlogLevel("test5"));
32 VlogInfo("5", std::string(), &min_log_level).GetVlogLevel("test6"));
88 VlogInfo vlog_info(kVSwitch, kVModuleSwitch, &min_log_level);
103 VlogInfo vlog_info(std::string(), kVModuleSwitch, &min_log_level);
logging.cc 73 VlogInfo* g_vlog_info = NULL;
74 VlogInfo* g_vlog_info_prev = NULL;
368 // by another thread. Don't delete the old VLogInfo, just create a second
374 new VlogInfo(command_line->GetSwitchValueASCII(switches::kV),
417 VlogInfo* vlog_info = g_vlog_info;

Completed in 233 milliseconds