Searched defs:wtf (Results 1 - 3 of 3) sorted by path

/frameworks/base/core/java/android/util/
H A DLog.java86 * Exception class used to capture a stack trace in {@link #wtf()}.
93 * Interface to handle terrible failures from {@link #wtf()}.
103 RuntimeInit.wtf(tag, what);
254 public static int wtf(String tag, String msg) { method in class:Log
255 return wtf(tag, msg, null);
260 * Similar to {@link #wtf(String, String)}, with an exception to log.
264 public static int wtf(String tag, Throwable tr) { method in class:Log
265 return wtf(tag, tr.getMessage(), tr);
270 * Similar to {@link #wtf(String, Throwable)}, with a message as well.
275 public static int wtf(Strin method in class:Log
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DRuntimeInit.java327 public static void wtf(String tag, Throwable t) { method in class:RuntimeInit
/frameworks/support/volley/src/com/android/volley/
H A DVolleyLog.java46 public static void wtf(String format, Object... args) { method in class:VolleyLog
47 Log.wtf(TAG, buildMessage(format, args));
50 public static void wtf(Throwable tr, String format, Object... args) { method in class:VolleyLog
51 Log.wtf(TAG, buildMessage(format, args), tr);

Completed in 1443 milliseconds