Home | History | Annotate | Download | only in content

Lines Matching defs:authority

32     /** The authority of the sync. Can be null. */
33 public final String authority;
47 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) {
49 this.authority = authority;
66 this.authority = other.authority;
76 public PeriodicSync(Account account, String authority, Bundle extras,
79 this.authority = authority;
87 this.authority = in.readString();
101 dest.writeString(authority);
129 && authority.equals(other.authority)
161 ", authority: " + authority +