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.java29 public final int authorityId; field in class:SyncStatusInfo
52 public SyncStatusInfo(int authorityId) { argument
53 this.authorityId = authorityId;
72 parcel.writeInt(authorityId);
102 authorityId = parcel.readInt();
133 authorityId = other.authorityId;
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java313 int authorityId; field in class:SyncStorageEngine.SyncHistoryItem
914 public AuthorityInfo getAuthority(int authorityId) { argument
916 return mAuthorities.get(authorityId);
927 AuthorityInfo ainfo = getAuthority(syncInfo.authorityId);
997 if (mSyncHistory.get(j).authorityId == ident) {
1076 item.authorityId = authority.ident;
1124 SyncStatusInfo status = getOrCreateSyncStatusLocked(item.authorityId);
1228 sync.authorityId, sync.authority, sync.startTime);
1273 AuthorityInfo ainfo = mAuthorities.get(cur.authorityId);
1289 AuthorityInfo ainfo = mAuthorities.get(cur.authorityId);
1450 getOrCreateSyncStatusLocked(int authorityId) argument
[all...]

Completed in 161 milliseconds