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

  /packages/apps/Exchange/src/com/android/exchange/adapter/
AccountSyncAdapter.java 3 import com.android.exchange.EasSyncService;
10 public AccountSyncAdapter(EasSyncService service) {
GalParser.java 18 import com.android.exchange.EasSyncService;
29 private EasSyncService mService;
32 public GalParser(InputStream in, EasSyncService service) throws IOException {
132 if (EasSyncService.DEBUG_GAL_SERVICE) {
AttachmentLoader.java 27 import com.android.exchange.EasSyncService;
46 private final EasSyncService mService;
54 public AttachmentLoader(EasSyncService service, PartRequest req) {
152 resp = mService.sendHttpClientPost(cmd, null, EasSyncService.COMMAND_TIMEOUT);
AbstractSyncAdapter.java 34 import com.android.exchange.EasSyncService;
56 public EasSyncService mService;
83 public AbstractSyncAdapter(EasSyncService service) {
EmailSyncAdapter.java 66 import com.android.exchange.EasSyncService;
108 EasSyncService.MESSAGE_FLAG_MOVED_MESSAGE + ")!=0";
132 public EmailSyncAdapter(EasSyncService service) {
432 new ByteArrayEntity(s.toByteArray()), EasSyncService.COMMAND_TIMEOUT);
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
SyncAdapterTestCase.java 26 import com.android.exchange.EasSyncService;
76 EasSyncService getTestService() {
85 EasSyncService getTestService(Account account, Mailbox mailbox) {
86 EasSyncService service = new EasSyncService();
95 EasSyncService service = getTestService();
98 c = klass.getDeclaredConstructor(new Class[] {EasSyncService.class});
FolderSyncParserTests.java 30 import com.android.exchange.EasSyncService;
77 EasSyncService service = getTestService();
302 EasSyncService service = getTestService();
358 EasSyncService service = getTestService();
EmailSyncAdapterTests.java 30 import com.android.exchange.EasSyncService;
59 EasSyncService service = getTestService();
170 EasSyncService service = getTestService(account, mailbox);
  /packages/apps/Exchange/tests/src/com/android/exchange/
EasSyncServiceTests.java 54 EasSyncService svc = new EasSyncService();
97 private EasSyncService setupService(String user) {
98 EasSyncService svc = new EasSyncService();
108 EasSyncService svc = setupService(USER);
116 EasSyncService.DEVICE_TYPE, svc.mUserString);
127 EasSyncService.DEVICE_TYPE, svc.mUserString);
  /packages/apps/Exchange/src/com/android/exchange/
EasAccountService.java 67 public class EasAccountService extends EasSyncService {
290 mExitStatus = EasSyncService.EXIT_LOGIN_FAILURE;
316 mExitStatus = EasSyncService.EXIT_SECURITY_FAILURE;
319 mExitStatus = EasSyncService.EXIT_IO_ERROR;
343 mExitStatus = EasSyncService.EXIT_LOGIN_FAILURE;
400 mExitStatus = EasSyncService.EXIT_SECURITY_FAILURE;
404 mExitStatus = EasSyncService.EXIT_ACCESS_DENIED;
408 mExitStatus = EasSyncService.EXIT_EXCEPTION;
504 return sendHttpClientPost(EasSyncService.PING_COMMAND, new ByteArrayEntity(bytes),
    [all...]
EasSyncService.java 108 public class EasSyncService extends AbstractSyncService {
182 protected EasSyncService(Context _context, Mailbox _mailbox) {
198 private EasSyncService(String prefix) {
202 public EasSyncService() {
206 public static EasSyncService getServiceForMailbox(Context context, Mailbox m) {
213 return new EasSyncService(context, m);
343 void setupProtocolVersion(EasSyncService service, Header versionHeader)
394 * Create an EasSyncService for the specified account
400 public static EasSyncService setupServiceForAccount(Context context, Account account) {
410 EasSyncService svc = new EasSyncService("OutOfBand")
    [all...]
ExchangeService.java 120 return AbstractSyncService.validate(EasSyncService.class,
131 return new EasSyncService().tryAutodiscover(ExchangeService.this, hostAuth);
322 EasSyncService service =
323 EasSyncService.getServiceForMailbox(
571 return new EasSyncService(context, m);
EasOutboxService.java 61 public class EasOutboxService extends EasSyncService {
478 } else if (code == EasSyncService.INTERNAL_SERVER_ERROR_CODE && smartSend) {
  /packages/apps/Exchange/src/com/android/exchange/provider/
ExchangeDirectoryProvider.java 50 import com.android.exchange.EasSyncService;
306 // Find the account id to pass along to EasSyncService
329 final GalResult galResult = EasSyncService.searchGal(getContext(), accountId,

Completed in 56 milliseconds