Searched defs:iMinLevel (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/NetworkServices/DHCP/
H A DVBoxNetDHCP.cpp105 void debugPrintV(int32_t iMinLevel, bool fMsg, const char *pszFmt, va_list va) const;
383 * @param iMinLevel The minimum m_cVerbosity level for this message.
388 void VBoxNetDhcp::debugPrintV(int iMinLevel, bool fMsg, const char *pszFmt, va_list va) const argument
390 if (iMinLevel <= m_cVerbosity)
394 RTStrmPrintf(g_pStdErr, "VBoxNetDHCP: %s: %N\n", iMinLevel >= 2 ? "debug" : "info", pszFmt, &vaCopy);
/vbox/src/VBox/NetworkServices/NetLib/
H A DVBoxNetBaseService.cpp795 void VBoxNetBaseService::debugPrint(int32_t iMinLevel, bool fMsg, const char *pszFmt, ...) const argument
797 if (iMinLevel <= m->m_cVerbosity)
801 debugPrintV(iMinLevel, fMsg, pszFmt, va);
810 * @param iMinLevel The minimum m_cVerbosity level for this message.
815 void VBoxNetBaseService::debugPrintV(int iMinLevel, bool fMsg, const char *pszFmt, va_list va) const argument
817 if (iMinLevel <= m->m_cVerbosity)
823 iMinLevel >= 2 ? "debug" : "info",

Completed in 45 milliseconds