HomeSort by relevance Sort by last modified time
    Searched refs:Eas (Results 1 - 25 of 45) sorted by null

1 2

  /packages/apps/Exchange/src/com/android/exchange/eas/
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
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...]
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);
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);
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) {
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);
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...]
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
  /packages/apps/Exchange/src/com/android/exchange/adapter/
MeetingResponseParser.java 18 import com.android.exchange.Eas;
28 private static final String TAG = Eas.LOG_TAG;
MoveItemsParser.java 18 import com.android.exchange.Eas;
28 private static final String TAG = Eas.LOG_TAG;
33 // These are the EAS status codes for MoveItems
73 // Convert the EAS status code with our external codes
SettingsParser.java 18 import com.android.exchange.Eas;
27 * We only send the Settings command in EAS 14.0 after sending a Provision command for the first
33 private static final String TAG = Eas.LOG_TAG;
PingParser.java 20 import com.android.exchange.Eas;
34 private static final String TAG = Eas.LOG_TAG;
121 // - The EAS spec says to handle incomplete and malformed request errors by pinging again
FolderSyncParser.java 42 import com.android.exchange.Eas;
43 import com.android.exchange.eas.EasSyncContacts;
44 import com.android.exchange.eas.EasSyncCalendar;
67 * Mapping from EAS type values to {@link Mailbox} types.
68 * See http://msdn.microsoft.com/en-us/library/gg650877(v=exchg.80).aspx for the list of EAS
70 * If an EAS type is not in the map, or is inserted with a value of {@link Mailbox#TYPE_NONE},
77 MAILBOX_TYPE_MAP.put(Eas.MAILBOX_TYPE_USER_GENERIC, Mailbox.TYPE_MAIL);
78 MAILBOX_TYPE_MAP.put(Eas.MAILBOX_TYPE_INBOX, Mailbox.TYPE_INBOX);
79 MAILBOX_TYPE_MAP.put(Eas.MAILBOX_TYPE_DRAFTS, Mailbox.TYPE_DRAFTS);
80 MAILBOX_TYPE_MAP.put(Eas.MAILBOX_TYPE_DELETED, Mailbox.TYPE_TRASH)
    [all...]
SearchParser.java 15 import com.android.exchange.Eas;
59 if (Eas.USER_LOG) {
  /packages/apps/Exchange/src/com/android/exchange/
Exchange.java 27 LogTag.setLogTag(Eas.LOG_TAG);
ExchangeBroadcastReceiver.java 26 LogUtils.i(Eas.LOG_TAG, "Accounts changed - requesting FolderSync for unsynced accounts");
  /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;
  /packages/apps/Exchange/src/com/android/exchange/service/
ContactsSyncAdapterService.java 37 import com.android.exchange.Eas;
41 private static final String TAG = Eas.LOG_TAG;
97 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE)
105 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE)
PingTask.java 23 import com.android.exchange.Eas;
25 import com.android.exchange.eas.EasOperation;
26 import com.android.exchange.eas.EasPing;
36 private static final String TAG = Eas.LOG_TAG;
EmailSyncAdapterService.java 34 import com.android.exchange.Eas;
39 private static final String TAG = Eas.LOG_TAG;
PingSyncSynchronizer.java 33 import com.android.exchange.Eas;
34 import com.android.exchange.eas.EasPing;
49 * sync ops, but some may not be (e.g. EAS Settings).
83 private static final String TAG = Eas.LOG_TAG;
192 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE);
242 intent.setAction(Eas.EXCHANGE_SERVICE_INTENT_ACTION);
262 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE);
EasServerConnection.java 38 import com.android.exchange.Eas;
40 import com.android.exchange.eas.EasConnectionCache;
63 * Base class for communicating with an EAS server. Anything that needs to send messages to the
70 private static final String TAG = Eas.LOG_TAG;
84 Eas.CLIENT_VERSION;
86 /** Message MIME type for EAS version 14 and later. */
233 protocolVersionString = Eas.DEFAULT_PROTOCOL_VERSION;
236 mProtocolVersion = Eas.getProtocolVersionDouble(protocolVersionString);
360 // the EAS protocol version is < 14.0
363 if (msg && (getProtocolVersion() < Eas.SUPPORTED_PROTOCOL_EX2010_DOUBLE))
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/utility/
CurlLogger.java 9 import com.android.exchange.Eas;
30 private static final String TAG = Eas.LOG_TAG;
WbxmlResponseLogger.java 22 import com.android.exchange.Eas;
42 private static final String TAG = Eas.LOG_TAG;

Completed in 150 milliseconds

1 2