/frameworks/base/services/robotests/src/com/android/server/testing/shadows/ |
D | ShadowSlog.java | 83 protected static int wtf(String tag, String msg) { in wtf() method in ShadowSlog 84 return Log.wtf(tag, msg); in wtf() 89 Log.wtf(tag, msg); in wtfQuiet() 94 return Log.wtf(tag, msg); in wtfStack() 98 protected static int wtf(String tag, Throwable tr) { in wtf() method in ShadowSlog 99 return Log.wtf(tag, tr); in wtf() 103 protected static int wtf(String tag, String msg, Throwable tr) { in wtf() method in ShadowSlog 104 return Log.wtf(tag, msg, tr); in wtf()
|
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/utils/ |
D | SlogfTest.java | 209 Slogf.wtf(TAG, "msg"); in testWtf_msg() 211 verify(()-> Slog.wtf(TAG, "msg")); in testWtf_msg() 216 Slogf.wtf(TAG, "msg", mThrowable); in testWtf_msgAndThrowable() 218 verify(()-> Slog.wtf(TAG, "msg", mThrowable)); in testWtf_msgAndThrowable() 223 Slogf.wtf(TAG, mThrowable); in testWtf_Throwable() 225 verify(()-> Slog.wtf(TAG, mThrowable)); in testWtf_Throwable() 230 Slogf.wtf(TAG, "msg in a %s", "bottle"); in testWtf_msgFormatted() 232 verify(()-> Slog.wtf(TAG, "msg in a bottle")); in testWtf_msgFormatted() 258 Slogf.wtf(TAG, mThrowable, "msg in a %s", "bottle"); in testWtf_msgFormattedWithThrowable() 260 verify(()-> Slog.wtf(TAG, "msg in a bottle", mThrowable)); in testWtf_msgFormattedWithThrowable()
|
/frameworks/base/services/core/java/com/android/server/utils/ |
D | Slogf.java | 117 public static int wtf(String tag, String msg) { in wtf() method in Slogf 118 return Slog.wtf(tag, msg); in wtf() 132 public static int wtf(String tag, Throwable tr) { in wtf() method in Slogf 133 return Slog.wtf(tag, tr); in wtf() 137 public static int wtf(String tag, String msg, Throwable tr) { in wtf() method in Slogf 138 return Slog.wtf(tag, msg, tr); in wtf() 197 public static void wtf(String tag, String format, @Nullable Object... args) { in wtf() method in Slogf 198 wtf(tag, getMessage(format, args)); in wtf() 202 public static void wtf(String tag, Throwable throwable, String format, in wtf() method in Slogf 204 wtf(tag, getMessage(format, args), throwable); in wtf()
|
/frameworks/base/core/tests/coretests/src/android/util/ |
D | LogNullabilityTest.java | 41 Log.wtf(null, ""); in nullTag() 57 Log.wtf(null, "", new Throwable()); in nullTagWithThrowable() 94 Log.wtf("", (String) null); in nullMessage() 115 Log.wtf("", null, new Throwable()); in nullMessageWithThrowable() 128 Log.wtf("", "", null); in nullThrowable() 141 Log.wtf("", (Throwable) null); in nullThrowable() 156 Log.wtf("", null, null); in nullMessageWithNullThrowable()
|
/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger_middleware/ |
D | FakeHalFactory.java | 58 Slog.wtf(TAG, "Unexpected RemoteException from same process"); in create() 67 Slog.wtf(TAG, "Unexpected RemoteException from same process"); in create() 78 Slog.wtf(TAG, "Unexpected RemoteException from same process"); in create() 89 Slog.wtf(TAG, "Unexpected RemoteException from same process"); in create()
|
D | FakeSoundTriggerHal.java | 300 Slog.wtf(TAG, "Callback dispatch threw", e); in FakeSoundTriggerHal() 360 Slog.wtf(TAG, "Received two death recipients concurrently"); in linkToDeath() 449 Slog.wtf(TAG, "Attempted to unload model which was never loaded"); in unloadSoundModel() 453 Slog.wtf(TAG, "Session unloaded before recog stopped!"); in unloadSoundModel() 478 Slog.wtf(TAG, "Attempted to start recognition with invalid handle"); in startRecognition() 502 Slog.wtf(TAG, "Attempted to stop recognition with invalid handle"); in stopRecognition() 518 Slog.wtf(TAG, "Attempted to force recognition with invalid handle"); in forceRecognitionEvent() 539 Slog.wtf(TAG, "Attempted to get param with invalid handle"); in queryParameter() 559 Slog.wtf(TAG, "Attempted to get param with invalid handle"); in getParameter() 575 Slog.wtf(TAG, "Attempted to get param with invalid handle"); in setParameter() [all …]
|
/frameworks/base/core/java/android/util/ |
D | Slog.java | 220 public static int wtf(@Nullable String tag, @NonNull String msg) { in wtf() method in Slog 221 return Log.wtf(Log.LOG_ID_SYSTEM, tag, msg, null, false, true); in wtf() 248 return Log.wtf(Log.LOG_ID_SYSTEM, tag, msg, null, true, true); in wtfStack() 265 public static int wtf(@Nullable String tag, @Nullable Throwable tr) { in wtf() method in Slog 266 return Log.wtf(Log.LOG_ID_SYSTEM, tag, tr.getMessage(), tr, false, true); in wtf() 285 public static int wtf(@Nullable String tag, @NonNull String msg, @Nullable Throwable tr) { in wtf() method in Slog 286 return Log.wtf(Log.LOG_ID_SYSTEM, tag, msg, tr, false, true); in wtf()
|
D | Log.java | 135 RuntimeInit.wtf(tag, what, system); 299 public static int wtf(@Nullable String tag, @Nullable String msg) { in wtf() method in Log 300 return wtf(LOG_ID_MAIN, tag, msg, null, false, false); in wtf() 309 return wtf(LOG_ID_MAIN, tag, msg, null, true, false); in wtfStack() 319 public static int wtf(@Nullable String tag, @NonNull Throwable tr) { in wtf() method in Log 320 return wtf(LOG_ID_MAIN, tag, tr.getMessage(), tr, false, false); in wtf() 331 public static int wtf(@Nullable String tag, @Nullable String msg, @Nullable Throwable tr) { in wtf() method in Log 332 return wtf(LOG_ID_MAIN, tag, msg, tr, false, false); in wtf() 336 static int wtf(int logId, @Nullable String tag, @Nullable String msg, @Nullable Throwable tr, in wtf() method in Log
|
/frameworks/base/core/tests/utiltests/src/android/util/ |
D | SlogTest.java | 50 Slog.wtf(TAG, MSG); in testWtf() 51 Slog.wtf(TAG, MSG, THROWABLE); in testWtf() 52 Slog.wtf(TAG, THROWABLE); in testWtf()
|
/frameworks/base/services/core/java/com/android/server/content/ |
D | SyncJobService.java | 61 Slog.wtf(TAG, "sInstance == null"); in getInstance() 82 Slog.wtf(TAG, "Got invalid job " + params.getJobId()); in onStartJob() 126 Slog.wtf(TAG, "Got invalid job " + params.getJobId()); in onStopJob() 149 wtf("Job " + jobId + " didn't start: " in onStopJob() 215 private static void wtf(String message) { in wtf() method in SyncJobService 217 Slog.wtf(TAG, message); in wtf()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/log/table/ |
D | LogProxy.kt | 40 fun wtf(tag: String, message: String) in v() method 64 override fun wtf(tag: String, message: String) { in v() method in com.android.systemui.log.table.LogProxyDefault 65 Log.wtf(tag, message) in v()
|
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/ |
D | PolicyState.java | 279 Slogf.wtf(TAG, "Error Parsing TAG_ENFORCING_ADMIN_ENTRY, " in readFromXml() 286 Slogf.wtf(TAG, "Error Parsing TAG_POLICY_VALUE_ENTRY, " in readFromXml() 295 Slogf.wtf(TAG, "Error Parsing TAG_ADMIN_POLICY_ENTRY for " in readFromXml() 305 Slogf.wtf(TAG, "Error Parsing TAG_POLICY_DEFINITION_ENTRY, " in readFromXml() 312 Slogf.wtf(TAG, "Error Parsing TAG_RESOLVED_VALUE_ENTRY, " in readFromXml() 318 Slogf.wtf(TAG, "Error Parsing TAG_RESOLVED_VALUE_ENTRY for " in readFromXml() 325 Slogf.wtf(TAG, "Unknown tag: " + tag); in readFromXml() 331 Slogf.wtf(TAG, "Error parsing policyState, policyDefinition is null"); in readFromXml()
|
D | NetworkLogger.java | 128 Slog.wtf(TAG, "Failed to register callback with IIpConnectivityMetrics."); in startNetworkLogging() 146 Slog.wtf(TAG, "Failed to make remote calls to register the callback", re); in startNetworkLogging() 160 Slog.wtf(TAG, "Failed to unregister callback with IIpConnectivityMetrics."); in stopNetworkLogging() 167 Slog.wtf(TAG, "Failed to make remote calls to unregister the callback", re); in stopNetworkLogging()
|
/frameworks/base/services/core/java/com/android/server/power/stats/ |
D | KernelWakelockReader.java | 109 Slog.wtf(TAG, "neither " + sWakelockFile + " nor " + in readKernelWakelockStats() 123 Slog.wtf(TAG, "failed to read kernel wakelocks", e); in readKernelWakelockStats() 136 Slog.wtf(TAG, "Kernel wake locks exceeded mKernelWakelockBuffer size " in readKernelWakelockStats() 188 Slog.wtf(TAG, "Required service suspend_control not available", e); in getWakelockStatsFromSystemSuspend() 198 Slog.wtf(TAG, "Failed to obtain wakelock stats from ISuspendControlService", e); in getWakelockStatsFromSystemSuspend() 306 Slog.wtf(TAG, "Failed to parse proc line: " + in parseProcWakelocks() 309 Slog.wtf(TAG, "Failed to parse proc line!"); in parseProcWakelocks()
|
/frameworks/base/services/core/java/com/android/server/app/ |
D | GameManagerSettings.java | 186 Slog.wtf(TAG, "Unable to write game manager service settings, " in writePersistentDataLocked() 234 Slog.wtf(TAG, "No start tag found in game manager settings"); in readPersistentDataLocked() 256 Slog.wtf(TAG, "Error reading game manager settings", e); in readPersistentDataLocked() 267 Slog.wtf(TAG, "No package name found in package tag"); in readPackage() 306 Slog.wtf(TAG, "Invalid game mode value in config tag: " + parser.getAttributeValue(null, in readGameModeConfig() 319 Slog.wtf(TAG, "Invalid scaling value in config tag: " + rawScaling, e); in readGameModeConfig() 332 Slog.wtf(TAG, "Invalid useAngle value in config tag: " + rawUseAngle, e); in readGameModeConfig() 343 Slog.wtf(TAG, "Invalid loading boost in config tag: " + rawLoadingBoost, e); in readGameModeConfig()
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | GlobalSortKeyComparator.java | 31 Slog.wtf(TAG, "Missing left global sort key: " + left); in compare() 35 Slog.wtf(TAG, "Missing right global sort key: " + right); in compare()
|
/frameworks/base/core/java/android/os/ |
D | ExternalVibration.java | 126 Slog.wtf(TAG, "Failed to mute vibration stream: " + this, e); in mute() 141 Slog.wtf(TAG, "Failed to unmute vibration stream: " + this, e); in unmute() 154 Slog.wtf(TAG, "Failed to link to token death: " + this, e); in linkToDeath() 165 Slog.wtf(TAG, "Failed to unlink to token death", e); in unlinkToDeath()
|
/frameworks/base/services/java/com/android/server/ |
D | HsumBootUserInitializer.java | 125 Slogf.wtf(TAG, "Initial bootable MainUser creation failed", e); in createMainUserIfNeeded() 148 Slogf.wtf(TAG, "Failed to switch to boot user since there isn't one."); in systemRunning() 169 Slogf.wtf(TAG, "DEVICE_PROVISIONED setting not found.", e); in isDeviceProvisioned() 206 Slogf.wtf(TAG, "Failed to start user %d in foreground", bootUserId); in switchToBootUser()
|
/frameworks/base/services/core/java/com/android/server/policy/ |
D | GlobalKeyManager.java | 141 Log.wtf(TAG, "Failed to parse global keys entry: " + parser.getText()); in loadGlobalKeys() 149 Log.wtf(TAG, "Global keys entry does not map to a valid key code: " in loadGlobalKeys() 156 Log.wtf(TAG, "global keys file not found", e); in loadGlobalKeys() 158 Log.wtf(TAG, "XML parser exception reading global keys file", e); in loadGlobalKeys()
|
/frameworks/base/core/java/com/android/internal/os/ |
D | KernelCpuUidTimeReader.java | 239 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readDeltaImpl() 277 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readAbsoluteImpl() 428 Slog.wtf(mTag, "Malformed freq line: " + line); in readFreqs() 488 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readDeltaImpl() 516 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readAbsoluteImpl() 656 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readDeltaImpl() 690 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readAbsoluteImpl() 741 Slog.wtf(mTag, "Malformed uid_concurrent_active_time line: " + str); in checkPrecondition() 746 Slog.wtf(mTag, "Malformed uid_concurrent_active_time line: " + str); in checkPrecondition() 843 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readDeltaImpl() [all …]
|
/frameworks/base/services/autofill/java/com/android/server/autofill/ |
D | InlineSuggestionRequestConsumer.java | 44 Slog.wtf(TAG, "assistDataReceiver is null when accepting new inline suggestion" in accept() 50 Slog.wtf(TAG, "view state is null when accepting new inline suggestion requests"); in accept()
|
/frameworks/base/services/core/java/com/android/server/vibrator/ |
D | VibratorControllerHolder.java | 52 Slog.wtf(TAG, "Failed to set IVibratorController: " + this, e); in setVibratorController() 66 Slog.wtf(TAG, "binderDied() called unexpectedly."); in binderDied()
|
/frameworks/base/services/core/java/com/android/server/ |
D | UserspaceRebootLogger.java | 62 Slog.wtf(TAG, "noteUserspaceRebootWasRequested: Userspace reboot is not supported."); in noteUserspaceRebootWasRequested() 80 Slog.wtf(TAG, "noteUserspaceRebootSuccess: Userspace reboot is not supported."); in noteUserspaceRebootSuccess() 113 Slog.wtf(TAG, "logEventAsync: Userspace reboot is not supported."); in logEventAsync()
|
/frameworks/base/services/core/java/com/android/server/om/ |
D | IdmapDaemon.java | 188 Slog.wtf(TAG, "failed to check if idmap exists for " + overlayPath, e); in idmapExists() 203 Slog.wtf(TAG, "failed to fabricate overlay " + overlay, e); in createFabricatedOverlay() 219 Slog.wtf(TAG, "failed to delete fabricated overlay '" + path + "'", e); in deleteFabricatedOverlay() 243 Slog.wtf(TAG, "failed to get all fabricated overlays", e); in getFabricatedOverlayInfos() 268 Slog.wtf(TAG, "failed to dump idmap", e); in dumpIdmap() 278 Slog.wtf(TAG, "Failed to enable idmap2 daemon", e); in getIdmapService()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | MessagingPool.java | 48 Log.wtf(TAG, "acquired " + instance + " with parent " + instance.getParent()); in acquire() 57 Log.wtf(TAG, "releasing " + instance + " with parent " + instance.getParent()); in release()
|