Searched defs:wtf (Results 1 - 8 of 8) sorted by relevance

/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...]
/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/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/core/java/com/android/internal/os/
H A DRuntimeInit.java357 public static void wtf(String tag, Throwable t, boolean system) { method in class:RuntimeInit
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DBaseShortcutManagerTest.java415 void wtf(String message, Throwable th) { method in class:BaseShortcutManagerTest.ShortcutServiceTestable
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutService.java1052 wtf("Exception in saveDirtyInfo", e);
1138 wtf("User still locked");
1368 // STOPSHIP Change wtf to e
1369 Slog.wtf(ShortcutService.TAG, "Unable to write bitmap to file", e);
2518 wtf("Exception in mReceiver.onReceive", e);
2609 wtf("Exception in mPackageMonitor.onReceive", e);
2780 Slog.wtf(TAG, "RemoteException", e);
2813 Slog.wtf(TAG, "RemoteException", e);
2846 Slog.wtf(TAG, "RemoteException", e);
2878 Slog.wtf(TA
3635 final void wtf(String message) { method in class:ShortcutService
3640 void wtf(String message, Throwable e) { method in class:ShortcutService
[all...]

Completed in 1109 milliseconds