/frameworks/base/media/java/android/media/session/ |
D | MediaController.java | 150 Log.wtf(TAG, "Error calling getPlaybackState.", e); in getPlaybackState() 164 Log.wtf(TAG, "Error calling getMetadata.", e); in getMetadata() 180 Log.wtf(TAG, "Error calling getQueue.", e); in getQueue() 192 Log.wtf(TAG, "Error calling getQueueTitle", e); in getQueueTitle() 204 Log.wtf(TAG, "Error calling getExtras", e); in getExtras() 227 Log.wtf(TAG, "Error calling getRatingType.", e); in getRatingType() 241 Log.wtf(TAG, "Error calling getFlags.", e); in getFlags() 255 Log.wtf(TAG, "Error calling getAudioInfo.", e); in getPlaybackInfo() 270 Log.wtf(TAG, "Error calling getPendingIntent.", e); in getSessionActivity() 303 Log.wtf(TAG, "Error calling setVolumeTo.", e); in setVolumeTo() [all …]
|
D | MediaSession.java | 256 Log.wtf(TAG, "Failure in setLaunchPendingIntent.", e); in setSessionActivity() 272 Log.wtf(TAG, "Failure in setMediaButtonReceiver.", e); in setMediaButtonReceiver() 285 Log.wtf(TAG, "Failure in setFlags.", e); in setFlags() 307 Log.wtf(TAG, "Failure in setPlaybackToLocal.", e); in setPlaybackToLocal() 341 Log.wtf(TAG, "Failure in setPlaybackToRemote.", e); in setPlaybackToRemote() 361 Log.wtf(TAG, "Failure in setActive.", e); in setActive() 389 Log.wtf(TAG, "Error sending event", e); in sendSessionEvent() 402 Log.wtf(TAG, "Error releasing session: ", e); in release() 438 Log.wtf(TAG, "Dead object in setPlaybackState.", e); in setPlaybackState() 467 Log.wtf(TAG, "Dead object in setPlaybackState.", e); in setMetadata() [all …]
|
/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/core/tests/coretests/src/android/util/ |
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()
|
/frameworks/base/core/java/android/util/ |
D | Slog.java | 93 public static int wtf(String tag, String msg) { in wtf() method in Slog 94 return Log.wtf(Log.LOG_ID_SYSTEM, tag, msg, null, false, true); in wtf() 111 return Log.wtf(Log.LOG_ID_SYSTEM, tag, msg, null, true, true); in wtfStack() 119 public static int wtf(String tag, Throwable tr) { in wtf() method in Slog 120 return Log.wtf(Log.LOG_ID_SYSTEM, tag, tr.getMessage(), tr, false, true); in wtf() 129 public static int wtf(String tag, String msg, Throwable tr) { in wtf() method in Slog 130 return Log.wtf(Log.LOG_ID_SYSTEM, tag, msg, tr, false, true); in wtf()
|
D | Log.java | 120 RuntimeInit.wtf(tag, what, system); 272 public static int wtf(@Nullable String tag, @Nullable String msg) { in wtf() method in Log 273 return wtf(LOG_ID_MAIN, tag, msg, null, false, false); in wtf() 282 return wtf(LOG_ID_MAIN, tag, msg, null, true, false); in wtfStack() 291 public static int wtf(@Nullable String tag, @NonNull Throwable tr) { in wtf() method in Log 292 return wtf(LOG_ID_MAIN, tag, tr.getMessage(), tr, false, false); in wtf() 302 public static int wtf(@Nullable String tag, @Nullable String msg, @Nullable Throwable tr) { in wtf() method in Log 303 return wtf(LOG_ID_MAIN, tag, msg, tr, false, false); in wtf() 307 static int wtf(int logId, @Nullable String tag, @Nullable String msg, @Nullable Throwable tr, in wtf() method in Log
|
D | EventLog.java | 146 Log.wtf(TAG, "Illegal entry payload: tag=" + getTag(), e); in getData() 150 Log.wtf(TAG, "Truncated entry payload: tag=" + getTag(), e); in getData() 176 Log.wtf(TAG, "UTF-8 is not supported", e); in decodeObject() 352 Log.wtf(TAG, "Bad entry in " + TAGS_FILE + ": " + line); in readTagsFile() 362 Log.wtf(TAG, "Error in " + TAGS_FILE + ": " + line, e); in readTagsFile() 366 Log.wtf(TAG, "Error reading " + TAGS_FILE, e); in readTagsFile()
|
/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() 212 private static void wtf(String message) { in wtf() method in SyncJobService 214 Slog.wtf(TAG, message); in wtf()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | IntentForwarderActivity.java | 100 Slog.wtf(TAG, IntentForwarderActivity.class.getName() + " cannot be called directly"); in onCreate() 138 Slog.wtf(TAG, "Unable to launch as UID " + launchedFromUid + " package " in onCreate() 147 Slog.wtf(TAG, "the intent: " + intentReceived + " cannot be forwarded from user " in onCreate() 204 Slog.wtf(TAG, "An chooser intent with extra initial intents cannot be forwarded to" in canForward() 209 Slog.wtf(TAG, "A chooser intent with replacement extras cannot be forwarded to a" in canForward() 215 Slog.wtf(TAG, "Cannot forward a chooser intent with no extra " in canForward() 248 Slog.wtf(TAG, FORWARD_INTENT_TO_MANAGED_PROFILE in getManagedProfile() 260 Slog.wtf(TAG, FORWARD_INTENT_TO_PARENT in getProfileParent()
|
/frameworks/base/core/java/com/android/internal/os/ |
D | KernelWakelockReader.java | 105 Slog.wtf(TAG, "neither " + sWakelockFile + " nor " + in readKernelWakelockStats() 119 Slog.wtf(TAG, "failed to read kernel wakelocks", e); in readKernelWakelockStats() 132 Slog.wtf(TAG, "Kernel wake locks exceeded mKernelWakelockBuffer size " in readKernelWakelockStats() 180 Slog.wtf(TAG, "Required service suspend_control not available", e); in getWakelockStatsFromSystemSuspend() 188 Slog.wtf(TAG, "Failed to obtain wakelock stats from ISuspendControlService", e); in getWakelockStatsFromSystemSuspend() 288 Slog.wtf(TAG, "Failed to parse proc line: " + in parseProcWakelocks() 291 Slog.wtf(TAG, "Failed to parse proc line!"); in parseProcWakelocks()
|
D | KernelCpuUidTimeReader.java | 223 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readDeltaImpl() 261 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readAbsoluteImpl() 444 Slog.wtf(mTag, "Malformed freq line: " + line); in readFreqs() 504 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readDeltaImpl() 532 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readAbsoluteImpl() 662 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readDeltaImpl() 696 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readAbsoluteImpl() 743 Slog.wtf(mTag, "Malformed uid_concurrent_active_time line: " + line); in checkPrecondition() 748 Slog.wtf(mTag, "Malformed uid_concurrent_active_time line: " + line); in checkPrecondition() 840 Slog.wtf(mTag, "Invalid line: " + buf.toString()); in readDeltaImpl() [all …]
|
/frameworks/base/services/core/java/com/android/server/ |
D | UserspaceRebootLogger.java | 62 Slog.wtf(TAG, "Userspace reboot is not supported."); in noteUserspaceRebootWasRequested() 80 Slog.wtf(TAG, "Userspace reboot is not supported."); in noteUserspaceRebootSuccess() 95 Slog.wtf(TAG, "Userspace reboot is not supported."); in shouldLogUserspaceRebootEvent() 113 Slog.wtf(TAG, "Userspace reboot is not supported."); in logEventAsync()
|
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()
|
D | SystemServiceManager.java | 193 Slog.wtf(TAG, "Failure reporting start of user " + userHandle in startUser() 214 Slog.wtf(TAG, "Failure reporting unlock of user " + userHandle in unlockUser() 235 Slog.wtf(TAG, "Failure reporting switch of user " + userHandle in switchUser() 256 Slog.wtf(TAG, "Failure reporting stop of user " + userHandle in stopUser() 277 Slog.wtf(TAG, "Failure reporting cleanup of user " + userHandle in cleanupUser()
|
D | StorageManagerService.java | 634 Slog.wtf(TAG, e); in handleMessage() 738 Slog.wtf(TAG, e); 930 Slog.wtf(TAG, e); in initIfBootedAndConnected() 967 Slog.wtf(TAG, e); in resetIfBootedAndConnected() 982 Slog.wtf(TAG, e); in onUnlockUser() 1020 Slog.wtf(TAG, e); in onCleanupUser() 1047 Slog.wtf(TAG, e); in onKeyguardStateChanged() 1720 Slog.wtf(TAG, "Failed reading metadata", e); in readSettingsLocked() 1722 Slog.wtf(TAG, "Failed reading metadata", e); in readSettingsLocked() 1821 Slog.wtf(TAG, e); in mount() [all …]
|
D | CachedDeviceStateService.java | 87 Slog.wtf(TAG, "BatteryManager null while starting CachedDeviceStateService"); in queryIsCharging() 98 Slog.wtf(TAG, "PowerManager null while starting CachedDeviceStateService"); in queryScreenInteractive()
|
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/ |
D | NetworkLogger.java | 107 Slog.wtf(TAG, "Failed to register callback with IIpConnectivityMetrics."); in startNetworkLogging() 125 Slog.wtf(TAG, "Failed to make remote calls to register the callback", re); in startNetworkLogging() 139 Slog.wtf(TAG, "Failed to unregister callback with IIpConnectivityMetrics."); in stopNetworkLogging() 146 Slog.wtf(TAG, "Failed to make remote calls to unregister the callback", re); in stopNetworkLogging()
|
/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/telecomm/java/android/telecom/ |
D | Log.java | 158 public static void wtf(String prefix, Throwable tr, String format, Object... args) { in wtf() method in Log 159 android.util.Slog.wtf(TAG, buildMessage(prefix, format, args), tr); in wtf() 162 public static void wtf(Object objectPrefix, Throwable tr, String format, Object... args) { in wtf() method in Log 163 android.util.Slog.wtf(TAG, buildMessage(getPrefixFromObject(objectPrefix), format, args), in wtf() 167 public static void wtf(String prefix, String format, Object... args) { in wtf() method in Log 169 android.util.Slog.wtf(TAG, msg, new IllegalStateException(msg)); in wtf() 172 public static void wtf(Object objectPrefix, String format, Object... args) { in wtf() method in Log 174 android.util.Slog.wtf(TAG, msg, new IllegalStateException(msg)); in wtf()
|
/frameworks/base/tools/lock_agent/java/com/android/lock_checker/ |
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()
|
/frameworks/base/core/java/com/android/server/backup/ |
D | ShortcutBackupHelper.java | 47 Slog.wtf(TAG, "Backup failed", e); in getBackupPayload() 63 Slog.wtf(TAG, "Restore failed", e); in applyRestoredPayload()
|
/frameworks/base/services/net/java/android/net/ |
D | IpMemoryStore.java | 75 Log.wtf(TAG, "Error fetching IpMemoryStore", exception); in runWhenServiceReady() 82 Log.wtf(TAG, "Exception occured: " + e.getMessage()); in runWhenServiceReady()
|
/frameworks/base/services/core/java/com/android/server/net/ |
D | NetworkStatsRecorder.java | 192 Log.wtf(TAG, "problem completely reading network stats", e); in loadLocked() 195 Log.wtf(TAG, "problem completely reading network stats", e); in loadLocked() 303 Log.wtf(TAG, "problem persisting pending stats", e); in forcePersistLocked() 306 Log.wtf(TAG, "problem persisting pending stats", e); in forcePersistLocked() 322 Log.wtf(TAG, "problem removing UIDs " + Arrays.toString(uids), e); in removeUidsLocked() 325 Log.wtf(TAG, "problem removing UIDs " + Arrays.toString(uids), e); in removeUidsLocked()
|
/frameworks/base/services/core/java/com/android/server/timedetector/ |
D | TimeDetectorStrategyCallbackImpl.java | 84 Slog.wtf(TAG, "WakeLock " + mWakeLock + " already held"); in acquireWakeLock() 113 Slog.wtf(TAG, "WakeLock " + mWakeLock + " not held"); in checkWakeLockHeld()
|
/frameworks/base/core/java/com/android/internal/util/ |
D | ConcurrentUtils.java | 121 Slog.wtf(tag, "Lock mustn't be held"); 130 Slog.wtf(tag, "Lock must be held");
|