HomeSort by relevance Sort by last modified time
    Searched defs:userLog (Results 1 - 7 of 7) sorted by null

  /packages/apps/Email/src/com/android/exchange/adapter/
AbstractSyncParser.java 145 userLog("Parsed key for ", mMailbox.mDisplayName, ": ", newKey);
179 userLog("Changes found to ping loop mailbox ", mMailbox.mDisplayName, ": will ping.");
194 userLog("Aborting account syncs due to mailbox change to ping...");
199 userLog("Returning moreAvailable = " + moreAvailable);
203 void userLog(String ...strings) {
204 mService.userLog(strings);
207 void userLog(String string, int num, String string2) {
208 mService.userLog(string, num, string2);
AbstractSyncAdapter.java 73 public void userLog(String ...strings) {
74 mService.userLog(strings);
88 userLog("Reset SyncKey to 0");
EmailSyncAdapter.java 423 userLog("Deleting ", serverId + ", "
461 userLog("Changing ", serverId);
574 userLog(mMailbox.mDisplayName, " SyncKey saved as: ", mMailbox.mSyncKey);
706 userLog("Postponing deletion of referenced message: ", serverId);
    [all...]
CalendarSyncAdapter.java 237 userLog("SyncKey retrieved as ", syncKey, " from CalendarProvider");
260 userLog("SyncKey set to ", syncKey, " in CalendarProvider");
433 userLog("Changing (delete/add) event ", serverId);
442 userLog(TAG, "Changed item not found; treating as new.");
458 userLog("All-day event arrived in: " + timeZone.getID());
462 userLog("Not an all-day event locally: " + mLocalTimeZone.getID());
593 mService.userLog("Maximum number of attendees exceeded; redacting");
    [all...]
  /packages/apps/Email/src/com/android/exchange/
EasOutboxService.java 138 userLog("Send cmd: " + cmd);
144 userLog("Deleting message...");
150 userLog("Message sending failed, code: " + code);
210 userLog("Exception caught in EasOutboxService", e);
213 userLog(mMailbox.mDisplayName, ": sync finished");
214 userLog("Outbox exited with status ", mExitStatus);
AbstractSyncService.java 206 public void userLog(String string, int code, String string2) {
208 userLog(string + code + string2);
212 public void userLog(String string, int code) {
214 userLog(string + code);
218 public void userLog(String str, Exception e) {
235 public void userLog(String ...strings) {
EasSyncService.java 273 userLog(threadName, ": Alert, aborting ", query);
275 userLog(threadName, ": Alert, no URI?");
283 userLog("Alert, no pending POST");
296 userLog(threadName + ": State = " + s.name());
305 userLog("Interrupting...");
322 userLog("Reset, aborting Ping");
364 userLog("Server supports versions: ", supportedVersions);
392 userLog("Testing EAS: ", hostAddress, ", ", userName, ", ssl = ", ssl ? "1" : "0");
405 userLog("Validation (OPTIONS) response: " + code);
411 userLog("OPTIONS response without commands or versions; reporting I/O error")
    [all...]

Completed in 130 milliseconds