Searched defs:wtf (Results 1 - 5 of 5) 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.java87 * Exception class used to capture a stack trace in {@link #wtf}.
94 * Interface to handle terrible failures from {@link #wtf}.
104 RuntimeInit.wtf(tag, what, system);
255 public static int wtf(String tag, String msg) { method in class:Log
256 return wtf(LOG_ID_MAIN, tag, msg, null, false, false);
260 * Like {@link #wtf(String, String)}, but also writes to the log the full
265 return wtf(LOG_ID_MAIN, tag, msg, null, true, false);
270 * Similar to {@link #wtf(String, String)}, with an exception to log.
274 public static int wtf(String tag, Throwable tr) { method in class:Log
275 return wtf(LOG_ID_MAI
285 public static int wtf(String tag, String msg, Throwable tr) { method in class:Log
289 static int wtf(int logId, String tag, String msg, Throwable tr, boolean localStack, method in class:Log
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DLog.java108 public static void wtf(String prefix, Throwable tr, String format, Object... args) { method in class:Log
109 android.util.Log.wtf(TAG, buildMessage(prefix, format, args), tr);
112 public static void wtf(Object objectPrefix, Throwable tr, String format, Object... args) { method in class:Log
113 android.util.Log.wtf(TAG, buildMessage(getPrefixFromObject(objectPrefix), format, args),
117 public static void wtf(String prefix, String format, Object... args) { method in class:Log
119 android.util.Log.wtf(TAG, msg, new IllegalStateException(msg));
122 public static void wtf(Object objectPrefix, String format, Object... args) { method in class:Log
124 android.util.Log.wtf(TAG, msg, new IllegalStateException(msg));
175 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.java346 public static void wtf(String tag, Throwable t, boolean system) { method in class:RuntimeInit

Completed in 209 milliseconds