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

  /packages/apps/Email/src/com/android/email/activity/
Debug.java 23 import com.android.exchange.Eas;
71 mEnableExchangeLoggingView.setChecked(Eas.USER_LOG);
72 mEnableExchangeFileLoggingView.setChecked(Eas.FILE_LOG);
120 * Load enabled debug flags from the preferences and upadte the EAS debug flag.
125 int debugLogging = prefs.getEnableDebugLogging() ? Eas.DEBUG_BIT : 0;
126 int exchangeLogging = prefs.getEnableExchangeLogging() ? Eas.DEBUG_EXCHANGE_BIT : 0;
127 int fileLogging = prefs.getEnableExchangeFileLogging() ? Eas.DEBUG_FILE_BIT : 0;
  /packages/apps/Email/src/com/android/exchange/
AbstractSyncService.java 56 public static final String EAS_PROTOCOL = "eas";
207 if (Eas.USER_LOG) {
213 if (Eas.USER_LOG) {
219 if (Eas.USER_LOG) {
224 if (Eas.FILE_LOG) {
230 * Standard logging for EAS.
236 if (Eas.USER_LOG) {
248 if (Eas.FILE_LOG) {
260 if (Eas.FILE_LOG) {
Eas.java 23 * Constants used throughout the EAS implementation are stored here.
26 public class Eas {
50 // From EAS spec
72 // For EAS 12, we use HTML, so we want a larger size than in EAS 2.5
74 // For EAS 2.5, truncation is a code; the largest is "7", which is 100k
91 Log.d("Eas Debug", "Logging: " + (USER_LOG ? "User " : "") +
EasSyncService.java 138 static public final String EAS_12_POLICY_TYPE = "MS-EAS-Provisioning-WBXML";
179 public String mProtocolVersion = Eas.DEFAULT_PROTOCOL_VERSION;
229 this("EAS Validation");
251 if (Eas.USER_LOG) {
280 if (Eas.USER_LOG) {
346 // The string is a comma separated list of EAS versions in ascending order
354 if (version.equals(Eas.SUPPORTED_PROTOCOL_EX2003) ||
355 version.equals(Eas.SUPPORTED_PROTOCOL_EX2007)) {
362 Log.w(TAG, "No supported EAS versions: " + supportedVersions);
377 userLog("Testing EAS: ", hostAddress, ", ", userName, ", ssl = ", ssl ? "1" : "0")
    [all...]
SyncManager.java 105 * The Email application communicates with EAS sync adapters via SyncManager's binder interface,
114 private static final String TAG = "EAS SyncManager";
136 // A ping (EAS push signal) was received
163 // Offsets into the syncStatus data for EAS that indicate type, exit status, and change count
219 // ConnectionManager that all EAS threads can use
320 // Outbox can't be synced in EAS
323 // Drafts & Trash can't be synced in EAS
374 Eas.setUserDebug(on);
435 // At startup, we want to see what EAS accounts exist and cache them
460 * 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 SyncManager to start a calendar
94 * The missing piece at this point is integration with the push/ping mechanism in EAS; this will
101 boolean logging = Eas.USER_LOG;
  /packages/apps/Email/src/com/android/exchange/adapter/
Serializer.java 26 import com.android.exchange.Eas;
71 //logging = Eas.PARSER_LOG;
86 if (Eas.FILE_LOG) {
Parser.java 20 import com.android.exchange.Eas;
36 * EAS uses (as defined in the EAS specification)
53 private String logTag = "EAS Parser";
149 logging = Eas.PARSER_LOG;
314 * same in EAS, and then sets the tag table to point to page 0 (by definition, the starting
339 if (Eas.FILE_LOG) {
FolderSyncParser.java 26 import com.android.exchange.Eas;
53 // These are defined by the EAS protocol
109 if (status != Eas.FOLDER_STATUS_OK) {
111 if (status == Eas.FOLDER_STATUS_INVALID_KEY) {
EmailSyncAdapter.java 36 import com.android.exchange.Eas;
58 * Sync adapter for EAS email
145 case Tags.BASE_ATTACHMENTS: // BASE_ATTACHMENTS is used in EAS 12.0 and up
305 String bodyType = Eas.BODY_PREFERENCE_TEXT;
320 if (bodyType.equals(Eas.BODY_PREFERENCE_HTML)) {
331 case Tags.BASE_ATTACHMENT: // BASE_ATTACHMENT is used in EAS 12.0 and up
347 // We handle both EAS 2.5 and 12.0+ attachments here
422 if (Eas.USER_LOG) {
781 if (mService.mProtocolVersionDouble >= Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE) {
    [all...]
CalendarSyncAdapter.java 25 import com.android.exchange.Eas;
68 * Sync adapter class for EAS calendars
292 // Handle the organizer (who IS an attendee on device, but NOT in EAS)
332 // EAS events can arrive without an end time, but CalendarProvider requires them
    [all...]
ContactsSyncAdapter.java 21 import com.android.exchange.Eas;
69 * Sync adapter for EAS Contacts
519 // EAS Business
533 // EAS Personal
    [all...]
  /packages/apps/Email/src/com/android/exchange/utility/
CalendarUtilities.java 28 import com.android.exchange.Eas;
327 if (Eas.USER_LOG) {
692 * Given a String as directly read from EAS, returns a TimeZone corresponding to that String
700 if (Eas.USER_LOG) {
717 * Given a String as directly read from EAS, tries to find a TimeZone in the database of all
728 // but EAS gives us minutes, so do the conversion. Note that EAS is the bias that's added
    [all...]

Completed in 504 milliseconds