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

  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/
EasSyncServiceTests.java 89 assertEquals(Eas.SUPPORTED_PROTOCOL_EX2003_DOUBLE,
90 Eas.getProtocolVersionDouble(Eas.SUPPORTED_PROTOCOL_EX2003));
91 assertEquals(Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE,
92 Eas.getProtocolVersionDouble(Eas.SUPPORTED_PROTOCOL_EX2007));
93 assertEquals(Eas.SUPPORTED_PROTOCOL_EX2007_SP1_DOUBLE,
94 Eas.getProtocolVersionDouble(Eas.SUPPORTED_PROTOCOL_EX2007_SP1));
  /packages/apps/Exchange/tests/src/com/android/exchange/
EasSyncServiceTests.java 89 assertEquals(Eas.SUPPORTED_PROTOCOL_EX2003_DOUBLE,
90 Eas.getProtocolVersionDouble(Eas.SUPPORTED_PROTOCOL_EX2003));
91 assertEquals(Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE,
92 Eas.getProtocolVersionDouble(Eas.SUPPORTED_PROTOCOL_EX2007));
93 assertEquals(Eas.SUPPORTED_PROTOCOL_EX2007_SP1_DOUBLE,
94 Eas.getProtocolVersionDouble(Eas.SUPPORTED_PROTOCOL_EX2007_SP1));
  /packages/apps/Exchange/exchange2/src/com/android/exchange/service/
