/aosp14/frameworks/base/services/robotests/src/com/android/server/testing/shadows/ |
H A 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()
|
/aosp14/frameworks/base/media/java/android/media/session/ |
H A D | MediaController.java | 173 Log.wtf(TAG, "Error calling getMetadata.", e); in getMetadata() 189 Log.wtf(TAG, "Error calling getQueue.", e); in getQueue() 201 Log.wtf(TAG, "Error calling getQueueTitle", e); in getQueueTitle() 213 Log.wtf(TAG, "Error calling getExtras", e); in getExtras() 250 Log.wtf(TAG, "Error calling getFlags.", e); in getFlags() 312 Log.wtf(TAG, "Error calling setVolumeTo.", e); in setVolumeTo() 735 Log.wtf(TAG, "Error calling play.", e); in play() 819 Log.wtf(TAG, "Error calling pause.", e); in pause() 831 Log.wtf(TAG, "Error calling stop.", e); in stop() 867 Log.wtf(TAG, "Error calling next.", e); in skipToNext() [all …]
|
/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/utils/ |
H A 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()
|
/aosp14/frameworks/base/services/core/java/com/android/server/utils/ |
H A 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()
|
/aosp14/frameworks/base/core/tests/coretests/src/android/util/ |
H A D | LogNullabilityTest.java | 38 Log.wtf(null, ""); in nullTag() 52 Log.wtf(null, "", new Throwable()); in nullTagWithThrowable() 87 Log.wtf("", (String) null); in nullMessage() 106 Log.wtf("", null, new Throwable()); in nullMessageWithThrowable() 124 Log.wtf("", "", null); in nullThrowable() 135 Log.wtf("", (Throwable) null); in nullThrowable() 148 Log.wtf("", null, null); in nullMessageWithNullThrowable()
|
/aosp14/frameworks/base/core/java/android/util/ |
H A D | Slog.java | 219 public static int wtf(@Nullable String tag, @NonNull String msg) { in wtf() method in Slog 220 return Log.wtf(Log.LOG_ID_SYSTEM, tag, msg, null, false, true); in wtf() 245 return Log.wtf(Log.LOG_ID_SYSTEM, tag, msg, null, true, true); in wtfStack() 262 public static int wtf(@Nullable String tag, @Nullable Throwable tr) { in wtf() method in Slog 263 return Log.wtf(Log.LOG_ID_SYSTEM, tag, tr.getMessage(), tr, false, true); in wtf() 282 public static int wtf(@Nullable String tag, @NonNull String msg, @Nullable Throwable tr) { in wtf() method in Slog 283 return Log.wtf(Log.LOG_ID_SYSTEM, tag, msg, tr, false, true); in wtf()
|
H A D | Log.java | 129 RuntimeInit.wtf(tag, what, system); 293 public static int wtf(@Nullable String tag, @Nullable String msg) { in wtf() method in Log 294 return wtf(LOG_ID_MAIN, tag, msg, null, false, false); in wtf() 303 return wtf(LOG_ID_MAIN, tag, msg, null, true, false); in wtfStack() 313 public static int wtf(@Nullable String tag, @NonNull Throwable tr) { in wtf() method in Log 314 return wtf(LOG_ID_MAIN, tag, tr.getMessage(), tr, false, false); in wtf() 325 public static int wtf(@Nullable String tag, @Nullable String msg, @Nullable Throwable tr) { in wtf() method in Log 326 return wtf(LOG_ID_MAIN, tag, msg, tr, false, false); in wtf() 330 static int wtf(int logId, @Nullable String tag, @Nullable String msg, @Nullable Throwable tr, in wtf() method in Log
|
H A D | EventLog.java | 149 Log.wtf(TAG, "Illegal entry payload: tag=" + getTag(), e); in getData() 153 Log.wtf(TAG, "Truncated entry payload: tag=" + getTag(), e); in getData() 201 Log.wtf(TAG, "UTF-8 is not supported", e); in decodeObject() 437 Log.wtf(TAG, "Bad entry in " + TAGS_FILE + ": " + line); in readTagsFile() 447 Log.wtf(TAG, "Error in " + TAGS_FILE + ": " + line, e); in readTagsFile() 451 Log.wtf(TAG, "Error reading " + TAGS_FILE, e); in readTagsFile()
|
/aosp14/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger_middleware/ |
H A 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()
|
H A 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() 502 Slog.wtf(TAG, "Attempted to stop recognition with invalid handle"); in stopRecognition() 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() 679 Slog.wtf(TAG, "Callback dispatch threw", e); in wrap() 700 Slog.wtf(TAG, "Callback dispatch threw", e); in wrap() [all …]
|
/aosp14/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/ |
H A D | PolicyState.java | 250 Slogf.wtf(TAG, "Error Parsing TAG_ENFORCING_ADMIN_ENTRY, " in readFromXml() 257 Slogf.wtf(TAG, "Error Parsing TAG_POLICY_VALUE_ENTRY, " in readFromXml() 266 Slogf.wtf(TAG, "Error Parsing TAG_ADMIN_POLICY_ENTRY, EnforcingAdmin " in readFromXml() 273 Slogf.wtf(TAG, "Error Parsing TAG_POLICY_DEFINITION_ENTRY, " in readFromXml() 280 Slogf.wtf(TAG, "Error Parsing TAG_RESOLVED_VALUE_ENTRY, " in readFromXml() 286 Slogf.wtf(TAG, "Error Parsing TAG_RESOLVED_VALUE_ENTRY, " in readFromXml() 291 Slogf.wtf(TAG, "Unknown tag: " + tag); in readFromXml() 297 Slogf.wtf(TAG, "Error parsing policyState, policyDefinition is null"); in readFromXml()
|
H A 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()
|
/aosp14/frameworks/base/services/core/java/com/android/server/content/ |
H A 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()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/log/table/ |
H A D | LogProxy.kt | 40 fun wtf(tag: String, message: String) regex 64 override fun wtf(tag: String, message: String) { 65 Log.wtf(tag, message)
|
/aosp14/frameworks/base/services/core/java/com/android/server/app/ |
H A 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() 255 Slog.wtf(TAG, "Error reading game manager settings", e); in readPersistentDataLocked() 266 Slog.wtf(TAG, "No package name found in package tag"); in readPackage() 305 Slog.wtf(TAG, "Invalid game mode value in config tag: " + parser.getAttributeValue(null, in readGameModeConfig() 318 Slog.wtf(TAG, "Invalid scaling value in config tag: " + rawScaling, e); in readGameModeConfig() 331 Slog.wtf(TAG, "Invalid useAngle value in config tag: " + rawUseAngle, e); in readGameModeConfig() 342 Slog.wtf(TAG, "Invalid loading boost in config tag: " + rawLoadingBoost, e); in readGameModeConfig()
|
/aosp14/frameworks/base/services/core/java/com/android/server/power/stats/ |
H A D | KernelWakelockReader.java | 108 Slog.wtf(TAG, "neither " + sWakelockFile + " nor " + in readKernelWakelockStats() 122 Slog.wtf(TAG, "failed to read kernel wakelocks", e); in readKernelWakelockStats() 135 Slog.wtf(TAG, "Kernel wake locks exceeded mKernelWakelockBuffer size " in readKernelWakelockStats() 187 Slog.wtf(TAG, "Required service suspend_control not available", e); in getWakelockStatsFromSystemSuspend() 195 Slog.wtf(TAG, "Failed to obtain wakelock stats from ISuspendControlService", e); in getWakelockStatsFromSystemSuspend() 295 Slog.wtf(TAG, "Failed to parse proc line: " + in parseProcWakelocks() 298 Slog.wtf(TAG, "Failed to parse proc line!"); in parseProcWakelocks()
|
/aosp14/frameworks/base/core/java/com/android/internal/os/ |
H A D | KernelCpuUidTimeReader.java | 243 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readDeltaImpl() 281 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readAbsoluteImpl() 473 Slog.wtf(mTag, "Malformed freq line: " + line); in readFreqs() 533 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readDeltaImpl() 561 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readAbsoluteImpl() 701 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readDeltaImpl() 735 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readAbsoluteImpl() 786 Slog.wtf(mTag, "Malformed uid_concurrent_active_time line: " + str); in checkPrecondition() 791 Slog.wtf(mTag, "Malformed uid_concurrent_active_time line: " + str); in checkPrecondition() 888 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readDeltaImpl() [all …]
|
/aosp14/frameworks/base/services/core/java/com/android/server/om/ |
H A D | IdmapDaemon.java | 181 Slog.wtf(TAG, "failed to check if idmap exists for " + overlayPath, e); in idmapExists() 196 Slog.wtf(TAG, "failed to fabricate overlay " + overlay, e); in createFabricatedOverlay() 212 Slog.wtf(TAG, "failed to delete fabricated overlay '" + path + "'", e); in deleteFabricatedOverlay() 236 Slog.wtf(TAG, "failed to get all fabricated overlays", e); in getFabricatedOverlayInfos() 261 Slog.wtf(TAG, "failed to dump idmap", e); in dumpIdmap() 271 Slog.wtf(TAG, "Failed to enable idmap2 daemon", e); in getIdmapService()
|
/aosp14/frameworks/base/services/java/com/android/server/ |
H A D | HsumBootUserInitializer.java | 124 Slogf.wtf(TAG, "Initial bootable MainUser creation failed", e); in createMainUserIfNeeded() 147 Slogf.wtf(TAG, "Failed to switch to boot user since there isn't one."); in systemRunning() 168 Slogf.wtf(TAG, "DEVICE_PROVISIONED setting not found.", e); in isDeviceProvisioned() 205 Slogf.wtf(TAG, "Failed to start user %d in foreground", bootUserId); in switchToBootUser()
|
/aosp14/frameworks/base/services/core/java/com/android/server/policy/ |
H A 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()
|
/aosp14/frameworks/base/services/core/java/com/android/server/notification/ |
H A 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()
|
/aosp14/frameworks/base/services/core/java/com/android/server/ |
H A 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()
|
H A 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() 416 Slog.wtf(TAG, "Health check passed for package " + packageName in initState() 423 Slog.wtf(TAG, "Empty package passed explicit health check?"); in initState() 428 Slog.wtf(TAG, "Could not setCallback on explicit health check service"); in initState()
|
/aosp14/frameworks/base/services/autofill/java/com/android/server/autofill/ |
H A 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()
|
/aosp14/frameworks/base/tools/lock_agent/java/com/android/lock_checker/ |
H A D | LockHook.java | 116 static void wtf(Violation v) { in wtf() method in LockHook 117 sHandler.wtf(v); in wtf() 166 public void wtf(Violation v) { in wtf() method in LockHook.WtfHandler 188 Log.wtf(TAG, msg); in handleViolation() 256 wtf(v); in addViolation()
|