Searched refs:log_level (Results 1 – 12 of 12) sorted by relevance
/system/connectivity/shill/net/ |
D | netlink_message.cc | 96 void NetlinkMessage::PrintBytes(int log_level, const unsigned char* buf, in PrintBytes() argument 98 VLOG(log_level) << "Netlink Message -- Examining Bytes"; in PrintBytes() 100 VLOG(log_level) << "<NULL Buffer>"; in PrintBytes() 105 PrintHeader(log_level, reinterpret_cast<const nlmsghdr*>(buf)); in PrintBytes() 109 VLOG(log_level) << "Not enough bytes (" << num_bytes in PrintBytes() 114 PrintPayload(log_level, buf, num_bytes); in PrintBytes() 118 void NetlinkMessage::PrintPacket(int log_level, const NetlinkPacket& packet) { in PrintPacket() argument 119 VLOG(log_level) << "Netlink Message -- Examining Packet"; in PrintPacket() 121 VLOG(log_level) << "<Invalid Buffer>"; in PrintPacket() 125 PrintHeader(log_level, &packet.GetNlMsgHeader()); in PrintPacket() [all …]
|
D | netlink_message.h | 116 static void PrintBytes(int log_level, const unsigned char* buf, 120 static void PrintPacket(int log_level, const NetlinkPacket& packet); 138 static void PrintHeader(int log_level, const nlmsghdr* header); 139 static void PrintPayload(int log_level, const unsigned char* buf,
|
D | netlink_attribute.cc | 387 void NetlinkAttribute::Print(int log_level, int indent) const { in Print() argument 389 VLOG(log_level) << HeaderToPrint(indent) << " " in Print() 833 void NetlinkNestedAttribute::Print(int log_level, int indent) const { in Print() argument 834 VLOG(log_level) << HeaderToPrint(indent); in Print() 835 value_->Print(log_level, indent + 1); in Print()
|
D | attribute_list.cc | 77 void AttributeList::Print(int log_level, int indent) const { in Print() argument 81 i->second->Print(log_level, indent); in Print()
|
D | netlink_attribute.h | 104 virtual void Print(int log_level, int indent) const; 280 virtual void Print(int log_level, int indent) const;
|
D | attribute_list.h | 71 void Print(int log_level, int indent) const;
|
/system/connectivity/shill/ |
D | logging.cc | 38 string log_level = cl->GetSwitchValueASCII(switches::kLogLevel); in SetLogLevelFromCommandLine() local 40 if (base::StringToInt(log_level, &level) && in SetLogLevelFromCommandLine() 46 LOG(WARNING) << "Bad log level: " << log_level; in SetLogLevelFromCommandLine()
|
/system/connectivity/shill/wifi/ |
D | scan_session.cc | 301 void ScanSession::ReportResults(int log_level) { in ReportResults() argument 302 SLOG(this, log_level) << "------ ScanSession finished ------"; in ReportResults() 303 SLOG(this, log_level) << "Scanned " in ReportResults() 308 SLOG(this, log_level) << "ERROR encountered during scan (" in ReportResults() 312 SLOG(this, log_level) << "No error encountered during scan."; in ReportResults() 324 SLOG(this, log_level) << "Spent " << elapsed_time.InMillisecondsRoundedUp() in ReportResults()
|
D | scan_session.h | 197 void ReportEbusyTime(int log_level); 200 void ReportResults(int log_level);
|
D | wifi.cc | 2485 int log_level = 6; in SetScanState() local 2489 log_level = 7; in SetScanState() 2497 log_level = 5; in SetScanState() 2511 SLOG(this, log_level) << (reason ? reason : "<unknown>") in SetScanState()
|
/system/core/init/ |
D | builtins.cpp | 880 int log_level = std::stoi(args[1]); in do_loglevel() local 881 if (log_level < KLOG_ERROR_LEVEL || log_level > KLOG_DEBUG_LEVEL) { in do_loglevel() 882 ERROR("loglevel: invalid log level'%d'\n", log_level); in do_loglevel() 885 klog_set_level(log_level); in do_loglevel()
|
/system/extras/perfprofd/quipper/base/ |
D | logging.h | 510 inline void LogAtLevel(int const log_level, std::string const &msg) { in LogAtLevel() argument 511 LogMessage(__FILE__, __LINE__, log_level).stream() << msg; in LogAtLevel()
|