HomeSort by relevance Sort by last modified time
    Searched defs:syncAuthority (Results 1 - 2 of 2) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
TurnAutoSyncOnDialog.java 38 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;
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Account.java 226 public final String syncAuthority;
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 109 milliseconds