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

  /frameworks/base/cmds/incidentd/src/
Log.h 32 #define VLOG(...) \
  /frameworks/base/cmds/statsd/src/
Log.h 32 #define VLOG(...) \
  /external/perf_data_converter/src/quipper/androidbase/base/
logging.h 25 #define VLOG(level) ::logging::gVlogEnabled && LOG(INFO)
28 #define DVLOG(x) android::base::kEnableDChecks && VLOG(x)
  /device/google/cuttlefish_common/host/libs/vadb/
virtual_adb_client.cpp 30 #define VLOG(X) if (FLAGS_debug_adb_client) LOG(VERBOSE)
130 VLOG(1) << "Sending heartbeat...";
142 VLOG(1) << "Remote server status: " << is_ready;
  /external/google-benchmark/src/
log.h 69 #define VLOG(x) \
  /external/libcxx/utils/google-benchmark/src/
log.h 69 #define VLOG(x) \
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
log.h 69 #define VLOG(x) \
  /system/core/adb/
adb_trace.h 46 #define VLOG(TAG) \
54 VLOG(TRACE_TAG) << android::base::StringPrintf(__VA_ARGS__)
  /bionic/tools/relocation_packer/src/
debug.h 12 // VLOG(level) logs INFO messages where level is less than or equal to the
98 // VLOG(level) prints its message as INFO if level is less than or equal to
100 #define VLOG(level) \
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
logging.h 57 // Returns the minimum log level for VLOG statements.
58 // E.g., if MinVLogLevel() is 2, then VLOG(2) statements will produce output,
59 // but VLOG(3) will not. Defaults to 0.
94 #define VLOG(lvl) \
  /frameworks/ml/nn/common/include/
Utils.h 63 #define VLOG(TAG) \
  /art/libartbase/base/
logging.h 35 // The members of this struct are the valid arguments to VLOG and VLOG_IS_ON in code,
105 // VLOG(jni) << "A JNI operation was performed";
106 #define VLOG(module) if (VLOG_IS_ON(module)) LOG(INFO)
  /external/perf_data_converter/src/quipper/mybase/base/
logging.h 33 // Note that log messages for VLOG(x) are logged at level -x, so setting
40 // Gets the VLOG verbosity level.
98 class VLog : public LogBase {
100 VLog(int vlog_level, const char* file, int line)
101 : LogBase(std::string("VLOG(") + std::to_string(vlog_level) + ")", file,
105 ~VLog() {
120 #define VLOG(level) logging::VLog(level, __FILE__, __LINE__)
136 #define DVLOG(x) VLOG(x)
  /external/gflags/src/
util.h 101 // For now, we ignore the level for logging, and don't show *VLOG's at
104 #define VLOG(level) if (true) {} else std::cerr
  /external/tensorflow/tensorflow/core/platform/default/
logging.h 44 // Returns the minimum log level for VLOG statements.
45 // E.g., if MinVLogLevel() is 2, then VLOG(2) statements will produce output,
46 // but VLOG(3) will not. Defaults to 0.
80 // Turn VLOG off when under mobile devices for considerations of binary size.
84 // of VLOG
89 #define VLOG(lvl) \
  /external/libchrome/base/
logging.h 84 // VLOG(1) << "I'm printed when you run the program with --v=1 or more";
85 // VLOG(2) << "I'm printed when you run the program with --v=2 or more";
91 // a. VLOG(2) and lower messages to be printed from profile.{h,cc}
92 // b. VLOG(1) and lower messages to be printed from icon_loader.{h,cc}
93 // c. VLOG(3) and lower messages to be printed from files prefixed with
95 // d. VLOG(4) and lower messages to be printed from files under a
97 // e. VLOG(0) and lower messages to be printed from elsewhere
110 // // that can't be accomplished with just VLOG(2) << ...;
240 // Note that log messages for VLOG(x) are logged at level -x, so setting
250 // Gets the VLOG default verbosity level
    [all...]

Completed in 1009 milliseconds