OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:userLog
(Results
1 - 7
of
7
) sorted by null
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
AbstractSyncParser.java
177
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) {
238
mService.
userLog
(strings);
241
void
userLog
(String string, int num, String string2) {
242
mService.
userLog
(string, num, string2);
AbstractSyncAdapter.java
95
public void
userLog
(String ...strings) {
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");
CalendarSyncAdapter.java
282
userLog
("SyncKey retrieved as ", syncKey, " from CalendarProvider");
307
userLog
("SyncKey set to ", syncKey, " in CalendarProvider");
472
userLog
("Changing (delete/add) event ", serverId);
481
userLog
(TAG, "Changed item not found; treating as new.");
497
userLog
("All-day event arrived in: " + timeZone.getID());
501
userLog
("Not an all-day event locally: " + mLocalTimeZone.getID());
648
mService.
userLog
("Maximum number of attendees exceeded; redacting");
[
all
...]
/packages/apps/Exchange/exchange2/src/com/android/exchange/
AbstractSyncService.java
192
public void
userLog
(String string, int code, String string2) {
194
userLog
(string + code + string2);
198
public void
userLog
(String string, int code) {
200
userLog
(string + code);
204
public void
userLog
(String str, Exception e) {
221
public void
userLog
(String ...strings) {
EasOutboxService.java
402
userLog
("Send cmd: " + cmd);
421
userLog
("SendMail error, status: " + status);
439
userLog
("Deleting message...");
451
userLog
("Message sending failed, code: " + code);
520
userLog
("Exception caught in EasOutboxService", e);
523
userLog
(mMailbox.mDisplayName, ": sync finished");
524
userLog
("Outbox exited with status ", mExitStatus);
EasAccountService.java
158
userLog
("Caught authentication error");
162
userLog
("Caught IOException: ", (message == null) ? "No message" : message);
165
userLog
("Uncaught exception in AccountMailboxService", e);
169
userLog
("Sync finished");
181
userLog
("Stopped sync finished.");
198
userLog
("AccountMailbox redirect error");
231
userLog
("Account syncKey INIT to 0");
239
userLog
("Initial FolderSync");
255
userLog
("Determine EAS protocol version");
259
userLog
("OPTIONS response: ", code)
[
all
...]
EasSyncService.java
239
userLog
(threadName, ": Alert, aborting ", query);
241
userLog
(threadName, ": Alert, no URI?");
249
userLog
("Alert, no pending POST");
262
userLog
(threadName + ": State = " + s.name());
271
userLog
("Interrupting...");
288
userLog
("Reset, aborting Ping");
320
userLog
("Server supports versions: ", supportedVersions);
418
userLog
("Redirecting to: " + loc);
435
userLog
("Testing EAS: ", hostAuth.mAddress, ", ", hostAuth.mLogin,
449
userLog
("Validation (OPTIONS) response: " + code)
[
all
...]
Completed in 1132 milliseconds