Searched refs:wtf (Results 1 - 25 of 132) sorted by relevance

123456

/frameworks/base/core/java/android/hardware/camera2/dispatch/
H A DInvokeDispatcher.java46 Log.wtf(TAG, "IllegalAccessException while invoking " + method, e);
49 Log.wtf(TAG, "IllegalArgumentException while invoking " + method, e);
H A DHandlerDispatcher.java72 Log.wtf(TAG, "IllegalAccessException while invoking " + method, e);
75 Log.wtf(TAG, "IllegalArgumentException while invoking " + method, e);
/frameworks/base/core/java/android/util/
H A DSlog.java77 * Like {@link Log#wtf(String, String)}, but will never cause the caller to crash, and
81 public static int wtf(String tag, String msg) { method in class:Slog
82 return Log.wtf(Log.LOG_ID_SYSTEM, tag, msg, null, false, true);
86 * Like {@link #wtf(String, String)}, but does not output anything to the log.
98 return Log.wtf(Log.LOG_ID_SYSTEM, tag, msg, null, true, true);
102 * Like {@link Log#wtf(String, Throwable)}, but will never cause the caller to crash,
106 public static int wtf(String tag, Throwable tr) { method in class:Slog
107 return Log.wtf(Log.LOG_ID_SYSTEM, tag, tr.getMessage(), tr, false, true);
111 * Like {@link Log#wtf(String, String, Throwable)}, but will never cause the caller to crash,
115 public static int wtf(Strin method in class:Slog
[all...]
H A DLog.java91 * Exception class used to capture a stack trace in {@link #wtf}.
98 * Interface to handle terrible failures from {@link #wtf}.
108 RuntimeInit.wtf(tag, what, system);
259 public static int wtf(String tag, String msg) { method in class:Log
260 return wtf(LOG_ID_MAIN, tag, msg, null, false, false);
264 * Like {@link #wtf(String, String)}, but also writes to the log the full
269 return wtf(LOG_ID_MAIN, tag, msg, null, true, false);
274 * Similar to {@link #wtf(String, String)}, with an exception to log.
278 public static int wtf(String tag, Throwable tr) { method in class:Log
279 return wtf(LOG_ID_MAI
289 public static int wtf(String tag, String msg, Throwable tr) { method in class:Log
293 static int wtf(int logId, String tag, String msg, Throwable tr, boolean localStack, method in class:Log
[all...]
H A DEventLog.java122 Log.wtf(TAG, "Illegal entry payload: tag=" + getTag(), e);
125 Log.wtf(TAG, "Truncated entry payload: tag=" + getTag(), e);
150 Log.wtf(TAG, "UTF-8 is not supported", e);
271 Log.wtf(TAG, "Bad entry in " + TAGS_FILE + ": " + line);
281 Log.wtf(TAG, "Error in " + TAGS_FILE + ": " + line, e);
285 Log.wtf(TAG, "Error reading " + TAGS_FILE, e);
/frameworks/base/media/java/android/media/session/
H A DMediaController.java152 Log.wtf(TAG, "Error calling getPlaybackState.", e);
166 Log.wtf(TAG, "Error calling getMetadata.", e);
184 Log.wtf(TAG, "Error calling getQueue.", e);
196 Log.wtf(TAG, "Error calling getQueueTitle", e);
208 Log.wtf(TAG, "Error calling getExtras", e);
231 Log.wtf(TAG, "Error calling getRatingType.", e);
245 Log.wtf(TAG, "Error calling getFlags.", e);
262 Log.wtf(TAG, "Error calling getAudioInfo.", e);
277 Log.wtf(TAG, "Error calling getPendingIntent.", e);
306 Log.wtf(TA
[all...]
H A DMediaSession.java222 Log.wtf(TAG, "Failure in setLaunchPendingIntent.", e);
238 Log.wtf(TAG, "Failure in setMediaButtonReceiver.", e);
251 Log.wtf(TAG, "Failure in setFlags.", e);
273 Log.wtf(TAG, "Failure in setPlaybackToLocal.", e);
307 Log.wtf(TAG, "Failure in setPlaybackToRemote.", e);
327 Log.wtf(TAG, "Failure in setActive.", e);
355 Log.wtf(TAG, "Error sending event", e);
368 Log.wtf(TAG, "Error releasing session: ", e);
404 Log.wtf(TAG, "Dead object in setPlaybackState.", e);
421 Log.wtf(TA
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DIntentForwarderActivity.java70 Slog.wtf(TAG, IntentForwarderActivity.class.getName() + " cannot be called directly");
120 Slog.wtf(TAG, "Unable to launch as UID " + launchedFromUid + " package "
129 Slog.wtf(TAG, "the intent: " + newIntent + " cannot be forwarded from user "
140 Slog.wtf(TAG, "An chooser intent with extra initial intents cannot be forwarded to"
145 Slog.wtf(TAG, "A chooser intent with replacement extras cannot be forwarded to a"
151 Slog.wtf(TAG, "Cannot forward a chooser intent with no extra "
182 Slog.wtf(TAG, FORWARD_INTENT_TO_MANAGED_PROFILE
195 Slog.wtf(TAG, FORWARD_INTENT_TO_PARENT
H A DUnlaunchableAppActivity.java72 Log.wtf(TAG, "Invalid user id: " + mUserId + ". Stopping.");
83 Log.wtf(TAG, "Invalid unlaunchable type: " + mReason);
/frameworks/base/core/java/com/android/server/backup/
H A DShortcutBackupHelper.java47 Slog.wtf(TAG, "Backup failed", e);
63 Slog.wtf(TAG, "Restore failed", e);
/frameworks/base/core/java/com/android/internal/os/
H A DKernelWakelockReader.java80 Slog.wtf(TAG, "neither " + sWakelockFile + " nor " +
89 Slog.wtf(TAG, "failed to read kernel wakelocks", e);
95 Slog.wtf(TAG, "Kernel wake locks exceeded buffer size " + buffer.length);
178 Slog.wtf(TAG, "Failed to parse proc line: " +
181 Slog.wtf(TAG, "Failed to parse proc line!");
/frameworks/base/telecomm/java/android/telecom/
H A DLog.java134 public static void wtf(String prefix, Throwable tr, String format, Object... args) { method in class:Log
135 android.util.Log.wtf(TAG, buildMessage(prefix, format, args), tr);
138 public static void wtf(Object objectPrefix, Throwable tr, String format, Object... args) { method in class:Log
139 android.util.Log.wtf(TAG, buildMessage(getPrefixFromObject(objectPrefix), format, args),
143 public static void wtf(String prefix, String format, Object... args) { method in class:Log
145 android.util.Log.wtf(TAG, msg, new IllegalStateException(msg));
148 public static void wtf(Object objectPrefix, String format, Object... args) { method in class:Log
150 android.util.Log.wtf(TAG, msg, new IllegalStateException(msg));
229 wtf("Log", ife, "IllegalFormatException: formatString='%s' numArgs=%d", format,
/frameworks/volley/src/main/java/com/android/volley/
H A DVolleyLog.java71 public static void wtf(String format, Object... args) { method in class:VolleyLog
72 Log.wtf(TAG, buildMessage(format, args));
75 public static void wtf(Throwable tr, String format, Object... args) { method in class:VolleyLog
76 Log.wtf(TAG, buildMessage(format, args), tr);
/frameworks/base/services/core/java/com/android/server/
H A DSystemServiceManager.java164 Slog.wtf(TAG, "Failure reporting start of user " + userHandle
180 Slog.wtf(TAG, "Failure reporting unlock of user " + userHandle
196 Slog.wtf(TAG, "Failure reporting switch of user " + userHandle
212 Slog.wtf(TAG, "Failure reporting stop of user " + userHandle
228 Slog.wtf(TAG, "Failure reporting cleanup of user " + userHandle
H A DMasterClearReceiver.java59 Log.wtf(TAG, "Still running after master clear?!");
/frameworks/base/core/java/android/os/
H A DUpdateLock.java157 Log.wtf(TAG, "UpdateLock finalized while still held");
H A DFileObserver.java125 Log.wtf(LOG_TAG, "Unhandled exception in FileObserver " + observer, throwable);
H A DLooper.java169 Log.wtf(TAG, "Thread identity changed from 0x"
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DJsonRequest.java97 VolleyLog.wtf("Unsupported Encoding while trying to get the bytes of %s using %s",
/frameworks/base/services/core/java/com/android/server/am/
H A DRecentTasks.java155 Slog.wtf(TAG, "No task ids found for userId " + task.userId + ". task=" + task
403 Slog.wtf(TAG, "Bad chain @" + endIndex
412 Slog.wtf(TAG, "Bad chain @" + endIndex
424 Slog.wtf(TAG, "Bad chain @" + endIndex
434 Slog.wtf(TAG, "Bad chain @" + endIndex
443 Slog.wtf(TAG, "Bad chain @" + endIndex
453 Slog.wtf(TAG, "Bad chain ran off index " + endIndex
461 Slog.wtf(TAG, "Bad chain @" + endIndex
539 Slog.wtf(TAG, "Task with inRecent not in recents: " + task);
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsRecorder.java190 Log.wtf(TAG, "problem completely reading network stats", e);
193 Log.wtf(TAG, "problem completely reading network stats", e);
299 Log.wtf(TAG, "problem persisting pending stats", e);
302 Log.wtf(TAG, "problem persisting pending stats", e);
318 Log.wtf(TAG, "problem removing UIDs " + Arrays.toString(uids), e);
321 Log.wtf(TAG, "problem removing UIDs " + Arrays.toString(uids), e);
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DFalsingLog.java136 public static synchronized void wtf(String tag, String s) { method in class:FalsingLog
164 Log.wtf(TAG, tag + " " + s + "; " + fileMessage);
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DMetricsLoggerService.java238 Log.wtf(TAG, "No events passed to logEvents()");
245 Log.wtf(TAG, "Unexpected tag: " + componentTag);
271 Log.wtf(TAG, "Unexpected tag: " + e.componentTag);
H A DNetworkAgentInfo.java296 Log.wtf(TAG, "Unhandled request type " + request.type);
312 Log.wtf(TAG, String.format("Duplicate requestId for %s and %s on %s",
473 Log.wtf(TAG, this.name() + ": request " + request.requestId + " already lingered");
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutPackageItem.java110 s.wtf("Attempted to restore package " + mPackageName + ", user=" + mPackageUserId

Completed in 9756 milliseconds

123456