OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ExchangeService
(Results
1 - 18
of
18
) sorted by null
/packages/apps/Exchange/src/com/android/exchange/
MailboxAlarmReceiver.java
25
* MailboxAlarmReceiver is used to "wake up" the
ExchangeService
at the appropriate time(s). It may
32
long mailboxId = intent.getLongExtra("mailbox",
ExchangeService
.EXTRA_MAILBOX_ID);
34
if (mailboxId ==
ExchangeService
.EXCHANGE_SERVICE_MAILBOX_ID) {
35
context.startService(new Intent(context,
ExchangeService
.class));
37
ExchangeService
.alert(context, mailboxId);
EmailSyncAlarmReceiver.java
48
* If EmailProvider isn't available, the upsyncs will happen the next time
ExchangeService
starts
69
String selector =
ExchangeService
.getEasAccountSelector();
108
ExchangeService
.serviceRequest(mailboxId,
ExchangeService
.SYNC_UPSYNC);
ExchangeService.java
93
* The
ExchangeService
handles all aspects of starting, maintaining, and stopping the various sync
98
* The Email application communicates with EAS sync adapters via
ExchangeService
's binder interface,
101
*
ExchangeService
uses ContentObservers to detect changes to accounts, mailboxes, and messages in
105
public class
ExchangeService
extends Service implements Runnable {
107
private static final String TAG = "
ExchangeService
";
109
// The
ExchangeService
's mailbox "id"
123
// Reason codes when
ExchangeService
.kick is called (mainly for debugging)
134
// A part request (attachment load, for now) was sent to
ExchangeService
139
// startSync was requested of
ExchangeService
(other than due to user request)
141
// startSync was requested of
ExchangeService
(due to user request
[
all
...]
EasSyncService.java
448
svc.mDeviceId =
ExchangeService
.getDeviceId(context);
474
mDeviceId =
ExchangeService
.getDeviceId(context);
[
all
...]
EmailSyncAdapterService.java
86
* Partial integration with system SyncManager; we tell our EAS
ExchangeService
to start an
110
ExchangeService
.serviceRequest(mailboxCursor.getLong(0),
111
ExchangeService
.SYNC_KICK);
CalendarSyncAdapterService.java
92
* Partial integration with system SyncManager; we tell our EAS
ExchangeService
to start a
141
ExchangeService
.serviceRequest(mailboxCursor.getLong(
142
ID_SYNC_KEY_MAILBOX_ID),
ExchangeService
.SYNC_UPSYNC);
ContactsSyncAdapterService.java
97
* Partial integration with system SyncManager; we tell our EAS
ExchangeService
to start a
143
ExchangeService
.serviceRequest(mailboxCursor.getLong(0),
144
ExchangeService
.SYNC_UPSYNC);
EasOutboxService.java
212
ExchangeService
.callback().sendMessageStatus(msgId, subject, status, 0);
288
* IOException, which is handled by
ExchangeService
with retries, backoffs, etc.
453
mDeviceId =
ExchangeService
.getDeviceId(mContext);
494
ExchangeService
.done(this);
/packages/apps/Exchange/tests/src/com/android/exchange/
ExchangeServiceAccountTests.java
24
import com.android.exchange.
ExchangeService
.SyncError;
42
ExchangeService
exchangeService
= new
ExchangeService
();
44
exchangeService
.new SyncError(AbstractSyncService.EXIT_SECURITY_FAILURE, false);
46
exchangeService
.new SyncError(AbstractSyncService.EXIT_IO_ERROR, false);
48
exchangeService
.new SyncError(AbstractSyncService.EXIT_SECURITY_FAILURE, false);
61
ConcurrentHashMap<Long, SyncError> errorMap =
exchangeService
.mSyncErrorMap;
70
assertTrue(
exchangeService
.releaseSyncHolds(mProviderContext,
84
assertTrue(
exchangeService
.releaseSyncHolds(mProviderContext
[
all
...]
ExchangeServiceTest.java
44
final String id =
ExchangeService
.getDeviceId(context);
53
final String cachedId =
ExchangeService
.getDeviceId(context);
/packages/apps/Exchange/src/com/android/exchange/service/
ExchangeBroadcastProcessorService.java
27
import com.android.exchange.
ExchangeService
;
74
ExchangeService
.runAccountReconcilerSync(this);
83
startService(new Intent(this,
ExchangeService
.class));
/packages/apps/Exchange/src/com/android/exchange/adapter/
AbstractSyncParser.java
30
import com.android.exchange.
ExchangeService
;
154
ExchangeService
.reloadFolderList(mContext, mAccount.mId, true);
227
ExchangeService
.stopAccountSyncs(mAccount.mId);
AttachmentLoader.java
32
import com.android.exchange.
ExchangeService
;
76
ExchangeService
.callback().loadAttachmentStatus(mMessageId, mAttachmentId, status, 0);
84
ExchangeService
.callback().loadAttachmentStatus(mMessageId, mAttachmentId,
Search.java
36
import com.android.exchange.
ExchangeService
;
127
ExchangeService
.callback().syncMailboxStatus(destMailboxId,
FolderSyncParser.java
40
import com.android.exchange.
ExchangeService
;
171
ExchangeService
.deleteAccountPIMData(mAccountId);
178
ExchangeService
.stopNonAccountMailboxSyncsForAccount(mAccountId);
362
// TYPE_OUTBOX mailboxes are known by
ExchangeService
to sync whenever they
ProvisionParser.java
23
import com.android.exchange.
ExchangeService
;
209
// Note this policy; we enforce it in
ExchangeService
330
Context context =
ExchangeService
.getContext();
CalendarSyncAdapter.java
55
import com.android.exchange.
ExchangeService
;
207
ExchangeService
.unregisterCalendarObservers();
[
all
...]
/packages/apps/Exchange/src/com/android/exchange/utility/
CalendarUtilities.java
49
import com.android.exchange.
ExchangeService
;
360
ExchangeService
.log(TAG, "TZI string for " + tz.getDisplayName() +
[
all
...]
Completed in 2994 milliseconds