Searched refs:syncAuthority (Results 1 - 3 of 3) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DTurnAutoSyncOnDialog.java38 private static final String SYNC_AUTHORITY = "syncAuthority";
60 String syncAuthority) {
64 args.putString(SYNC_AUTHORITY, syncAuthority);
72 final String syncAuthority = getArguments().getString(SYNC_AUTHORITY);
88 // Note it's possible for syncAuthority to be empty on the
92 final String authority = TextUtils.isEmpty(syncAuthority) ?
93 sDefaultSyncAuthority : syncAuthority;
59 newInstance(Account account, String syncAuthority) argument
H A DConversationSyncDisabledTipView.java80 mAccount.getAccountManagerAccount(), mAccount.syncAuthority);
102 if (mAccount == null || mAccount.syncAuthority == null) {
142 if (!TextUtils.isEmpty(account.syncAuthority) &&
143 !ContentResolver.getSyncAutomatically(acct, account.syncAuthority)) {
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DAccount.java226 public final String syncAuthority; field in class:Account
295 json.put(AccountColumns.SYNC_AUTHORITY, syncAuthority);
429 syncAuthority = json.optString(AccountColumns.SYNC_AUTHORITY);
506 syncAuthority = cursor.getString(
508 if (TextUtils.isEmpty(syncAuthority)) {
510 LogUtils.e(LOG_TAG, "Unexpected empty syncAuthority from cursor");
626 syncAuthority = in.readString();
627 if (TextUtils.isEmpty(syncAuthority)) {
628 LogUtils.e(LOG_TAG, "Unexpected empty syncAuthority from Parcel");
675 dest.writeString(syncAuthority);
[all...]

Completed in 55 milliseconds