Home
last modified time | relevance | path

Searched refs:syncs (Results 1 – 24 of 24) sorted by relevance

/frameworks/base/docs/html/training/monitoring-device-state/
Ddoze-standby.jd64 defers their jobs, syncs, and standard alarms.
70 system runs all pending syncs, jobs, and alarms, and lets apps access the
84 suspending network access and deferring jobs, syncs, and alarms. Over time,
189 that your app manages network, alarms, jobs, and syncs. Apps should be able
256 execute any pending jobs and syncs. If the device is idle for long periods of
302 jobs, and syncs properly, and using GCM high-priority messages. For a narrow
315 app’s jobs and syncs are deferred, and its regular {@link android.app.AlarmManager} alarms do not
/frameworks/base/services/core/java/com/android/server/content/
DSyncStorageEngine.java1162 final List<SyncInfo> syncs = getCurrentSyncsLocked(userId); in getCurrentSyncsCopy() local
1164 for (SyncInfo sync : syncs) { in getCurrentSyncsCopy()
1179 ArrayList<SyncInfo> syncs = mCurrentSyncs.get(userId); in getCurrentSyncsLocked() local
1180 if (syncs == null) { in getCurrentSyncsLocked()
1181 syncs = new ArrayList<SyncInfo>(); in getCurrentSyncsLocked()
1182 mCurrentSyncs.put(userId, syncs); in getCurrentSyncsLocked()
1184 return syncs; in getCurrentSyncsLocked()
/frameworks/base/docs/html-intl/intl/ja/preview/features/
Ddata-saver.jd130 // Use data as required to perform syncs, downloads, and updates.
/frameworks/base/docs/html-intl/intl/zh-cn/preview/features/
Ddata-saver.jd130 // Use data as required to perform syncs, downloads, and updates.
/frameworks/base/docs/html-intl/intl/ko/preview/features/
Ddata-saver.jd130 // Use data as required to perform syncs, downloads, and updates.
/frameworks/base/core/java/android/content/
DContentResolver.java2379 final List<SyncInfo> syncs = getContentService().getCurrentSyncs(); in getCurrentSync() local
2380 if (syncs.isEmpty()) { in getCurrentSync()
2383 return syncs.get(0); in getCurrentSync()
/frameworks/base/docs/html/training/performance/battery/network/
Daction-app-traffic.jd94 <a href="{@docRoot}training/sync-adapters/index.html">Sync Adapter for scheduled syncs</a>
/frameworks/base/docs/html-intl/intl/in/preview/features/
Ddata-saver.jd130 // Use data as required to perform syncs, downloads, and updates.
/frameworks/base/core/java/android/os/
DBatteryStats.java3184 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats(); in dumpCheckinLocked() local
3185 for (int isy=syncs.size()-1; isy>=0; isy--) { in dumpCheckinLocked()
3186 final Timer timer = syncs.valueAt(isy); in dumpCheckinLocked()
3191 dumpLine(pw, uid, category, SYNC_DATA, syncs.keyAt(isy), totalTime, count); in dumpCheckinLocked()
4294 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats(); in dumpLocked() local
4295 for (int isy=syncs.size()-1; isy>=0; isy--) { in dumpLocked()
4296 final Timer timer = syncs.valueAt(isy); in dumpLocked()
4303 sb.append(syncs.keyAt(isy)); in dumpLocked()
/frameworks/base/docs/html/preview/features/
Ddata-saver.jd130 // Use data as required to perform syncs, downloads, and updates.
/frameworks/base/docs/html-intl/intl/pt-br/preview/features/
Ddata-saver.jd130 // Use data as required to perform syncs, downloads, and updates.
/frameworks/base/docs/html/training/scheduling/
Dalarms.jd100 syncs with a server. If the sync operation is based on clock time and every instance of the
101 app syncs at 11:00 p.m., the load on the server could result in high latency or even
/frameworks/base/docs/html-intl/intl/es/preview/features/
Ddata-saver.jd130 // Use data as required to perform syncs, downloads, and updates.
/frameworks/base/docs/html/training/basics/network-ops/
Dmanaging.jd46 to control your app’s data habits, such as how often your app syncs data,
/frameworks/base/docs/html/preview/
Dbehavior-changes.jd98 shuts off app network access, and defers jobs and syncs. If the device is
104 network access and can execute any deferred jobs/syncs.
Dapi-overview.jd228 restricts network access and defers jobs and syncs. During brief maintenance
230 jobs/syncs are executed. Turning the screen on or plugging in the device brings
/frameworks/base/docs/html/training/articles/
Dwear-permissions.jd106 automatically syncs Calendar, Contact, and Location data to the Wear device. As a result, this
/frameworks/base/docs/html/guide/topics/providers/
Dcontacts-provider.jd723 type and should be stable across syncs:
738 Apps settings and re-syncs, the restored raw contacts should have the same
1672 provider the sync adapter syncs with. At that point, the system starts managing the adapter,
1681 listed syncs with a different content provider on the device.
/frameworks/base/docs/html/guide/topics/ui/
Dsettings.jd71 application syncs data with the cloud.</p>
911 <p>For example, you might allow the user to control how often your app syncs data, whether your app
/frameworks/base/docs/html/about/versions/marshmallow/
Dandroid-6.0-changes.jd83 access and suspends syncs and jobs for the apps it deems idle.</li>
/frameworks/base/docs/html/training/sync-adapters/
Dcreating-sync-adapter.jd336 * Disallow parallel syncs
/frameworks/base/docs/html/about/versions/
Dandroid-4.4.jd23 <li><a href="#BehaviorSync">If your app syncs data using ContentResolver...</a></li>
174 <h3 id="BehaviorSync">If your app syncs data using ContentResolver...</h3>
Dandroid-4.0.jd991 allow users to control your app’s data habits, such as how often your app syncs data, whether to
/frameworks/base/docs/html/distribute/essentials/quality/
Dcore.jd1134 Pay close attention to alarms, timers, notifications, syncs, and so on.