Searched defs:authorityId (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/content/
H A DSyncInfo.java35 public final int authorityId; field in class:SyncInfo
61 int authorityId, String authority, long startTime) {
62 return new SyncInfo(authorityId, REDACTED_ACCOUNT, authority, startTime);
66 public SyncInfo(int authorityId, Account account, String authority, long startTime) { argument
67 this.authorityId = authorityId;
75 this.authorityId = other.authorityId;
88 parcel.writeInt(authorityId);
96 authorityId
60 createAccountRedacted( int authorityId, String authority, long startTime) argument
[all...]
H A DSyncStatusInfo.java40 public final int authorityId; field in class:SyncStatusInfo
139 public SyncStatusInfo(int authorityId) { argument
140 this.authorityId = authorityId;
159 parcel.writeInt(authorityId);
213 authorityId = parcel.readInt();
282 authorityId = other.authorityId;
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java332 int authorityId; field in class:SyncStorageEngine.SyncHistoryItem
976 public AuthorityInfo getAuthority(int authorityId) { argument
978 return mAuthorities.get(authorityId);
989 AuthorityInfo ainfo = getAuthority(syncInfo.authorityId);
1059 if (mSyncHistory.get(j).authorityId == ident) {
1138 item.authorityId = authority.ident;
1187 SyncStatusInfo status = getOrCreateSyncStatusLocked(item.authorityId);
1327 sync.authorityId, sync.authority, sync.startTime);
1372 AuthorityInfo ainfo = mAuthorities.get(cur.authorityId);
1388 AuthorityInfo ainfo = mAuthorities.get(cur.authorityId);
1549 getOrCreateSyncStatusLocked(int authorityId) argument
[all...]

Completed in 12 milliseconds