Home | History | Annotate | Download | only in exchange

Lines Matching refs:reason

123     // Reason codes when ExchangeService.kick is called (mainly for debugging)
227 // The reason for ExchangeService's next wakeup call
1059 int reason;
1065 reason = _reason;
1091 log("Mailbox " + m.mDisplayName + ", error = " + error.reason
1115 * Release a specific type of hold (the reason) for the specified Account; if the account
1117 * @param reason the reason for the SyncError (AbstractSyncService.EXIT_XXX)
1121 /*package*/ boolean releaseSyncHolds(Context context, int reason, Account account) {
1122 boolean holdWasReleased = releaseSyncHoldsImpl(context, reason, account);
1127 private boolean releaseSyncHoldsImpl(Context context, int reason, Account account) {
1139 if (error != null && error.reason == reason) {
1629 private void requestSync(Mailbox m, int reason, Request req) {
1632 if (reason >= SYNC_CALLBACK_START) {
1649 service.mSyncReason = reason;
2307 static public void serviceRequest(long mailboxId, int reason) {
2308 serviceRequest(mailboxId, 5*SECONDS, reason);
2320 static public void serviceRequest(long mailboxId, long ms, int reason) {
2331 startManualSync(mailboxId, reason, null);
2397 static public void startManualSync(long mailboxId, int reason, Request req) {
2407 exchangeService.requestSync(m, reason, req);
2410 // If this is a ui request, set the sync reason for the service
2411 if (reason >= SYNC_CALLBACK_START) {
2412 svc.mSyncReason = reason;
2436 static public void kick(String reason) {
2440 //INSTANCE.log("Kick: " + reason);