Home
last modified time | relevance | path

Searched refs:wtf (Results 1 – 2 of 2) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/log/
DLogUtil.java233 public static void wtf(String message) { in wtf() method in LogUtil.CLog
234 wtf(message, (Throwable) null); in wtf()
243 public static void wtf(Throwable t) { in wtf() method in LogUtil.CLog
244 wtf(t.getMessage(), t); in wtf()
255 public static void wtf(String format, Object... args) { in wtf() method in LogUtil.CLog
256 wtf(String.format(format, args), (Throwable) null); in wtf()
266 public static void wtf(String message, Throwable t) { in wtf() method in LogUtil.CLog
/tools/tradefederation/core/tests/src/com/android/tradefed/log/
DLogUtilFuncTest.java93 CLog.wtf("this is CLog.wtf"); in testCLog_wtf()
94 CLog.wtf(new Throwable("this is CLog.wtf as a throwable")); in testCLog_wtf()
95 CLog.wtf("this is CLog.wtf with a format string: %s has length %d", in testCLog_wtf()
97 CLog.wtf("this is CLog.wtf with a throwable", new Throwable("this is my throwable")); in testCLog_wtf()
115 CLog.wtf("this is CLog.wtf without any handler set"); in testCLog_wtf_wtfHandlerNotSet()