Searched refs:wtf (Results 1 - 25 of 120) sorted by relevance

12345

/packages/services/Telecomm/src/com/android/server/telecom/
H A DThreadUtil.java40 Log.wtf(TAG, new IllegalStateException(), "Must be on the main thread!");
50 Log.wtf(TAG, new IllegalStateException(), "Must not be on the main thread!");
H A DSystemLoggingContainer.java44 public void wtf(String TAG, String msg, Throwable tr) { method in class:SystemLoggingContainer
45 android.util.Slog.wtf(TAG, msg, tr);
H A DRingbackPlayer.java61 Log.wtf(this, "Ringback player thinks there are two foreground-dialing calls.");
/packages/apps/Dialer/src-pre-N/com/android/dialer/compat/
H A DUserManagerSdkCompat.java30 Log.wtf("UserManagerSdkCompat", "Not implemented");
/packages/services/Telephony/src/com/android/phone/vvm/omtp/
H A DVvmLog.java96 public static int wtf(String tag, String log) { method in class:VvmLog
98 return Log.wtf(tag, log);
101 public static int wtf(String tag, String log, Throwable e) { method in class:VvmLog
103 return Log.wtf(tag, log, e);
H A DDefaultOmtpEventHandler.java46 VvmLog.wtf(TAG, "invalid event type " + event.getType() + " for " + event);
86 VvmLog.wtf(TAG, "invalid configuration event " + event);
159 VvmLog.wtf(TAG, "invalid data channel event " + event);
183 VvmLog.wtf(TAG, "invalid notification channel event " + event);
199 VvmLog.wtf(TAG, "invalid other event " + event);
/packages/services/Telephony/src/com/android/services/telephony/
H A DLog.java106 public static void wtf(String prefix, Throwable tr, String format, Object... args) { method in class:Log
107 android.util.Log.wtf(TAG, buildMessage(prefix, format, args), tr);
110 public static void wtf(Object objectPrefix, Throwable tr, String format, Object... args) { method in class:Log
111 android.util.Log.wtf(TAG, buildMessage(getPrefixFromObject(objectPrefix), format, args),
115 public static void wtf(String prefix, String format, Object... args) { method in class:Log
117 android.util.Log.wtf(TAG, msg, new IllegalStateException(msg));
120 public static void wtf(Object objectPrefix, String format, Object... args) { method in class:Log
122 android.util.Log.wtf(TAG, msg, new IllegalStateException(msg));
173 wtf("Log", ife, "IllegalFormatException: formatString='%s' numArgs=%d", format,
/packages/apps/Messaging/tests/src/com/android/messaging/
H A DTestUtil.java68 LogUtil.wtf(LogUtil.BUGLE_TAG, "You need to turn on your screen to run tests!");
80 LogUtil.wtf(LogUtil.BUGLE_TAG, "You currently can't reliably run unit tests" +
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DAccountObserver.java58 LogUtils.wtf(LOG_TAG, "AccountObserver initialized with null controller!");
H A DAllAccountObserver.java57 LogUtils.wtf(LOG_TAG, "AllAccountObserver initialized with null controller!");
H A DFolderObserver.java58 LogUtils.wtf(LOG_TAG, "FolderObserver initialized with null controller!");
H A DRecentFolderObserver.java61 LogUtils.wtf(LOG_TAG, "RecentFolderObserver initialized with null controller!");
H A DListParams.java96 LogUtils.wtf(LOG_TAG, e, "Could not serialize ListParams");
119 LogUtils.wtf(LOG_TAG, e, "Could not create an params object from this input: \""
H A DReplyFromAccount.java74 LogUtils.wtf(LOG_TAG, e, "Could not serialize account with address " + address);
91 LogUtils.wtf(LOG_TAG, e, "Could not deserialize replyfromaccount");
101 LogUtils.wtf(LOG_TAG, e, "Could not deserialize replyfromaccount");
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaUpgradeReceiver.java75 Log.wtf(TAG, "Error during upgrade of media db " + file, t);
87 Log.wtf(TAG, "Error during upgrade attempt.", t);
/packages/services/Telephony/src/com/android/phone/
H A DCallController.java111 Log.wtf(TAG, "init() called multiple times! sInstance = " + sInstance);
149 Log.wtf(TAG, "handleMessage: unexpected code: " + msg);
199 Log.wtf(TAG, "placeCall: called with null intent");
206 Log.wtf(TAG, "placeCall: intent had no data");
225 Log.wtf(TAG, "placeCall: unexpected intent action " + action);
527 Log.wtf(TAG, "placeCall: unknown callStatus " + callStatus
593 Log.wtf(TAG, "handleOutgoingCallError: SUCCESS isn't an error");
661 Log.wtf(TAG, "handleOutgoingCallError: unexpected status code " + status);
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
H A DCommonDatabaseUtils.java91 Log.wtf(TAG, "ContentResolver batch operation failed.");
93 Log.wtf(TAG, "Remote exception when performing batch operation.");
/packages/apps/DeskClock/src/com/android/deskclock/
H A DLogUtils.java113 public static void wtf(String message, Object... args) { method in class:LogUtils
115 Log.wtf(LOGTAG, args == null || args.length == 0 ? message
120 public static void wtf(String tag, String message, Object... args) { method in class:LogUtils
122 Log.wtf(LOGTAG + "/" + tag, args == null || args.length == 0 ? message
/packages/apps/Messaging/src/com/android/messaging/util/
H A DLogUtil.java189 public static void wtf(final String tag, final String msg) { method in class:LogUtil
191 println(android.util.Log.ASSERT, tag, "wtf\n" + msg);
192 android.util.Log.wtf(tag, msg, new Exception());
205 public static void wtf(final String tag, final String msg, final Throwable tr) { method in class:LogUtil
207 println(android.util.Log.ASSERT, tag, "wtf\n" + msg + '\n' +
209 android.util.Log.wtf(tag, msg, tr);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
H A DAppManagementActivity.java38 Log.wtf(TAG, "No app to inspect (missing data uri in intent)");
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DEmlViewerActivity.java53 LogUtils.wtf(LOG_TAG,
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
H A DMockRespondMatrixCursor.java48 LogUtils.wtf(LOG_TAG, "Unexpected position");
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DHelpActivity.java57 LogUtils.wtf(LOG_TAG, e, "Unable to locate application version.");
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DLogUtils.java365 public static int wtf(String tag, String format, Object... args) { method in class:LogUtils
366 return Log.wtf(tag, String.format(format, args), new Error());
384 public static int wtf(String tag, Throwable tr, String format, Object... args) { method in class:LogUtils
385 return Log.wtf(tag, String.format(format, args), tr);
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarUpgradeReceiver.java79 Log.wtf(TAG, "Error during upgrade attempt. Disabling receiver.", t);

Completed in 1103 milliseconds

12345