HomeSort by relevance Sort by last modified time
    Searched defs:LogUtils (Results 1 - 25 of 230) sorted by null

1 2 3 4 5 6 7 8 910

  /packages/inputmethods/LatinIME/native/jni/src/utils/
log_utils.h 25 class LogUtils {
34 DISALLOW_COPY_AND_ASSIGN(LogUtils);
  /packages/apps/Exchange/src/com/android/exchange/adapter/
MeetingResponseParser.java 19 import com.android.mail.utils.LogUtils;
39 LogUtils.w(TAG, "Error in meeting response: %d", status);
42 LogUtils.d(TAG, "Meeting response calender id: %s", getValue());
MoveItemsParser.java 19 import com.android.mail.utils.LogUtils;
53 LogUtils.e(TAG, "Trying to get status for MoveItems, but no status was set");
97 LogUtils.w(TAG, "Error in MoveItems: %d", status);
101 LogUtils.d(TAG, "Moved message id is now: %s", mNewServerId);
104 LogUtils.d(TAG, "Source message id is: %s", mNewServerId);
SettingsParser.java 19 import com.android.mail.utils.LogUtils;
48 LogUtils.d(TAG, "Settings status = %d", status);
77 LogUtils.d(TAG, "Set status = %d", getValueInt());
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
EmptyService.java 23 import com.android.mail.utils.LogUtils;
36 LogUtils.v(TAG, "onCreate()");
41 LogUtils.i(TAG, "onBind()");
  /packages/apps/Exchange/src/com/android/exchange/service/
EmailSyncAdapterService.java 35 import com.android.mail.utils.LogUtils;
69 LogUtils.v(TAG, "EmailSyncAdapterService.onCreate()");
76 LogUtils.v(TAG, "EmailSyncAdapterService.onDestroy()");
105 if (LogUtils.isLoggable(TAG, Log.DEBUG)) {
106 LogUtils.d(TAG, "onPerformSync email: %s, %s", acct.toString(), extras.toString());
108 LogUtils.i(TAG, "onPerformSync email: %s", extras.toString());
125 LogUtils.w(TAG,
135 LogUtils.d(TAG, "onPerformSync: mailbox push only");
140 LogUtils.e(TAG, re, "While trying to pushModify within onPerformSync");
153 LogUtils.e(TAG, e, "While trying to pushModify within onPerformSync")
    [all...]
CalendarSyncAdapterService.java 36 import com.android.mail.utils.LogUtils;
39 private static final String TAG = LogUtils.TAG;
70 if (LogUtils.isLoggable(TAG, Log.DEBUG)) {
71 LogUtils.d(TAG, "onPerformSync calendar: %s, %s",
74 LogUtils.i(TAG, "onPerformSync calendar: %s", extras.toString());
86 LogUtils.w(TAG,
97 LogUtils.e(TAG, "Null changes cursor in CalendarSyncAdapterService");
103 LogUtils.d(TAG, "No changes for " + acct.name);
118 LogUtils.d(TAG, "onPerformSync calendar: mailbox push only");
124 LogUtils.e(TAG, re, "While trying to pushModify within onPerformSync")
    [all...]
ContactsSyncAdapterService.java 38 import com.android.mail.utils.LogUtils;
70 if (LogUtils.isLoggable(TAG, Log.DEBUG)) {
71 LogUtils.d(TAG, "onPerformSync contacts starting %s, %s", acct.toString(),
74 LogUtils.i(TAG, "onPerformSync contacts starting %s", extras.toString());
86 LogUtils.w(TAG,
110 LogUtils.d(TAG, "Upload sync; no changes");
121 LogUtils.d(TAG, "onPerformSync email: mailbox push only");
127 LogUtils.e(TAG, re, "While trying to pushModify within onPerformSync");
141 LogUtils.e(TAG, e, "While trying to pushModify within onPerformSync");
145 LogUtils.d(TAG, "onPerformSync contacts: finished")
    [all...]
PingTask.java 27 import com.android.mail.utils.LogUtils;
64 LogUtils.i(TAG, "Ping task starting for %d", mOperation.getAccountId());
74 LogUtils.e(TAG, e, "Ping exception for account %d", mOperation.getAccountId());
77 LogUtils.i(TAG, "Ping task ending with status: %d", pingStatus);
87 LogUtils.w(TAG, "Ping cancelled for %d", mOperation.getAccountId());
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/
Device.java 24 import com.android.mail.utils.LogUtils;
65 LogUtils.e(Logging.LOG_TAG,
72 LogUtils.w(Logging.LOG_TAG, f.getAbsolutePath() + ": File exists, but can't read?" +
75 LogUtils.w(Logging.LOG_TAG, "Remove failed. Tring to overwrite.");
108 LogUtils.d(Logging.LOG_TAG, "Error in TelephonyManager.getDeviceId(): "
  /packages/apps/Email/src/com/android/email/
EmailIntentService.java 23 import com.android.mail.utils.LogUtils;
43 LogUtils.v(LOG_TAG, "Handling intent %s", intent);
StopWatch.java 20 import com.android.mail.utils.LogUtils;
46 LogUtils.w(Logging.LOG_TAG, "StopWatch(" + mName + ") start");
56 LogUtils.w(Logging.LOG_TAG, "StopWatch(" + mName + ") split(" + label + ") " + elapse);
62 LogUtils.w(Logging.LOG_TAG, "StopWatch(" + mName + ") stop: "
  /packages/apps/Email/src/com/android/email/mail/transport/
StatusOutputStream.java 20 import com.android.mail.utils.LogUtils;
39 LogUtils.v(Logging.LOG_TAG, "# " + mCount);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SuppressNotificationReceiver.java 24 import com.android.mail.utils.LogUtils;
67 LogUtils.wtf(LOG_TAG, "Malformed mimetype: %s", mMimeType);
72 LogUtils.d(LOG_TAG, "Registering receiver with no mime type");
123 LogUtils.e(LOG_TAG, "unexpected null context");
136 LogUtils.e(LOG_TAG, "SuppressNotificationReceiver.onReceive: account=%s, folder=%s",
161 LogUtils.i(LOG_TAG, "Aborting broadcast of intent %s, folder uri is %s",
RecentFolderList.java 31 import com.android.mail.utils.LogUtils;
118 LogUtils.i(TAG, "Save: %s", mFolder.name);
166 LogUtils.e(TAG, "RecentFolderList.loadFromUiProvider: bad input. mAccount=%s,cursor=%s",
170 LogUtils.d(TAG, "Number of recents = %d", c.getCount());
172 LogUtils.e(TAG, "Not able to move to last in recent labels cursor");
182 LogUtils.v(TAG, "Account %s, Recent: %s", mAccount.getEmailAddress(), folder.name);
198 LogUtils.w(TAG, "No account set for setting recent folders?");
205 LogUtils.d(TAG, "Not touching recent folder because it's provider or search folder");
UiHandler.java 25 import com.android.mail.utils.LogUtils;
55 LogUtils.d(LOG_TAG, "UiHandler is disabled in post(). Dropping Runnable.");
70 LogUtils.d(LOG_TAG, "UiHandler is disabled in postDelayed(). Dropping Runnable.");
83 LogUtils.e(LOG_TAG, "Disable UiHandler. Dropping %d Runnables.", count);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
BitmapUtil.java 55 LogUtils.w(TAG, t, "BitmapUtils unable to decode image");
75 LogUtils.w(TAG, t, "BitmapUtils unable to crop image");
163 if (DEBUG) LogUtils.i(TAG,
169 LogUtils.e(TAG, new Error(), "BitmapUtils last center crop violated assumptions.");
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
PolicyServiceProxy.java 25 import com.android.mail.utils.LogUtils;
58 LogUtils.v(TAG, "isActive: " + ((mReturn == null) ? "null" : mReturn));
63 LogUtils.e(TAG, "PolicyService unavailable in isActive; assuming false");
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasOptions.java 21 import com.android.mail.utils.LogUtils;
89 LogUtils.e(LOG_TAG, "OPTIONS response without commands or versions");
119 LogUtils.d(LOG_TAG, "Server supports versions: %s", supportedVersions);
EasSearchGal.java 15 import com.android.mail.utils.LogUtils;
73 LogUtils.wtf(LogUtils.TAG, "Failure to parse GalResult");
80 LogUtils.d(LogUtils.TAG, "GAL lookup returned %d", code);
EasFullSyncOperation.java 23 import com.android.mail.utils.LogUtils;
31 private final static String TAG = LogUtils.TAG;
73 LogUtils.e(TAG, "unexpected call to EasFullSyncOperation.getCommand");
82 LogUtils.e(TAG, "unexpected call to EasFullSyncOperation.getRequestEntity");
92 LogUtils.e(TAG, "unexpected call to EasFullSyncOperation.handleResponse");
100 LogUtils.i(LOG_TAG, "Failed to initialize %d before operation EasFullSyncOperation",
144 LogUtils.i(TAG, "Fatal result %d on folderSync", result);
159 LogUtils.i(TAG, "Fatal result %d on MoveItems", result);
167 LogUtils.i(TAG, "Fatal result %d on upsync", result);
178 LogUtils.i(TAG, "Fatal result %d on syncMailbox", result)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
EmlMessageLoader.java 30 import com.android.mail.utils.LogUtils;
59 LogUtils.e(LOG_TAG, e, "Could not find eml file at uri: %s", mEmlFileUri);
69 LogUtils.e(LOG_TAG, e, "Could not read eml file");
72 LogUtils.e(LOG_TAG, e, "Error in parsing eml file");
87 LogUtils.d(LOG_TAG, "Failed to delete temp file" + file.getName());
  /packages/apps/Email/src/com/android/email/activity/
ComposeActivityEmail.java 27 import com.android.mail.utils.LogUtils;
39 LogUtils.d(LogUtils.TAG, "mReplyFromAccount is null, not adding Quick Response menu");
  /packages/apps/Email/tests/src/com/android/emailcommon/
DeviceTests.java 25 import com.android.mail.utils.LogUtils;
34 LogUtils.w(Logging.LOG_TAG, "TelephonyManager not supported. Skipping.");
  /packages/apps/Exchange/src/com/android/exchange/
ExchangeBroadcastReceiver.java 18 import com.android.mail.utils.LogUtils;
26 LogUtils.i(Eas.LOG_TAG, "Accounts changed - requesting FolderSync for unsynced accounts");

Completed in 1594 milliseconds

1 2 3 4 5 6 7 8 910