Home
last modified time | relevance | path

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

123456

/packages/apps/DeskClock/src/com/android/deskclock/
DLogUtils.java53 public static void wtf(String message, Object... args) { in wtf() method in LogUtils
54 DEFAULT_LOGGER.wtf(message, args); in wtf()
57 public static void wtf(Throwable e) { in wtf() method in LogUtils
58 DEFAULT_LOGGER.wtf(e); in wtf()
124 public void wtf(String message, Object... args) { in wtf() method in LogUtils.Logger
126 Log.wtf(logTag, args == null || args.length == 0 ? message in wtf()
131 public void wtf(Throwable e) { in wtf() method in LogUtils.Logger
133 Log.wtf(logTag, e); in wtf()
/packages/apps/Bluetooth/src/com/android/bluetooth/hid/
DHidDeviceNativeInterface.java52 Log.wtf(TAG, "No Bluetooth Adapter Available"); in HidDeviceNativeInterface()
183 Log.wtf(TAG, "FATAL: onApplicationStateChanged() " in onApplicationStateChanged()
193 Log.wtf(TAG, "FATAL: onConnectStateChanged() " in onConnectStateChanged()
203 Log.wtf(TAG, "FATAL: onGetReport() " in onGetReport()
213 Log.wtf(TAG, "FATAL: onSetReport() " in onSetReport()
223 Log.wtf(TAG, "FATAL: onSetProtocol() " in onSetProtocol()
233 Log.wtf(TAG, "FATAL: onInterruptData() " in onInterruptData()
243 Log.wtf(TAG, "FATAL: onVirtualCableUnplug() " in onVirtualCableUnplug()
/packages/services/Telephony/src/com/android/services/telephony/
DLog.java93 public static void wtf(String prefix, Throwable tr, String format, Object... args) { in wtf() method in Log
94 android.util.Log.wtf(TAG, (args == null || args.length == 0) ? format : in wtf()
98 public static void wtf(Object objectPrefix, Throwable tr, String format, Object... args) { in wtf() method in Log
99 android.util.Log.wtf(TAG, (args == null || args.length == 0) ? format : in wtf()
103 public static void wtf(String prefix, String format, Object... args) { in wtf() method in Log
104 android.util.Log.wtf(TAG, (args == null || args.length == 0) ? format : in wtf()
108 public static void wtf(Object objectPrefix, String format, Object... args) { in wtf() method in Log
109 android.util.Log.wtf(TAG, (args == null || args.length == 0) ? format : in wtf()
/packages/apps/UniversalMediaPlayer/java/com/android/pump/util/
DClog.java107 public static int wtf(@NonNull String tag, @NonNull String msg) { in wtf() method in Clog
108 return android.util.Log.wtf(tag, msg); in wtf()
111 public static int wtf(@NonNull String tag, @NonNull Throwable tr) { in wtf() method in Clog
112 return android.util.Log.wtf(tag, tr); in wtf()
115 public static int wtf(@NonNull String tag, @NonNull String msg, @NonNull Throwable tr) { in wtf() method in Clog
116 return android.util.Log.wtf(tag, msg, tr); in wtf()
/packages/apps/Dialer/java/com/android/voicemail/impl/
DDefaultOmtpEventHandler.java47 VvmLog.wtf(TAG, "invalid event type " + event.getType() + " for " + event); in handleEvent()
85 VvmLog.wtf(TAG, "invalid configuration event " + event); in handleConfigurationEvent()
149 VvmLog.wtf(TAG, "invalid data channel event " + event); in handleDataChannelEvent()
175 VvmLog.wtf(TAG, "invalid notification channel event " + event); in handleNotificationChannelEvent()
190 VvmLog.wtf(TAG, "invalid other event " + event); in handleOtherEvent()
/packages/services/Car/tests/GarageModeTestApp/src/com/google/android/car/garagemode/testapp/
DLogger.java80 public void wtf(String msg) { in wtf() method in Logger
81 Log.wtf(mTag, buildMessage(msg)); in wtf()
85 public void wtf(String msg, Exception ex) { in wtf() method in Logger
86 Log.wtf(mTag, buildMessage(msg), ex); in wtf()
/packages/apps/Car/Messenger/src/com/android/car/messenger/log/
DL.java111 public static void wtf(String tag, @NonNull String msg, Object... args) { in wtf() method in L
112 Log.wtf(tag, String.format(msg, args)); in wtf()
123 public static void wtf(String tag, Exception e, @NonNull String msg, Object... args) { in wtf() method in L
124 Log.wtf(tag, String.format(msg, args), e); in wtf()
/packages/apps/Car/libs/car-settings-lib/src/com/android/car/settingslib/log/
DLoggerBase.java194 public void wtf(String message) { in wtf() method in LoggerBase
195 Log.wtf(mTag, mPrefix.concat(message)); in wtf()
205 public void wtf(String message, Throwable throwable) { in wtf() method in LoggerBase
206 Log.wtf(mTag, mPrefix.concat(message), throwable); in wtf()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/
DTestUtils.java78 .wtf(anyString(), anyString()); in makeSpyLogThrowExceptionForWtf()
85 .wtf(anyString(), anyString(), anyObject()); in makeSpyLogThrowExceptionForWtf()
101 .wtf(anyString(), anyString()); in makeSpyLogDoLogErrorForWtf()
112 .wtf(anyString(), anyString(), anyObject()); in makeSpyLogDoLogErrorForWtf()
/packages/services/Telephony/src/com/android/phone/vvm/
DVvmLog.java96 public static int wtf(String tag, String log) { in wtf() method in VvmLog
98 return Log.wtf(tag, log); in wtf()
101 public static int wtf(String tag, String log, Throwable e) { in wtf() method in VvmLog
103 return Log.wtf(tag, log, e); in wtf()
/packages/modules/IPsec/src/java/com/android/internal/net/utils/
DLog.java216 public void wtf(String prefix, String msg) { in wtf() method in Log
217 android.util.Log.wtf(mTAG, prefix + ": " + msg); in wtf()
232 public void wtf(String prefix, String msg, Throwable tr) { in wtf() method in Log
233 android.util.Log.wtf(mTAG, prefix + ": " + msg, tr); in wtf()
/packages/apps/Messaging/src/com/android/messaging/util/
DLogUtil.java189 public static void wtf(final String tag, final String msg) { in wtf() method in LogUtil
192 android.util.Log.wtf(tag, msg, new Exception()); in wtf()
205 public static void wtf(final String tag, final String msg, final Throwable tr) { in wtf() method in LogUtil
209 android.util.Log.wtf(tag, msg, tr); in wtf()
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/utils/
DLogUtils.java314 public static void wtf(String tag, String format, Object... args) { in wtf() method in LogUtils
315 VvmLog.wtf(tag, String.format(format, args), new Error()); in wtf()
331 public static void wtf(String tag, Throwable tr, String format, Object... args) { in wtf() method in LogUtils
332 VvmLog.wtf(tag, String.format(format, args), tr); in wtf()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/bluetoothKeystore/
DBluetoothKeystoreServiceTest.java129 Log.wtf(TAG, "Read file fail", e); in setUp()
146 Log.wtf(TAG, "Write back file fail or clean up encryption file", e); in tearDown()
160 Log.wtf(TAG, "Write file fail", e); in overwriteConfigFile()
/packages/services/Telecomm/src/com/android/server/telecom/
DThreadUtil.java41 Log.wtf(TAG, new IllegalStateException(), "Must be on the main thread!"); in checkOnMainThread()
51 Log.wtf(TAG, new IllegalStateException(), "Must not be on the main thread!"); in checkNotOnMainThread()
DSystemLoggingContainer.java44 public void wtf(String TAG, String msg, Throwable tr) { in wtf() method in SystemLoggingContainer
45 android.util.Slog.wtf(TAG, msg, tr); in wtf()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DBinderTracker.java35 Log.wtf(TAG, "Accessing tracker in released code.", new Exception()); in start()
44 Log.wtf(TAG, "Accessing tracker in released code.", new Exception()); in stop()
/packages/apps/Bluetooth/src/com/android/bluetooth/hearingaid/
DHearingAidStateMachine.java183 Log.wtf(TAG, "Device(" + mDevice + "): event mismatch: " + event); in processMessage()
288 Log.wtf(TAG, "Device(" + mDevice + "): event mismatch: " + event); in processMessage()
374 Log.wtf(TAG, "Device(" + mDevice + "): event mismatch: " + event); in processMessage()
468 Log.wtf(TAG, "Device(" + mDevice + "): event mismatch: " + event); in processMessage()
/packages/apps/Messaging/tests/src/com/android/messaging/
DTestUtil.java68 LogUtil.wtf(LogUtil.BUGLE_TAG, "You need to turn on your screen to run tests!"); in haltIfTestsAreNotAbleToRun()
80 LogUtil.wtf(LogUtil.BUGLE_TAG, "You currently can't reliably run unit tests" + in haltIfTestsAreNotAbleToRun()
/packages/providers/MediaProvider/src/com/android/providers/media/
DMediaUpgradeReceiver.java74 Log.wtf(TAG, "Error during upgrade of media db " + file, t); in onReceive()
86 Log.wtf(TAG, "Error during upgrade attempt.", t); in onReceive()
/packages/providers/ContactsProvider/test_common/src/com/android/providers/contacts/testutil/
DCommonDatabaseUtils.java91 Log.wtf(TAG, "ContentResolver batch operation failed."); in applyBatch()
93 Log.wtf(TAG, "Remote exception when performing batch operation."); in applyBatch()
/packages/apps/Calendar/src/com/android/calendar/
DCalendarController.java177 Log.wtf(TAG, "illegal call to isAllDay , wrong event type " + eventType); in isAllDay()
185 Log.wtf(TAG, "illegal call to getResponse , wrong event type " + eventType); in getResponse()
200 Log.wtf(TAG,"Unknown attendee response " + response); in getResponse()
223 Log.wtf(TAG,"Unknown attendee response " + response); in buildViewExtraLong()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
DFallbackHome.java117 Log.wtf(TAG, "Not supported", new Throwable()); in saveLockPassword()
122 Log.wtf(TAG, "Not supported", new Throwable()); in clearLockPassword()
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
DBrowsedPlayerWrapper.java139 Log.wtf(TAG, "connect: Trying to connect to " + mPackageName in connect()
248 Log.wtf(TAG, "getFolderItems: Trying to connect to " + mPackageName
316 Log.wtf(TAG, "Unknown message on timeout handler: " + msg.what);
DMediaPlayerWrapper.java305 Log.wtf(TAG, "Unknown message on timeout handler: " + msg.what); in handleMessage()
321 if (sTesting) Log.wtf(TAG, "Crashing the stack"); in handleMessage()
496 Log.wtf(TAG, message); in e()

123456