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

  /system/core/adb/
adb_trace.h 43 #define VLOG_IS_ON(TAG) \
47 if (LIKELY(!VLOG_IS_ON(TAG))) \
  /art/runtime/base/
logging.h 35 // The members of this struct are the valid arguments to VLOG and VLOG_IS_ON in code,
106 #define VLOG_IS_ON(module) UNLIKELY(::art::gLogVerbosity.module)
110 #define VLOG(module) if (VLOG_IS_ON(module)) LOG(INFO)
  /system/extras/perfprofd/quipper/base/
logging.h 74 // There's also VLOG_IS_ON(n) "verbose level" condition macro. To be used as
76 // if (VLOG_IS_ON(2)) {
171 #define VLOG_IS_ON(verboselevel) false
197 LAZY_STREAM(VLOG_STREAM(verbose_level), VLOG_IS_ON(verbose_level))
201 VLOG_IS_ON(verbose_level) && (condition))
365 #define DVLOG(verboselevel) DVLOG_IF(verboselevel, VLOG_IS_ON(verboselevel))
367 #define DVPLOG(verboselevel) DVPLOG_IF(verboselevel, VLOG_IS_ON(verboselevel))
  /external/libchrome/base/
logging.h 105 // There's also VLOG_IS_ON(n) "verbose level" condition macro. To be used as
107 // if (VLOG_IS_ON(2)) {
381 // We can't do any caching tricks with VLOG_IS_ON() like the
385 #define VLOG_IS_ON(verboselevel) \
412 LAZY_STREAM(VLOG_STREAM(verbose_level), VLOG_IS_ON(verbose_level))
416 VLOG_IS_ON(verbose_level) && (condition))
429 LAZY_STREAM(VPLOG_STREAM(verbose_level), VLOG_IS_ON(verbose_level))
433 VLOG_IS_ON(verbose_level) && (condition))
697 #define DVLOG(verboselevel) DVLOG_IF(verboselevel, VLOG_IS_ON(verboselevel))
699 #define DVPLOG(verboselevel) DVPLOG_IF(verboselevel, VLOG_IS_ON(verboselevel)
    [all...]

Completed in 230 milliseconds