ExchangeBroadcastProcessorService.java 26 import com.android.exchange.Eas;
71 if (Eas.USER_LOG) {
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
AbstractSyncService.java 53 public static final String EAS_PROTOCOL = "eas";
193 if (Eas.USER_LOG) {
199 if (Eas.USER_LOG) {
205 if (Eas.USER_LOG) {
210 if (Eas.FILE_LOG) {
216 * Standard logging for EAS.
222 if (Eas.USER_LOG) {
234 if (Eas.FILE_LOG) {
246 if (Eas.FILE_LOG) {
EasSyncService.java 125 static public final String EAS_12_POLICY_TYPE = "MS-EAS-Provisioning-WBXML";
132 // The EAS protocol Provision status for "we implement all of the policies"
134 // The EAS protocol Provision status meaning "we partially implement the policies"
139 Eas.CLIENT_VERSION;
145 public String mProtocolVersion = Eas.DEFAULT_PROTOCOL_VERSION;
199 this("EAS Validation");
232 if (Eas.USER_LOG) {
261 if (Eas.USER_LOG) {
317 // The string is a comma separated list of EAS versions in ascending order
325 if (version.equals(Eas.SUPPORTED_PROTOCOL_EX2003) |
    [all...]
ContactsSyncAdapterService.java 41 private static final String TAG = "EAS ContactsSyncAdapterService";
97 * Partial integration with system SyncManager; we tell our EAS ExchangeService to start a
99 * The missing piece at this point is integration with the push/ping mechanism in EAS; this will
111 .appendQueryParameter(RawContacts.ACCOUNT_TYPE, Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE)
119 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE)
CalendarSyncEnabler.java 70 .getAccountsByType(Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE);
Eas.java 26 * Constants used throughout the EAS implementation are stored here.
29 public class Eas {
39 public static final String CLIENT_VERSION = "EAS-1.3";
57 // From EAS spec
85 // For EAS 12, we use HTML, so we want a larger size than in EAS 2.5
87 // For EAS 2.5, truncation is a code; the largest is "7", which is 100k
104 Log.d("Eas Debug", "Logging: " + (USER_LOG ? "User " : "") +
ExchangeService.java 100 * The Email application communicates with EAS sync adapters via ExchangeService's binder interface,
132 // A ping (EAS push signal) was received
166 // Offsets into the syncStatus data for EAS that indicate type, exit status, and change count
223 // HashMap of ConnectionManagers that all EAS threads can use (by ssl/port pair)
405 // Outbox can't be synced in EAS
465 Eas.setUserDebug(flags);
560 if (ha != null && ha.mProtocol.equals("eas")) {
593 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE);
660 // At startup, we want to see what EAS accounts exist and cache them
702 * mailboxes in all eas account
    [all...]
CalendarSyncAdapterService.java 40 private static final String TAG = "EAS CalendarSyncAdapterService";
92 * Partial integration with system SyncManager; we tell our EAS ExchangeService to start a
94 * The missing piece at this point is integration with the push/ping mechanism in EAS; this will
101 boolean logging = Eas.USER_LOG;
EasAccountService.java 65 * AccountMailbox handles sync for the EAS "account mailbox"; this includes sync of the mailbox list
66 * as well as management of mailbox push (using the EAS "Ping" command
255 userLog("Determine EAS protocol version");
422 // it's not really appropriate for EAS as this is not unexpected for a ping and
436 * @param legalHeartbeat a known legal heartbeat (from the EAS server)
523 if (Eas.USER_LOG) {
542 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE);
633 if (Eas.USER_LOG) {
    [all...]
EasOutboxService.java 158 // the message, as EAS 14 limits the length to 40 chars and we use 70+)
226 * For OriginalMessageInfo, we use the terminology of EAS for the serverId and mailboxId of the
274 // Note: itemId and collectionId are the terms used by EAS to refer to the serverId and
317 * Send a single message via EAS
345 // The reference message and mailbox are called item and collection in EAS
354 // use SmartForward for EAS 12.0 or later to avoid creating eml files that are
367 Eas.SUPPORTED_PROTOCOL_EX2010_DOUBLE);
374 // The type of entity depends on whether we're using EAS 14
376 // For EAS 14, we need to save the wbxml tag we're using
390 // In EAS 14, we don't send itemId and collectionId in the comman
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
AbstractSyncAdapter.java 23 import com.android.exchange.Eas;
66 // Parse incoming data from the EAS server, creating, modifying, and deleting objects as
91 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE);
121 if (protocolVersion >= Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE) {
124 s.data(Tags.BASE_TYPE, Eas.BODY_PREFERENCE_TEXT);
125 s.data(Tags.BASE_TRUNCATION_SIZE, Eas.EAS12_TRUNCATION_SIZE);
128 s.data(Tags.SYNC_TRUNCATION, Eas.EAS2_5_TRUNCATION_SIZE);
EmailSyncAdapter.java 61 import com.android.exchange.Eas;
81 * Sync adapter for EAS email
167 return Eas.FILTER_AUTO;
169 return Eas.FILTER_1_DAY;
171 return Eas.FILTER_3_DAYS;
173 return Eas.FILTER_1_WEEK;
175 return Eas.FILTER_2_WEEKS;
177 return Eas.FILTER_1_MONTH;
179 return Eas.FILTER_ALL;
181 return Eas.FILTER_1_WEEK
    [all...]
Parser.java 23 import com.android.exchange.Eas;
37 * EAS uses (as defined in the EAS specification)
55 private String logTag = "EAS Parser";
165 logging = Eas.PARSER_LOG;
175 logging = Eas.PARSER_LOG;
356 * same in EAS, and then sets the tag table to point to page 0 (by definition, the starting
394 if (Eas.FILE_LOG) {
Search.java 34 import com.android.exchange.Eas;
48 * Implementation of server-side search for EAS using the EmailService API
108 s.data(Tags.BASE_TYPE, Eas.BODY_PREFERENCE_HTML);
175 if (Eas.USER_LOG) {
219 if (Eas.USER_LOG) {
AttachmentLoader.java 29 import com.android.exchange.Eas;
46 * Handle EAS attachment loading, regardless of protocol version
147 // Apparently, the length, as reported by EAS, isn't always accurate; let's log it
166 // These four characters are commonly received in EAS 2.5 attachment names and are
185 boolean eas14 = mService.mProtocolVersionDouble >= Eas.SUPPORTED_PROTOCOL_EX2010_DOUBLE;
186 // The method of attachment loading is different in EAS 14.0 than in earlier versions
196 // For Exchange 2003 (EAS 2.5), we have to look for illegal characters in the file name
197 // that EAS sent to us!
198 if (mService.mProtocolVersionDouble < Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE) {
CalendarSyncAdapter.java 53 import com.android.exchange.Eas;
69 * Sync adapter class for EAS calendars
175 String amType = Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE;
187 new String[] {mEmailAddress, Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE}, null);
217 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE),
229 setPimSyncOptions(protocolVersion, Eas.FILTER_2_WEEKS, s);
275 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE), mAccountManagerAccount);
305 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE), mAccountManagerAccount,
331 // Handle the organizer (who IS an attendee on device, but NOT in EAS)
371 // EAS events can arrive without an end time, but CalendarProvider requires the
    [all...]
Serializer.java 29 import com.android.exchange.Eas;
86 if (Eas.FILE_LOG) {
FolderSyncParser.java 38 import com.android.exchange.Eas;
60 // These are defined by the EAS protocol
77 // EAS types that we are willing to consider valid folders for EAS sync
153 if (status != Eas.FOLDER_STATUS_OK) {
161 // Note that we need to catch both old-style (Eas.FOLDER_STATUS_INVALID_KEY)
162 // and EAS 14 style command status
163 } else if (status == Eas.FOLDER_STATUS_INVALID_KEY ||
ContactsSyncAdapter.java 63 import com.android.exchange.Eas;
74 * Sync adapter for EAS Contacts
261 cv.put(Groups.ACCOUNT_TYPE, Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE);
601 // EAS Business
615 // EAS Personal
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/provider/
ExchangeDirectoryProvider.java 26 import com.android.exchange.Eas;
123 put(RawContacts.ACCOUNT_TYPE, Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE);
211 .getAccountsByType(Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE);
225 String accountType = Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE;
  /packages/apps/Exchange/exchange2/src/com/android/exchange/utility/
CalendarUtilities.java 49 import com.android.exchange.Eas;
149 // Bits used in EAS recurrences for days of the week
185 // Note that these constants apply to Calendar items, and are used in EAS 14+
373 if (Eas.USER_LOG) {
    [all...]

Completed in 86 milliseconds