HomeSort by relevance Sort by last modified time
    Searched refs:LogSeverity (Results 1 - 25 of 59) sorted by null

1 2 3

  /bionic/tools/relocation_packer/src/
debug.h 83 typedef relocation_packer::Logger::Severity LogSeverity;
84 using LogSeverity::INFO;
85 using LogSeverity::WARNING;
86 using LogSeverity::ERROR;
87 using LogSeverity::FATAL;
  /external/libchrome/base/mac/
mach_logging.cc 35 LogSeverity severity,
51 LogSeverity severity,
mach_logging.h 40 LogSeverity severity,
107 LogSeverity severity,
mac_logging.h 36 LogSeverity severity,
  /art/runtime/base/
logging.cc 42 static LogSeverity gMinimumLogSeverity = INFO;
56 static bool PrintDirectly(LogSeverity severity) {
141 LogMessageData(const char* file, unsigned int line, LogSeverity severity, int error)
158 LogSeverity GetSeverity() const {
178 const LogSeverity severity_;
185 LogMessage::LogMessage(const char* file, unsigned int line, LogSeverity severity, int error)
198 if (!PrintDirectly(data_->GetSeverity()) && data_->GetSeverity() != LogSeverity::NONE) {
249 "Mismatch in size of kLogSeverityToAndroidLogPriority and values in LogSeverity");
252 void LogMessage::LogLine(const char* file, unsigned int line, LogSeverity log_severity,
254 if (log_severity == LogSeverity::NONE)
    [all...]
logging.h 26 enum LogSeverity {
243 LogMessage(const char* file, unsigned int line, LogSeverity severity, int error);
252 static void LogLine(const char* file, unsigned int line, LogSeverity severity, const char* msg);
255 static void LogLineLowStack(const char* file, unsigned int line, LogSeverity severity,
267 explicit ScopedLogSeverity(LogSeverity level);
271 LogSeverity old_;
  /system/core/base/include/android-base/
logging.h 38 enum LogSeverity {
53 typedef std::function<void(LogId, LogSeverity, const char*, const char*,
56 extern void StderrLogger(LogId, LogSeverity, const char*, const char*,
66 void operator()(LogId, LogSeverity, const char* tag, const char* file,
92 extern LogSeverity GetMinimumLogSeverity();
307 LogSeverity severity, int error);
317 LogSeverity severity, const char* msg);
328 explicit ScopedLogSeverity(LogSeverity level);
332 LogSeverity old_;
  /external/libweave/third_party/chromium/base/
logging.h 271 typedef int LogSeverity;
272 const LogSeverity LOG_VERBOSE = -1; // This is level 1 verbosity
275 const LogSeverity LOG_INFO = 0;
276 const LogSeverity LOG_WARNING = 1;
277 const LogSeverity LOG_ERROR = 2;
278 const LogSeverity LOG_FATAL = 3;
279 const LogSeverity LOG_NUM_SEVERITIES = 4;
283 const LogSeverity LOG_DFATAL = LOG_ERROR;
285 const LogSeverity LOG_DFATAL = LOG_FATAL;
547 const LogSeverity LOG_DCHECK = LOG_FATAL
    [all...]
logging.cc 131 LogMessage::LogMessage(const char* file, int line, LogSeverity severity)
149 LogMessage::LogMessage(const char* file, int line, LogSeverity severity,
  /system/extras/perfprofd/quipper/base/
logging.h 130 typedef int LogSeverity;
131 const LogSeverity LOG_VERBOSE = -1; // This is level 1 verbosity
134 const LogSeverity LOG_INFO = 0;
135 const LogSeverity LOG_WARNING = 1;
136 const LogSeverity LOG_ERROR = 2;
137 const LogSeverity LOG_FATAL = 3;
138 const LogSeverity LOG_NUM_SEVERITIES = 4;
376 const LogSeverity LOG_DCHECK = LOG_FATAL;
384 const LogSeverity LOG_DCHECK = LOG_INFO;
460 LogMessage(const char* file, int line, LogSeverity severity)
    [all...]
logging.cc 60 LogMessage::LogMessage(const char* file, int line, LogSeverity severity)
72 LogMessage::LogMessage(const char* file, int line, LogSeverity severity,
  /system/core/base/
logging.cpp 172 static LogSeverity gMinimumLogSeverity = INFO;
175 LogSeverity GetMinimumLogSeverity() {
187 void StderrLogger(LogId, LogSeverity severity, const char*, const char* file,
191 "Mismatch in size of log_characters and values in LogSeverity");
208 "in LogSeverity");
216 void LogdLogger::operator()(LogId id, LogSeverity severity, const char* tag,
321 LogSeverity severity, int error)
337 LogSeverity GetSeverity() const {
362 const LogSeverity severity_;
369 LogSeverity severity, int error
    [all...]
  /external/libchrome/base/
logging.h 317 typedef int LogSeverity;
318 const LogSeverity LOG_VERBOSE = -1; // This is level 1 verbosity
321 const LogSeverity LOG_INFO = 0;
322 const LogSeverity LOG_WARNING = 1;
323 const LogSeverity LOG_ERROR = 2;
324 const LogSeverity LOG_FATAL = 3;
325 const LogSeverity LOG_NUM_SEVERITIES = 4;
329 const LogSeverity LOG_DFATAL = LOG_ERROR;
331 const LogSeverity LOG_DFATAL = LOG_FATAL;
370 const LogSeverity LOG_0 = LOG_ERROR
    [all...]
  /external/gmock/src/
gmock-internal-utils.cc 110 GTEST_API_ bool LogIsVisible(LogSeverity severity) {
131 GTEST_API_ void Log(LogSeverity severity,
  /external/google-breakpad/src/testing/src/
gmock-internal-utils.cc 110 GTEST_API_ bool LogIsVisible(LogSeverity severity) {
131 GTEST_API_ void Log(LogSeverity severity,
  /art/runtime/verifier/
method_verifier_test.cc 44 LogSeverity::WARNING,
method_verifier.h 158 LogSeverity log_level,
168 LogSeverity log_level,
342 LogSeverity log_level,
368 LogSeverity log_level,
    [all...]
  /system/extras/simpleperf/
main.cpp 30 android::base::LogSeverity log_severity = android::base::WARNING;
utils.h 122 bool GetLogSeverity(const std::string& name, android::base::LogSeverity* severity);
utils.cpp 185 bool GetLogSeverity(const std::string& name, android::base::LogSeverity* severity) {
186 static std::map<std::string, android::base::LogSeverity> log_severity_map = {
  /external/google-breakpad/src/testing/include/gmock/internal/
gmock-internal-utils.h 306 enum LogSeverity {
322 GTEST_API_ bool LogIsVisible(LogSeverity severity);
331 GTEST_API_ void Log(LogSeverity severity,
  /external/gmock/include/gmock/internal/
gmock-internal-utils.h 306 enum LogSeverity {
322 GTEST_API_ bool LogIsVisible(LogSeverity severity);
331 GTEST_API_ void Log(LogSeverity severity,
  /art/runtime/
monitor_test.cc 352 ScopedLogSeverity sls(LogSeverity::FATAL);
362 ScopedLogSeverity sls(LogSeverity::FATAL);
373 ScopedLogSeverity sls(LogSeverity::FATAL);
399 ScopedLogSeverity sls(LogSeverity::FATAL);
  /system/core/adb/
adb_trace.cpp 40 void AdbLogger(android::base::LogId id, android::base::LogSeverity severity,
  /system/extras/ext4_utils/
ext4_crypt_init_extensions.cpp 45 static void kernel_logger(android::base::LogId, android::base::LogSeverity severity, const char*,

Completed in 473 milliseconds

1 2 3