Home | History | Annotate | Download | only in content

Lines Matching refs:ainfo

730         AuthorityInfo aInfo;
732 aInfo = getOrCreateAuthorityLocked(target, -1, false);
739 Log.d(TAG, "setIsSyncable: " + aInfo.toString() + " -> " + syncable);
741 if (aInfo.syncable == syncable) {
747 aInfo.syncable = syncable;
751 requestSync(aInfo, SyncOperation.REASON_IS_SYNCABLE, new Bundle());
1060 AuthorityInfo ainfo = getAuthority(syncInfo.authorityId);
1061 if (ainfo != null && ainfo.target.matchesSpec(info)) {
1510 AuthorityInfo ainfo = mAuthorities.get(cur.authorityId);
1511 if (ainfo != null
1512 && ainfo.target.matchesSpec(info)) {
1526 AuthorityInfo ainfo = mAuthorities.get(cur.authorityId);
1527 if (ainfo == null) {
1530 if (!ainfo.target.matchesSpec(info)) {
1597 SparseArray<AuthorityInfo> aInfo = mServices.get(info.service);
1599 if (aInfo != null) {
1600 authority = aInfo.get(info.userId);
1649 SparseArray<AuthorityInfo> aInfo = mServices.get(info.service);
1650 if (aInfo == null) {
1651 aInfo = new SparseArray<AuthorityInfo>();
1652 mServices.put(info.service, aInfo);
1654 authority = aInfo.get(info.userId);
1657 aInfo.put(info.userId, authority);