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

1 2 3

  /external/libtextclassifier/util/base/
logging_levels.h 23 enum LogSeverity {
logging_raw.h 30 void LowLevelLogging(LogSeverity severity, const std::string &tag,
logging_raw.cc 33 // Converts LogSeverity to level for __android_log_write.
34 int GetAndroidLogLevel(LogSeverity severity) {
50 void LowLevelLogging(LogSeverity severity, const std::string& tag,
72 // Converts LogSeverity to human-readable text.
73 const char *LogSeverityToString(LogSeverity severity) {
89 void LowLevelLogging(LogSeverity severity, const std::string &tag,
logging.cc 53 LogMessage::LogMessage(LogSeverity severity, const char *file_name,
logging.h 78 LogMessage(LogSeverity severity, const char *file_name,
87 const LogSeverity severity_;
  /art/libartbase/base/
logging.h 28 // Make libbase's LogSeverity more easily available.
29 using ::android::base::LogSeverity;
93 android::base::LogSeverity severity,
  /system/core/base/include/android-base/
logging.h 30 // Replace `INFO` with any severity from `enum LogSeverity`.
83 enum LogSeverity {
99 using LogFunction = std::function<void(LogId, LogSeverity, const char*, const char*,
103 void KernelLogger(LogId, LogSeverity, const char*, const char*, unsigned int, const char*);
104 void StderrLogger(LogId, LogSeverity, const char*, const char*, unsigned int, const char*);
118 void operator()(LogId, LogSeverity, const char* tag, const char* file,
172 // unqualified name for a LogSeverity, and returns a LogSeverity value.
426 LogMessage(const char* file, unsigned int line, LogId id, LogSeverity severity, const char* tag,
436 static void LogLine(const char* file, unsigned int line, LogId id, LogSeverity severity
    [all...]
  /system/core/base/
logging.cpp 166 static LogSeverity gMinimumLogSeverity = INFO;
169 void KernelLogger(android::base::LogId, android::base::LogSeverity severity,
184 "Mismatch in size of kLogSeverityToKernelLogLevel and values in LogSeverity");
208 void StderrLogger(LogId, LogSeverity severity, const char* tag, const char* file, unsigned int line,
224 "Mismatch in size of log_characters and values in LogSeverity");
244 void LogdLogger::operator()(LogId id, LogSeverity severity, const char* tag,
253 "Mismatch in size of kLogSeverityToAndroidLogPriority and values in LogSeverity");
364 LogMessageData(const char* file, unsigned int line, LogId id, LogSeverity severity,
381 LogSeverity GetSeverity() const {
408 const LogSeverity severity_
    [all...]
logging_test.cpp 116 android::base::ScopedLogSeverity sls2(static_cast<android::base::LogSeverity>(i)); \
120 android::base::ScopedLogSeverity sls2(static_cast<android::base::LogSeverity>(i)); \
130 android::base::ScopedLogSeverity sls2(static_cast<android::base::LogSeverity>(i)); \
134 android::base::ScopedLogSeverity sls2(static_cast<android::base::LogSeverity>(i)); \
196 static std::string make_log_pattern(android::base::LogSeverity severity,
200 "Mismatch in size of log_characters and values in LogSeverity");
209 static void CheckMessage(const CapturedStderr& cap, android::base::LogSeverity severity,
620 android::base::ScopedLogSeverity sls(android::base::LogSeverity::INFO);
624 CheckMessage(cap, android::base::LogSeverity::INFO, expected_msg, expected_tag);
  /external/libchrome/base/
logging.h 292 typedef int LogSeverity;
293 const LogSeverity LOG_VERBOSE = -1; // This is level 1 verbosity
296 const LogSeverity LOG_INFO = 0;
297 const LogSeverity LOG_WARNING = 1;
298 const LogSeverity LOG_ERROR = 2;
299 const LogSeverity LOG_FATAL = 3;
300 const LogSeverity LOG_NUM_SEVERITIES = 4;
304 const LogSeverity LOG_DFATAL = LOG_ERROR;
306 const LogSeverity LOG_DFATAL = LOG_FATAL;
346 const LogSeverity LOG_0 = LOG_ERROR
    [all...]
  /external/google-breakpad/src/testing/src/
gmock-internal-utils.cc 110 GTEST_API_ bool LogIsVisible(LogSeverity severity) {
131 GTEST_API_ void Log(LogSeverity severity,
  /external/googletest/googlemock/src/
gmock-internal-utils.cc 110 GTEST_API_ bool LogIsVisible(LogSeverity severity) {
131 GTEST_API_ void Log(LogSeverity severity, const std::string& message,
  /external/v8/testing/gmock/src/
gmock-internal-utils.cc 110 GTEST_API_ bool LogIsVisible(LogSeverity severity) {
131 GTEST_API_ void Log(LogSeverity severity,
  /art/runtime/base/
file_utils.h 31 bool PrintFileToLog(const std::string& file_name, android::base::LogSeverity level);
  /art/runtime/gc/
heap_verification_test.cc 98 ScopedLogSeverity sls(LogSeverity::INFO);
110 ScopedLogSeverity sls(LogSeverity::INFO);
130 ScopedLogSeverity sls(LogSeverity::INFO);
151 ScopedLogSeverity sls(LogSeverity::INFO);
  /bionic/tools/relocation_packer/src/
debug.h 83 typedef relocation_packer::Logger::Severity LogSeverity;
  /system/core/init/
log.cpp 73 android::base::LogSeverity severity = android::base::ERROR;
  /art/tools/common/
common.py 57 class LogSeverity(Enum):
72 for log_severity in LogSeverity:
263 def RunCommand(self, cmd, log_severity=LogSeverity.ERROR):
268 log_severity: LogSeverity, minimum severity of logs included in output.
337 def RunCommand(self, cmd, log_severity=LogSeverity.ERROR):
431 """Extracts LogSeverity from a single logcat line in brief format."""
434 return LogSeverity.FromSymbol(brief_log_line[0])
436 def RunCommand(self, cmd, log_severity=LogSeverity.ERROR):
  /system/extras/simpleperf/
command.cpp 104 static void StderrLogger(android::base::LogId, android::base::LogSeverity severity,
114 android::base::LogSeverity log_severity = android::base::INFO;
  /art/libdexfile/dex/
compact_offset_table_test.cc 72 android::base::ScopedLogSeverity sls(android::base::LogSeverity::INFO);
  /art/runtime/
exec_utils_test.cc 48 ScopedLogSeverity sls(LogSeverity::FATAL);
monitor_test.cc 299 ScopedLogSeverity sls(LogSeverity::FATAL);
309 ScopedLogSeverity sls(LogSeverity::FATAL);
320 ScopedLogSeverity sls(LogSeverity::FATAL);
346 ScopedLogSeverity sls(LogSeverity::FATAL);
  /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/googletest/googlemock/include/gmock/internal/
gmock-internal-utils.h 306 enum LogSeverity {
322 GTEST_API_ bool LogIsVisible(LogSeverity severity);
331 GTEST_API_ void Log(LogSeverity severity, const std::string& message,
  /external/v8/testing/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,

Completed in 530 milliseconds

1 2 3