OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LOG_IS_ON
(Results
1 - 2
of
2
) sorted by null
/system/extras/perfprofd/quipper/base/
logging.h
165
// As special cases, we can assume that
LOG_IS_ON
(FATAL) always holds. Also,
166
//
LOG_IS_ON
(DFATAL) always holds in debug mode. In particular, CHECK()s will
168
#define
LOG_IS_ON
(severity) \
188
#define LOG(severity) LAZY_STREAM(LOG_STREAM(severity),
LOG_IS_ON
(severity))
190
LAZY_STREAM(LOG_STREAM(severity),
LOG_IS_ON
(severity) && (condition))
211
LAZY_STREAM(PLOG_STREAM(severity),
LOG_IS_ON
(severity))
214
LAZY_STREAM(PLOG_STREAM(severity),
LOG_IS_ON
(severity) && (condition))
324
#define DLOG_IS_ON(severity)
LOG_IS_ON
(severity)
/external/libchrome/base/
logging.h
274
// Used by
LOG_IS_ON
to lazy-evaluate stream arguments.
371
// Needed for
LOG_IS_ON
(ERROR).
375
// As special cases, we can assume that
LOG_IS_ON
(FATAL) always holds. Also,
376
//
LOG_IS_ON
(DFATAL) always holds in debug mode. In particular, CHECK()s will
378
#define
LOG_IS_ON
(severity) \
403
#define LOG(severity) LAZY_STREAM(LOG_STREAM(severity),
LOG_IS_ON
(severity))
405
LAZY_STREAM(LOG_STREAM(severity),
LOG_IS_ON
(severity) && (condition))
451
LAZY_STREAM(PLOG_STREAM(severity),
LOG_IS_ON
(severity))
454
LAZY_STREAM(PLOG_STREAM(severity),
LOG_IS_ON
(severity) && (condition))
656
#define DLOG_IS_ON(severity)
LOG_IS_ON
(severity
[
all
...]
Completed in 87 milliseconds