OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LoggingSeverity
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/system_wrappers/include/
logging.h
33
// compile-time constant of the
LoggingSeverity
type, without the namespace
35
// LOG_V(sev) Like LOG(), but sev is a run-time variable of the
LoggingSeverity
48
// Note that the non-standard
LoggingSeverity
aliases exist because they are
58
enum
LoggingSeverity
{
64
LogMessage(const char* file, int line,
LoggingSeverity
sev);
67
static bool Loggable(
LoggingSeverity
sev);
75
LoggingSeverity
severity_;
/external/webrtc/webrtc/base/
logging.h
22
// compile-time constant of the
LoggingSeverity
type, without the namespace
24
// LOG_V(sev) Like LOG(), but sev is a run-time variable of the
LoggingSeverity
89
// Note that the non-standard
LoggingSeverity
aliases exist because they are
100
enum
LoggingSeverity
{
135
LogMessage(const char* file, int line,
LoggingSeverity
sev,
141
LoggingSeverity
sev,
146
static inline bool Loggable(
LoggingSeverity
sev) { return (sev >= min_sev_); }
168
static void LogToDebug(
LoggingSeverity
min_sev);
169
static
LoggingSeverity
GetLogToDebug() { return dbg_sev_; }
182
static void AddLogToStream(LogSink* stream,
LoggingSeverity
min_sev)
[
all
...]
Completed in 804 milliseconds