/packages/apps/DeskClock/src/com/android/deskclock/ |
D | LogUtils.kt | 55 fun wtf(message: String, vararg args: Any?) { in wtf() method 56 DEFAULT_LOGGER.wtf(message, *args) in wtf() 60 fun wtf(e: Throwable) { in wtf() method 61 DEFAULT_LOGGER.wtf(e) in wtf() 139 fun wtf(message: String, vararg args: Any?) { in wtf() method 141 Log.wtf(logTag, if (args.isEmpty() || args[0] == null) { in wtf() 149 fun wtf(e: Throwable) { in wtf() method in com.android.deskclock.LogUtils.Logger 151 Log.wtf(logTag, e) in wtf()
|
/packages/services/Car/car-builtin-lib/src/android/car/builtin/util/ |
D | Slogf.java | 122 public static int wtf(@NonNull String tag, @NonNull String msg) { in wtf() method in Slogf 123 return Slog.wtf(tag, msg); in wtf() 127 public static int wtf(@NonNull String tag, @NonNull Throwable tr) { in wtf() method in Slogf 128 return Slog.wtf(tag, tr); in wtf() 132 public static int wtf(@NonNull String tag, @NonNull String msg, @NonNull Throwable tr) { in wtf() method in Slogf 133 return Slog.wtf(tag, msg, tr); in wtf() 246 public static void wtf(@NonNull String tag, @NonNull String format, @Nullable Object... args) { in wtf() method in Slogf 247 wtf(tag, getMessage(format, args)); in wtf() 253 public static void wtf(@NonNull String tag, @NonNull Exception exception, in wtf() method in Slogf 255 wtf(tag, getMessage(format, args), exception); in wtf()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/hid/ |
D | HidDeviceNativeInterface.java | 153 Log.wtf( in onApplicationStateChanged() 166 Log.wtf( in onConnectStateChanged() 179 Log.wtf( in onGetReport() 192 Log.wtf( in onSetReport() 205 Log.wtf( in onSetProtocol() 218 Log.wtf( in onInterruptData() 231 Log.wtf( in onVirtualCableUnplug()
|
/packages/services/Telephony/src/com/android/services/telephony/ |
D | Log.java | 93 public static void wtf(String prefix, Throwable tr, String format, Object... args) { in wtf() method in Log 94 android.util.Log.wtf(TAG, (args == null || args.length == 0) ? format : in wtf() 98 public static void wtf(Object objectPrefix, Throwable tr, String format, Object... args) { in wtf() method in Log 99 android.util.Log.wtf(TAG, (args == null || args.length == 0) ? format : in wtf() 103 public static void wtf(String prefix, String format, Object... args) { in wtf() method in Log 104 android.util.Log.wtf(TAG, (args == null || args.length == 0) ? format : in wtf() 108 public static void wtf(Object objectPrefix, String format, Object... args) { in wtf() method in Log 109 android.util.Log.wtf(TAG, (args == null || args.length == 0) ? format : in wtf()
|
/packages/modules/AdServices/shared/testing-libraries/host-side/java/com/android/adservices/shared/testing/ |
D | ConsoleLogger.java | 41 CLog.wtf(message); in log() 59 CLog.wtf("invalid level (" + level + "): " + message); in log() 74 CLog.wtf(message); in log() 75 CLog.wtf(t); in log() 98 CLog.wtf("invalid level (" + level + "): " + message); in log()
|
/packages/services/Car/tests/GarageModeTestApp/src/com/google/android/car/garagemode/testapp/ |
D | Logger.java | 80 public void wtf(String msg) { in wtf() method in Logger 81 Log.wtf(mTag, buildMessage(msg)); in wtf() 85 public void wtf(String msg, Exception ex) { in wtf() method in Logger 86 Log.wtf(mTag, buildMessage(msg), ex); in wtf()
|
/packages/apps/UniversalMediaPlayer/java/com/android/pump/util/ |
D | Clog.java | 107 public static int wtf(@NonNull String tag, @NonNull String msg) { in wtf() method in Clog 108 return android.util.Log.wtf(tag, msg); in wtf() 111 public static int wtf(@NonNull String tag, @NonNull Throwable tr) { in wtf() method in Clog 112 return android.util.Log.wtf(tag, tr); in wtf() 115 public static int wtf(@NonNull String tag, @NonNull String msg, @NonNull Throwable tr) { in wtf() method in Clog 116 return android.util.Log.wtf(tag, msg, tr); in wtf()
|
/packages/apps/Dialer/java/com/android/voicemail/impl/ |
D | DefaultOmtpEventHandler.java | 47 VvmLog.wtf(TAG, "invalid event type " + event.getType() + " for " + event); in handleEvent() 85 VvmLog.wtf(TAG, "invalid configuration event " + event); in handleConfigurationEvent() 149 VvmLog.wtf(TAG, "invalid data channel event " + event); in handleDataChannelEvent() 175 VvmLog.wtf(TAG, "invalid notification channel event " + event); in handleNotificationChannelEvent() 190 VvmLog.wtf(TAG, "invalid other event " + event); in handleOtherEvent()
|
/packages/modules/AdServices/shared/testing-libraries/device-side/java/com/android/adservices/shared/testing/ |
D | AndroidLogger.java | 42 Log.wtf(tag, message); in log() 60 Log.wtf(tag, "invalid level (" + level + "): " + message); in log() 75 Log.wtf(tag, message, t); in log() 93 Log.wtf(tag, "invalid level (" + level + "): " + message); in log()
|
/packages/apps/Car/Settings/src/com/android/car/settings/common/ |
D | Logger.java | 175 public void wtf(String message) { in wtf() method in Logger 176 Log.wtf(TAG, mPrefix.concat(message)); in wtf() 186 public void wtf(String message, Throwable throwable) { in wtf() method in Logger 187 Log.wtf(TAG, mPrefix.concat(message), throwable); in wtf()
|
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ |
D | TestUtils.java | 78 .wtf(anyString(), anyString()); in makeSpyLogThrowExceptionForWtf() 85 .wtf(anyString(), anyString(), any()); in makeSpyLogThrowExceptionForWtf() 101 .wtf(anyString(), anyString()); in makeSpyLogDoLogErrorForWtf() 112 .wtf(anyString(), anyString(), any()); in makeSpyLogDoLogErrorForWtf()
|
/packages/services/Telephony/src/com/android/phone/vvm/ |
D | VvmLog.java | 96 public static int wtf(String tag, String log) { in wtf() method in VvmLog 98 return Log.wtf(tag, log); in wtf() 101 public static int wtf(String tag, String log, Throwable e) { in wtf() method in VvmLog 103 return Log.wtf(tag, log, e); in wtf()
|
/packages/modules/AdServices/shared/tests/device-side/java/com/android/adservices/shared/testing/ |
D | DeviceSideDynamicLoggerTest.java | 53 doReturn(0).when(() -> Log.wtf(anyString(), anyString())); in testWtf() 56 verify(() -> Log.wtf(mTag, "message in a bottle")); in testWtf() 62 doReturn(0).when(() -> Log.wtf(anyString(), anyString(), any())); in testWtf_withThrowable() 65 verify(() -> Log.wtf(mTag, "message in a bottle", mThrowable)); in testWtf_withThrowable()
|
/packages/modules/IPsec/src/java/com/android/internal/net/utils/ |
D | Log.java | 216 public void wtf(String prefix, String msg) { in wtf() method in Log 217 android.util.Log.wtf(mTAG, prefix + ": " + msg); in wtf() 231 public void wtf(String prefix, String msg, Throwable tr) { in wtf() method in Log 232 android.util.Log.wtf(mTAG, prefix + ": " + msg, tr); in wtf()
|
/packages/modules/CrashRecovery/service/java/com/android/server/ |
D | ExplicitHealthCheckController.java | 114 Slog.wtf(TAG, "Resetting health check controller callbacks"); in setCallbacks() 305 Slog.wtf(TAG, "Explicit health check service not found"); in bindService() 341 Slog.wtf(TAG, "Explicit health check service binding is null?? " + name); in bindService() 409 Slog.wtf(TAG, "Health check passed for package " + packageName in initState() 416 Slog.wtf(TAG, "Empty package passed explicit health check?"); in initState() 421 Slog.wtf(TAG, "Could not setCallback on explicit health check service"); in initState()
|
/packages/modules/Connectivity/service-t/src/com/android/server/net/ |
D | NetworkStatsRecorder.java | 228 Log.wtf(TAG, "problem completely reading network stats", e); in loadLocked() 231 Log.wtf(TAG, "problem completely reading network stats", e); in loadLocked() 339 Log.wtf(TAG, "problem persisting pending stats", e); in forcePersistLocked() 342 Log.wtf(TAG, "problem persisting pending stats", e); in forcePersistLocked() 358 Log.wtf(TAG, "problem removing UIDs " + Arrays.toString(uids), e); in removeUidsLocked() 361 Log.wtf(TAG, "problem removing UIDs " + Arrays.toString(uids), e); in removeUidsLocked() 515 Log.wtf(TAG, "problem importing netstats", e); in removeDataBefore() 518 Log.wtf(TAG, "problem importing netstats", e); in removeDataBefore()
|
/packages/modules/Connectivity/staticlibs/device/com/android/net/module/util/ |
D | SharedLog.java | 179 public void wtf(String msg) { in wtf() method in SharedLog 180 Log.wtf(mTag, record(Category.TERRIBLE, msg)); in wtf() 190 public void wtf(@NonNull String msg, @Nullable Throwable exception) { in wtf() method in SharedLog 195 Log.wtf(mTag, record(Category.TERRIBLE, msg + ": " + exception.getMessage()), exception); in wtf()
|
/packages/modules/AppSearch/service/java/com/android/server/appsearch/appsindexer/ |
D | AppOpenEventIndexerManagerService.java | 106 Slog.wtf(TAG, "AppOpenEventIndexerManagerService.onUserUnlocking() failed", e); in onUserUnlocking() 133 Slog.wtf(TAG, "AppOpenEventIndexerManagerService.onUserStopping() failed ", e); in onUserStopping() 154 Slog.wtf( in dumpAppOpenEventIndexerForUser() 218 Slog.wtf(TAG, "AppOpenEventIndexerManagerService.doUpdateForUser() failed ", e); in doUpdateForUser()
|
D | AppsIndexerManagerService.java | 110 Slog.wtf(TAG, "AppsIndexerManagerService.onUserUnlocking() failed ", e); in onUserUnlocking() 134 Slog.wtf(TAG, "AppsIndexerManagerService.onUserStopping() failed ", e); in onUserStopping() 153 Slog.wtf(TAG, "AppsIndexerManagerService.dumpAppsIndexerForUser() failed ", e); in dumpAppsIndexerForUser() 250 Slog.wtf(TAG, "AppsProviderChangedReceiver.onReceive() failed ", e); in onReceive()
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
D | LogUtil.java | 189 public static void wtf(final String tag, final String msg) { in wtf() method in LogUtil 192 android.util.Log.wtf(tag, msg, new Exception()); in wtf() 205 public static void wtf(final String tag, final String msg, final Throwable tr) { in wtf() method in LogUtil 209 android.util.Log.wtf(tag, msg, tr); in wtf()
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | ThreadUtil.java | 41 Log.wtf(TAG, new IllegalStateException(), "Must be on the main thread!"); in checkOnMainThread() 51 Log.wtf(TAG, new IllegalStateException(), "Must not be on the main thread!"); in checkNotOnMainThread()
|
/packages/modules/AppSearch/service/java/com/android/server/appsearch/contactsindexer/ |
D | ContactsIndexerManagerService.java | 114 Slog.wtf(TAG, "ContactsIndexerManagerService.onUserUnlocking() failed ", e); in onUserUnlocking() 135 Slog.wtf(TAG, "ContactsIndexerManagerService.onUserStopping() failed ", e); in onUserStopping() 155 Slog.wtf(TAG, "ContactsIndexerManagerService.dumpContactsIndexerForUser() failed ", e); in dumpContactsIndexerForUser() 246 Slog.wtf(TAG, "ContactsProviderChangedReceiver.onReceive() failed ", e); in onReceive()
|
/packages/modules/Connectivity/service/src/com/android/server/connectivity/ |
D | SatelliteAccessController.java | 83 Log.wtf(TAG, "Could not register satellite controller listener due to " + e); in register() 142 Log.wtf(TAG, "package manager found null"); in updateSatelliteNetworkFallbackUidListCache() 172 Log.wtf(TAG, "Invalid User Id"); in onRoleSmsChanged() 232 Log.wtf(TAG, "received unexpected intent: " + action); in start()
|
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/utils/ |
D | LogUtils.java | 314 public static void wtf(String tag, String format, Object... args) { in wtf() method in LogUtils 315 VvmLog.wtf(tag, String.format(format, args), new Error()); in wtf() 331 public static void wtf(String tag, Throwable tr, String format, Object... args) { in wtf() method in LogUtils 332 VvmLog.wtf(tag, String.format(format, args), tr); in wtf()
|
/packages/modules/IntentResolver/java/src/com/android/intentresolver/ |
D | IntentForwarderActivity.java | 120 Slog.wtf(TAG, IntentForwarderActivity.class.getName() + " cannot be called directly"); in onCreate() 139 Slog.wtf(TAG, "the intent: " + intentReceived + " cannot be forwarded from user " in onCreate() 212 Slog.wtf(TAG, "Unable to launch as UID " + getLaunchedFromUid() + " package " in startActivityAsCaller() 228 Slog.wtf(TAG, "Cannot start a chooser intent with no extra " + Intent.EXTRA_INTENT); in launchChooserActivityWithCorrectTab() 367 Slog.wtf(TAG, FORWARD_INTENT_TO_MANAGED_PROFILE in getManagedProfile() 379 Slog.wtf(TAG, FORWARD_INTENT_TO_PARENT in getProfileParent()
|