Searched refs:authorityId (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/content/ |
D | SyncInfo.java | 38 public final int authorityId; field in SyncInfo 64 int authorityId, String authority, long startTime) { in createAccountRedacted() argument 65 return new SyncInfo(authorityId, REDACTED_ACCOUNT, authority, startTime); in createAccountRedacted() 70 public SyncInfo(int authorityId, Account account, String authority, long startTime) { in SyncInfo() argument 71 this.authorityId = authorityId; in SyncInfo() 79 this.authorityId = other.authorityId; in SyncInfo() 92 parcel.writeInt(authorityId); in writeToParcel() 101 authorityId = parcel.readInt(); in SyncInfo()
|
D | SyncStatusInfo.java | 45 public final int authorityId; field in SyncStatusInfo 154 public SyncStatusInfo(int authorityId) { in SyncStatusInfo() argument 155 this.authorityId = authorityId; in SyncStatusInfo() 175 parcel.writeInt(authorityId); in writeToParcel() 230 authorityId = parcel.readInt(); in SyncStatusInfo() 304 authorityId = other.authorityId; in SyncStatusInfo() 314 public SyncStatusInfo(int authorityId, SyncStatusInfo other) { in SyncStatusInfo() argument 315 this.authorityId = authorityId; in SyncStatusInfo()
|
/frameworks/base/services/core/java/com/android/server/content/ |
D | SyncStorageEngine.java | 346 int authorityId; field in SyncStorageEngine.SyncHistoryItem 1009 public AuthorityInfo getAuthority(int authorityId) { in getAuthority() argument 1011 return mAuthorities.get(authorityId); in getAuthority() 1022 AuthorityInfo ainfo = getAuthority(syncInfo.authorityId); in isSyncActive() 1095 if (mSyncHistory.get(j).authorityId == ident) { in removeStaleAccounts() 1174 item.authorityId = authority.ident; in insertStartSyncEvent() 1223 SyncStatusInfo status = getOrCreateSyncStatusLocked(item.authorityId); in stopSyncEvent() 1363 sync.authorityId, sync.authority, sync.startTime); in getCurrentSyncsCopy() 1408 AuthorityInfo ainfo = mAuthorities.get(cur.authorityId); in getStatusByAuthority() 1424 AuthorityInfo ainfo = mAuthorities.get(cur.authorityId); in isSyncPending() [all …]
|
D | SyncManager.java | 2443 = mSyncStorageEngine.getAuthority(item.authorityId); in dumpRecentHistory() 2573 = mSyncStorageEngine.getAuthority(item.authorityId); in dumpRecentHistory() 2639 = mSyncStorageEngine.getAuthority(item.authorityId); in dumpRecentHistory()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/content/ |
D | SyncStorageEngineTest.java | 156 assertEquals(ssOther.authorityId, ss.authorityId); in verifyStatus()
|