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

  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSettings.java 17 package com.android.exchange.eas;
EasSyncCollectionTypeBase.java 1 package com.android.exchange.eas;
7 import com.android.exchange.Eas;
33 * Write the contents of a Collection node in an EAS sync request appropriate for our mailbox.
75 * @param protocolVersion The EAS protocol version for this request, as a double.
90 if (protocolVersion >= Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE) {
93 s.data(Tags.BASE_TYPE, Eas.BODY_PREFERENCE_TEXT);
94 s.data(Tags.BASE_TRUNCATION_SIZE, Eas.EAS12_TRUNCATION_SIZE);
97 s.data(Tags.SYNC_TRUNCATION, Eas.EAS2_5_TRUNCATION_SIZE);
EasOptions.java 17 package com.android.exchange.eas;
19 import com.android.exchange.Eas;
36 private static final String LOG_TAG = Eas.LOG_TAG;
43 Eas.SUPPORTED_PROTOCOL_EX2003,
44 Eas.SUPPORTED_PROTOCOL_EX2007, Eas.SUPPORTED_PROTOCOL_EX2007_SP1,
45 Eas.SUPPORTED_PROTOCOL_EX2010, Eas.SUPPORTED_PROTOCOL_EX2010_SP1);
116 // The string is a comma separated list of EAS versions in ascending order
EasSearchGal.java 1 package com.android.exchange.eas;
EasSyncMail.java 1 package com.android.exchange.eas;
13 import com.android.exchange.Eas;
54 // window, body preference type (HTML for EAS 12.0 and later; MIME for EAS 2.5), and
57 // so we turn MIME support off. Note that we are always using EAS 2.5 if there are fetch
64 if (protocolVersion < Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE) {
80 // Set the lookback appropriately (EAS calls this a "filter")
83 if (protocolVersion >= Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE) {
86 s.data(Tags.BASE_TYPE, Eas.BODY_PREFERENCE_HTML);
87 s.data(Tags.BASE_TRUNCATION_SIZE, Eas.EAS12_TRUNCATION_SIZE)
    [all...]
EasConnectionCache.java 17 package com.android.exchange.eas;
24 import com.android.exchange.Eas;
90 LogUtils.d(Eas.LOG_TAG, "Creating new connection manager for HostAuth %d", hostAuth.mId);
118 LogUtils.d(Eas.LOG_TAG, "Aging out connection manager for HostAuth %d",
129 LogUtils.d(Eas.LOG_TAG, "Reusing cached connection manager for HostAuth %d",
163 LogUtils.d(Eas.LOG_TAG, "Uncaching connection manager for HostAuth %d", hostAuth.mId);
EasFolderSync.java 17 package com.android.exchange.eas;
39 * Implements the EAS FolderSync command. We use this both to actually do a folder sync, and also
EasSyncBase.java 1 package com.android.exchange.eas;
12 import com.android.exchange.Eas;
25 * Performs an EAS sync operation for one folder (excluding mail upsync).
30 private static final String TAG = Eas.LOG_TAG;
81 final String className = Eas.getFolderClass(mMailbox.mType);
90 // The "Class" element is removed in EAS 12.1 and later versions
91 if (getProtocolVersion() < Eas.SUPPORTED_PROTOCOL_EX2007_SP1_DOUBLE) {
EasFullSyncOperation.java 1 package com.android.exchange.eas;
18 import com.android.exchange.Eas;
41 * The content authorities that can be synced for EAS accounts. Initialization must wait until
104 mAccount.mEmailAddress, Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE);
EasMoveItems.java 1 package com.android.exchange.eas;
EasProvision.java 17 package com.android.exchange.eas;
26 import com.android.exchange.Eas;
39 * Implements the EAS Provision protocol.
53 private static final String LOG_TAG = Eas.LOG_TAG;
55 /** The policy type for versions of EAS prior to 2007. */
57 /** The policy type for versions of EAS starting with 2007. */
58 public static final String EAS_12_POLICY_TYPE = "MS-EAS-Provisioning-WBXML";
60 /** The EAS protocol Provision status for "we implement all of the policies" */
62 /** The EAS protocol Provision status meaning "we partially implement the policies" */
204 if (version == Eas.SUPPORTED_PROTOCOL_EX2007_SP1_DOUBL
    [all...]
EasSearch.java 1 package com.android.exchange.eas;
12 import com.android.exchange.Eas;
111 s.data(Tags.SEARCH_VALUE, Eas.DATE_FORMAT.format(mSearchParams.mStartDate));
117 s.data(Tags.SEARCH_VALUE, Eas.DATE_FORMAT.format(mSearchParams.mEndDate));
131 s.data(Tags.BASE_TYPE, Eas.BODY_PREFERENCE_HTML);
EasSendMeetingResponse.java 1 package com.android.exchange.eas;
44 /** EAS protocol values for UserResponse. */
64 * EAS values. They're currently identical but this is for future-proofing.
66 * @return The EAS protocol value to use.
EasSync.java 17 package com.android.exchange.eas;
32 import com.android.exchange.Eas;
111 getAccountId(), getProtocolVersion() < Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE);
266 if (getProtocolVersion() < Eas.SUPPORTED_PROTOCOL_EX2007_SP1_DOUBLE) {
267 s.data(Tags.SYNC_CLASS, Eas.getFolderClass(collectionType));
271 if (getProtocolVersion() >= Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE) {
289 // "Flag" is a relatively complex concept in EAS 12.0 and above. It is not only
292 // recurrences. We don't support any of this as yet, but EAS 12.0 and higher
EasLoadAttachment.java 17 package com.android.exchange.eas;
28 import com.android.exchange.Eas;
127 // These four characters are commonly received in EAS 2.5 attachment names and are
203 if (getProtocolVersion() >= Eas.SUPPORTED_PROTOCOL_EX2010_DOUBLE) {
204 // The operation is different in EAS 14.0 than in earlier versions
208 // For Exchange 2003 (EAS 2.5), we have to look for illegal chars in the file name
209 // that EAS sent to us!
210 if (getProtocolVersion() < Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE) {
228 if (getProtocolVersion() >= Eas.SUPPORTED_PROTOCOL_EX2010_DOUBLE) {
315 if (getProtocolVersion() >= Eas.SUPPORTED_PROTOCOL_EX2010_DOUBLE)
    [all...]
EasPing.java 17 package com.android.exchange.eas;
35 import com.android.exchange.Eas;
53 private static final String TAG = Eas.LOG_TAG;
310 s.data(Tags.PING_CLASS, Eas.getFolderClass(mailbox.mType));
EasAutoDiscover.java 1 package com.android.exchange.eas;
13 import com.android.exchange.Eas;
77 hostAuth.mProtocol = Eas.PROTOCOL;
217 mHostAuth.mProtocol = Eas.PROTOCOL;
EasOperation.java 17 package com.android.exchange.eas;
38 import com.android.exchange.Eas;
108 /** Message MIME type for EAS version 14 and later. */
477 * @return The name of the command for this operation as defined by the EAS protocol, or for
696 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE), mailboxId);
    [all...]
EasOutboxSync.java 1 package com.android.exchange.eas;
22 import com.android.exchange.Eas;
92 mIsEas14 = Eas.isProtocolEas14(mAccount.mProtocolVersion);
99 // In EAS 14, we don't send itemId and collectionId in the command
106 // If we're not EAS 14, add our save-in-sent setting here
358 // Note: itemId and collectionId are the terms used by EAS to refer to the serverId and
422 if (getProtocolVersion() < Eas.SUPPORTED_PROTOCOL_EX2010_DOUBLE) {
498 // the message, as EAS 14 limits the length to 40 chars and we use 70+)
EasSyncContacts.java 1 package com.android.exchange.eas;
34 import com.android.exchange.Eas;
57 private static final String TAG = Eas.LOG_TAG;
158 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE);
268 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE)
372 DATE_FORMATS = new DateFormat[] { Eas.DATE_FORMAT, SHORT_DATE_FORMAT };
399 s.data(tag, Eas.DATE_FORMAT.format(date));
689 // EAS won't accept note data with raw newline characters
693 if (protocolVersion >= Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE) {
695 s.data(Tags.BASE_TYPE, Eas.BODY_PREFERENCE_TEXT).data(Tags.BASE_DATA, note)
    [all...]
EasSyncCalendar.java 1 package com.android.exchange.eas;
31 import com.android.exchange.Eas;
53 private static final String TAG = Eas.LOG_TAG;
132 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE);
138 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE,
157 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE,
224 .appendQueryParameter(Calendars.ACCOUNT_TYPE, Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE)
249 setPimSyncOptions(s, Eas.FILTER_2_WEEKS, protocolVersion,
348 * Convert {@link Events} visibility values to EAS visibility values.
350 * @return The corresponding EAS visibility value
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/eas/
EasProvisionTests.java 17 package com.android.exchange.eas;
26 import com.android.exchange.Eas;
35 * runtest -c com.android.exchange.eas.EasProvisionTests exchange
50 final double protocolVersion = Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE;
80 final double protocolVersion = Eas.SUPPORTED_PROTOCOL_EX2010_SP1_DOUBLE;
111 final double protocolVersion = Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE;
139 final double protocolVersion = Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE;
EasSyncContactsTests.java 17 package com.android.exchange.eas;
31 * runtest -c com.android.exchange.eas.EasSyncContactsTests exchange

Completed in 546 milliseconds