/aosp12/packages/apps/Launcher3/src/com/android/launcher3/model/ |
H A D | LoaderMemoryLogger.java | 36 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 D | sllog.cpp | 35 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 D | platform_log.h | 43 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 D | log.h | 32 #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 D | log_buffer_manager.cc | 102 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 D | log_buffer.cc | 34 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 D | AutofillManagerServiceShellCommand.java | 185 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 D | Exynos_log.c | 29 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 D | Exynos_log.h | 42 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 D | LogcatLog.java | 151 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 D | log_buffer_manager.h | 65 void log(chreLogLevel logLevel, const char *formatStr, ...); 71 void logVa(chreLogLevel logLevel, const char *formatStr, va_list args);
|
H A D | log_buffer.h | 101 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 D | ViewerConfigBuilder.kt | 93 writer.value(value.logLevel.name) 118 val logLevel: LogLevel, 122 fun key() = CodeUtils.hash(position, messageString, logLevel, logGroup)
|
H A D | CodeUtils.kt | 30 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 D | log_message_parser_base.h | 90 enum LogLevel logLevel; member 97 enum LogLevel logLevel; member
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/toast/ |
H A D | ToastLogger.kt | 62 logLevel: LogLevel, 66 buffer.log(TAG, logLevel, initializer, printer)
|
/aosp12/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | WindowTracing.java | 161 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 D | ConfigurationContainer.java | 699 @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 D | ImeInsetsSourceProvider.java | 286 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 D | LogUtil.java | 83 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 D | BroadcastDispatcherLogger.kt | 112 logLevel: LogLevel, 116 buffer.log(TAG, logLevel, initializer, printer)
|
/aosp12/system/chre/host/common/ |
H A D | log_message_parser_base.cc | 105 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 D | PrivacyLogger.kt | 145 logLevel: LogLevel, 149 buffer.log(TAG, logLevel, initializer, printer)
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/logging/ |
H A D | QSLogger.kt | 141 logLevel: LogLevel, 145 buffer.log(TAG, logLevel, initializer, printer)
|
/aosp12/hardware/knowles/athletico/sound_trigger_hal/tests/ |
H A D | crash_analyzer.c | 145 int logLevel = (evt >> 12) & 0xF; in find_fatal_assert() local 147 if (logLevel != DBG_LOG_LVL_FATAL) { in find_fatal_assert()
|