Home
last modified time | relevance | path

Searched refs:logLevel (Results 1 – 25 of 45) sorted by relevance

12

/aosp12/packages/apps/Launcher3/src/com/android/launcher3/model/
H A DLoaderMemoryLogger.java36 protected void addLog(int logLevel, String tag, String log) { in addLog() argument
37 addLog(logLevel, tag, log, null); in addLog()
41 int logLevel, String tag, String log, Exception stackTrace) { in addLog() argument
42 switch (logLevel) { in addLog()
49 mLogEntries.add(new LogEntry(logLevel, tag, log, stackTrace)); in addLog()
52 throw new IllegalArgumentException("Invalid log level provided: " + logLevel); in addLog()
84 int logLevel, String logTag, String logString, @Nullable Exception stackStrace) { in LogEntry() argument
85 mLogLevel = logLevel; in LogEntry()
/aosp12/frameworks/wilhelm/src/
H A Dsllog.cpp35 SL_API void SLAPIENTRY slAndroidSetLogLevel(SLAndroidLogLevel logLevel)
38 if (logLevel > SLAndroidLogLevel_Error)
39 logLevel = SLAndroidLogLevel_Error;
40 slLogLevel = logLevel;
/aosp12/system/chre/platform/linux/include/chre/platform/linux/
H A Dplatform_log.h43 void log(chreLogLevel logLevel, const char *formatStr, ...) { in log() argument
46 logVa(logLevel, formatStr, args); in log()
54 void logVa(chreLogLevel logLevel, const char *formatStr, va_list args);
/aosp12/system/chre/platform/linux/include/chre/target_platform/
H A Dlog.h32 #define CHRE_LINUX_LOG(logLevel, levelStr, color, fmt, ...) \ argument
38 #define CHRE_LINUX_LOG(logLevel, levelStr, color, fmt, ...) \ argument
41 logLevel, "\e[" color "m%s %s:%d\t" fmt "\e[0m", levelStr, \
/aosp12/system/chre/platform/shared/
H A Dlog_buffer_manager.cc102 void LogBufferManager::log(chreLogLevel logLevel, const char *formatStr, ...) { in log() argument
105 logVa(logLevel, formatStr, args); in log()
109 void LogBufferManager::logVa(chreLogLevel logLevel, const char *formatStr, in logVa() argument
111 LogBufferLogLevel logBufLogLevel = chreToLogBufferLogLevel(logLevel); in logVa()
H A Dlog_buffer.cc34 void LogBuffer::handleLog(LogBufferLogLevel logLevel, uint32_t timestampMs, in handleLog() argument
38 handleLogVa(logLevel, timestampMs, logFormat, args); in handleLog()
42 void LogBuffer::handleLogVa(LogBufferLogLevel logLevel, uint32_t timestampMs, in handleLogVa() argument
66 uint8_t logLevelAdjusted = static_cast<uint8_t>(logLevel) + 1; in handleLogVa()
/aosp12/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DAutofillManagerServiceShellCommand.java185 final int logLevel = mService.getLogLevel(); in getLogLevel() local
186 switch (logLevel) { in getLogLevel()
197 pw.println("unknow (" + logLevel + ")"); in getLogLevel()
203 final String logLevel = getNextArgRequired(); in setLogLevel() local
204 switch (logLevel.toLowerCase()) { in setLogLevel()
215 pw.println("Invalid level: " + logLevel); in setLogLevel()
/aosp12/hardware/google/gchips/libexynosutils/
H A DExynos_log.c29 void Exynos_Log(EXYNOS_DEV_LOG_LEVEL logLevel, const char *tag, const char *msg, ...) in Exynos_Log() argument
35 switch (logLevel) { in Exynos_Log()
H A DExynos_log.h42 void Exynos_Log(EXYNOS_DEV_LOG_LEVEL logLevel, const char *tag, const char *msg, ...);
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DLogcatLog.java151 RealLogMessage(int logLevel, String tag, String format) { in RealLogMessage() argument
152 this(logLevel, tag, format, null); in RealLogMessage()
155 RealLogMessage(int logLevel, String tag, String format, String prefix) { in RealLogMessage() argument
156 mLogLevel = logLevel; in RealLogMessage()
/aosp12/system/chre/platform/shared/include/chre/platform/shared/
H A Dlog_buffer_manager.h65 void log(chreLogLevel logLevel, const char *formatStr, ...);
71 void logVa(chreLogLevel logLevel, const char *formatStr, va_list args);
H A Dlog_buffer.h101 void handleLog(LogBufferLogLevel logLevel, uint32_t timestampMs,
109 void handleLogVa(LogBufferLogLevel logLevel, uint32_t timestampMs,
/aosp12/frameworks/base/tools/protologtool/src/com/android/protolog/tool/
H A DViewerConfigBuilder.kt93 writer.value(value.logLevel.name)
118 val logLevel: LogLevel,
122 fun key() = CodeUtils.hash(position, messageString, logLevel, logGroup)
H A DCodeUtils.kt30 fun hash(position: String, messageString: String, logLevel: LogLevel, logGroup: LogGroup): Int {
31 return (position + messageString + logLevel.name + logGroup.name)
/aosp12/system/chre/host/common/include/chre_host/
H A Dlog_message_parser_base.h90 enum LogLevel logLevel; member
97 enum LogLevel logLevel; member
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/toast/
H A DToastLogger.kt62 logLevel: LogLevel,
66 buffer.log(TAG, logLevel, initializer, printer)
/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowTracing.java161 private void setLogLevel(@WindowTraceLogLevel int logLevel, PrintWriter pw) { in setLogLevel() argument
162 logAndPrintln(pw, "Setting window tracing log level to " + logLevel); in setLogLevel()
163 mLogLevel = logLevel; in setLogLevel()
165 switch (logLevel) { in setLogLevel()
H A DConfigurationContainer.java699 @WindowTraceLogLevel int logLevel) { in dumpDebug() argument
702 if (logLevel == WindowTraceLogLevel.ALL || mHasOverrideConfiguration) { in dumpDebug()
704 logLevel == WindowTraceLogLevel.CRITICAL); in dumpDebug()
709 if (logLevel == WindowTraceLogLevel.ALL) { in dumpDebug()
715 if (logLevel == WindowTraceLogLevel.TRIM) { in dumpDebug()
H A DImeInsetsSourceProvider.java286 void dumpDebug(ProtoOutputStream proto, long fieldId, @WindowTraceLogLevel int logLevel) { in dumpDebug() argument
288 super.dumpDebug(proto, INSETS_SOURCE_PROVIDER, logLevel); in dumpDebug()
292 imeRequesterWindow.dumpDebug(proto, IME_TARGET_FROM_IME, logLevel); in dumpDebug()
/aosp12/packages/services/Mms/src/com/android/mms/service/
H A DLogUtil.java83 public static boolean isLoggable(final int logLevel) { in isLoggable() argument
84 return Log.isLoggable(TAG, logLevel); in isLoggable()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/broadcast/logging/
H A DBroadcastDispatcherLogger.kt112 logLevel: LogLevel,
116 buffer.log(TAG, logLevel, initializer, printer)
/aosp12/system/chre/host/common/
H A Dlog_message_parser_base.cc105 emitLogMessage(message->logLevel, timeNs / kOneMillisecondInNanoseconds, in log()
132 emitLogMessage(message->logLevel, le32toh(message->timestampMillis), in logV2()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/privacy/logging/
H A DPrivacyLogger.kt145 logLevel: LogLevel,
149 buffer.log(TAG, logLevel, initializer, printer)
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/logging/
H A DQSLogger.kt141 logLevel: LogLevel,
145 buffer.log(TAG, logLevel, initializer, printer)
/aosp12/hardware/knowles/athletico/sound_trigger_hal/tests/
H A Dcrash_analyzer.c145 int logLevel = (evt >> 12) & 0xF; in find_fatal_assert() local
147 if (logLevel != DBG_LOG_LVL_FATAL) { in find_fatal_assert()

12