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 | 358 int authorityId; field in SyncStorageEngine.SyncHistoryItem 1070 public AuthorityInfo getAuthority(int authorityId) { in getAuthority() argument 1072 return mAuthorities.get(authorityId); in getAuthority() 1083 AuthorityInfo ainfo = getAuthority(syncInfo.authorityId); in isSyncActive() 1156 if (mSyncHistory.get(j).authorityId == ident) { in removeStaleAccounts() 1235 item.authorityId = authority.ident; in insertStartSyncEvent() 1285 SyncStatusInfo status = getOrCreateSyncStatusLocked(item.authorityId); in stopSyncEvent() 1425 sync.authorityId, sync.authority, sync.startTime); in getCurrentSyncsCopy() 1470 AuthorityInfo ainfo = mAuthorities.get(cur.authorityId); in getStatusByAuthority() 1486 AuthorityInfo ainfo = mAuthorities.get(cur.authorityId); in isSyncPending() [all …]
|
D | SyncManager.java | 2634 = mSyncStorageEngine.getAuthority(item.authorityId); in dumpRecentHistory() 2764 = mSyncStorageEngine.getAuthority(item.authorityId); in dumpRecentHistory() 2830 = 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()
|