Searched defs:userLog (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DAbstractSyncParser.java177 userLog("Parsed key for ", mMailbox.mDisplayName, ": ", newKey);
211 userLog("Changes found to ping loop mailbox ", mMailbox.mDisplayName, ": will ping.");
226 userLog("Aborting account syncs due to mailbox change to ping...");
232 userLog("MoreAvailable");
237 void userLog(String ...strings) { method in class:AbstractSyncParser
238 mService.userLog(strings);
241 void userLog(String string, int num, String string2) { method in class:AbstractSyncParser
242 mService.userLog(string, num, string2);
H A DAbstractSyncAdapter.java95 public void userLog(String ...strings) { method in class:AbstractSyncAdapter
96 mService.userLog(strings);
140 userLog("Reset SyncKey to 0");
223 mService.userLog("Results: " + result.length);
295 mService.userLog("Try to execute ", ops.size(), " CPO's for " + authority);
302 mService.userLog("Transaction too large; spliting!");
311 mService.userLog("Try mini-batch of ", mini.size(), " CPO's");
/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DAbstractSyncService.java192 public void userLog(String string, int code, String string2) { method in class:AbstractSyncService
194 userLog(string + code + string2);
198 public void userLog(String string, int code) { method in class:AbstractSyncService
200 userLog(string + code);
204 public void userLog(String str, Exception e) { method in class:AbstractSyncService
221 public void userLog(String ...strings) { method in class:AbstractSyncService

Completed in 44 milliseconds