HomeSort by relevance Sort by last modified time
    Searched defs:LOG_IS_ON (Results 1 - 2 of 2) sorted by null

  /external/chromium/base/
logging.h 337 // Needed for LOG_IS_ON(ERROR).
340 // As special cases, we can assume that LOG_IS_ON(ERROR_REPORT) and
341 // LOG_IS_ON(FATAL) always hold. Also, LOG_IS_ON(DFATAL) always holds
344 #define LOG_IS_ON(severity) \
369 #define LOG(severity) LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity))
371 LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity) && (condition))
416 LAZY_STREAM(LOG_GETLASTERROR_STREAM(severity), LOG_IS_ON(severity))
422 LOG_IS_ON(severity))
431 LAZY_STREAM(LOG_ERRNO_STREAM(severity), LOG_IS_ON(severity)
    [all...]
  /external/chromium_org/base/
logging.h 365 // Needed for LOG_IS_ON(ERROR).
369 // As special cases, we can assume that LOG_IS_ON(ERROR_REPORT) and
370 // LOG_IS_ON(FATAL) always hold. Also, LOG_IS_ON(DFATAL) always holds
373 #define LOG_IS_ON(severity) \
398 #define LOG(severity) LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity))
400 LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity) && (condition))
445 LAZY_STREAM(LOG_GETLASTERROR_STREAM(severity), LOG_IS_ON(severity))
451 LOG_IS_ON(severity))
460 LAZY_STREAM(LOG_ERRNO_STREAM(severity), LOG_IS_ON(severity)
    [all...]

Completed in 2197 milliseconds