HomeSort by relevance Sort by last modified time
    Searched defs:VLOG_IS_ON (Results 1 - 6 of 6) 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 37 // The members of this struct are the valid arguments to VLOG and VLOG_IS_ON in code,
103 #define VLOG_IS_ON(module) UNLIKELY(::art::gLogVerbosity.module)
108 if (VLOG_IS_ON(module)) \
  /external/ceres-solver/internal/ceres/miniglog/glog/
logging.h 319 # define VLOG_IS_ON(x) (1)
321 # define VLOG_IS_ON(x) (x <= MAX_LOG_LEVEL)
  /external/libweave/third_party/chromium/base/
logging.h 102 // There's also VLOG_IS_ON(n) "verbose level" condition macro. To be used as
104 // if (VLOG_IS_ON(2)) {
319 // We can't do any caching tricks with VLOG_IS_ON() like the
323 #define VLOG_IS_ON(verboselevel) \
353 LAZY_STREAM(VLOG_STREAM(verbose_level), VLOG_IS_ON(verbose_level))
357 VLOG_IS_ON(verbose_level) && (condition))
538 #define DVLOG(verboselevel) DVLOG_IF(verboselevel, VLOG_IS_ON(verboselevel))
  /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 103 // There's also VLOG_IS_ON(n) "verbose level" condition macro. To be used as
105 // if (VLOG_IS_ON(2)) {
379 // We can't do any caching tricks with VLOG_IS_ON() like the
383 #define VLOG_IS_ON(verboselevel) \
413 LAZY_STREAM(VLOG_STREAM(verbose_level), VLOG_IS_ON(verbose_level))
417 VLOG_IS_ON(verbose_level) && (condition))
430 LAZY_STREAM(VPLOG_STREAM(verbose_level), VLOG_IS_ON(verbose_level))
434 VLOG_IS_ON(verbose_level) && (condition))
666 #define DVLOG(verboselevel) DVLOG_IF(verboselevel, VLOG_IS_ON(verboselevel))
668 #define DVPLOG(verboselevel) DVPLOG_IF(verboselevel, VLOG_IS_ON(verboselevel)
    [all...]

Completed in 613 milliseconds