Home | History | Annotate | Download | only in content

Lines Matching refs:syncAdapterInfo

504         RegisteredServicesCache.ServiceInfo<SyncAdapterType> syncAdapterInfo =
507 if (syncAdapterInfo == null) return isSyncable;
512 syncAdapterInfo.componentName.getPackageName(), 0, userId);
648 final RegisteredServicesCache.ServiceInfo<SyncAdapterType> syncAdapterInfo;
649 syncAdapterInfo = mSyncAdapters.getServiceInfo(
651 if (syncAdapterInfo == null) {
654 final boolean allowParallelSyncs = syncAdapterInfo.type.allowParallelSyncs();
655 final boolean isAlwaysSyncable = syncAdapterInfo.type.isAlwaysSyncable();
663 if (!syncAdapterInfo.type.supportsUploading() && uploadOnly) {
2005 final RegisteredServicesCache.ServiceInfo<SyncAdapterType> syncAdapterInfo;
2006 syncAdapterInfo = mSyncAdapters.getServiceInfo(
2009 if (syncAdapterInfo == null) {
2020 syncAdapterInfo.type.allowParallelSyncs()));
2134 final RegisteredServicesCache.ServiceInfo<SyncAdapterType> syncAdapterInfo;
2135 syncAdapterInfo = mSyncAdapters.getServiceInfo(
2140 if (syncAdapterInfo != null) {
2142 .getActiveNetworkInfoForUid(syncAdapterInfo.uid);
2305 final RegisteredServicesCache.ServiceInfo<SyncAdapterType> syncAdapterInfo;
2306 syncAdapterInfo = mSyncAdapters.getServiceInfo(syncAdapterType, op.userId);
2307 if (syncAdapterInfo == null) {
2315 new ActiveSyncContext(op, insertStartSyncEvent(op), syncAdapterInfo.uid);
2321 if (!activeSyncContext.bindToSyncAdapter(syncAdapterInfo, op.userId)) {
2322 Log.e(TAG, "Bind attempt failed to " + syncAdapterInfo);