Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/power/stats/
H A DBatteryStatsBackgroundStatsTest.java377 final ArrayMap<String, ? extends BatteryStats.Timer> syncs = in testSyncs() local
379 assertEquals(1, syncs.size()); in testSyncs()
380 BatteryStats.Timer timer = syncs.valueAt(0); in testSyncs()
/aosp14/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java1413 final List<SyncInfo> syncs = getCurrentSyncsLocked(userId); in getCurrentSyncsCopy() local
1415 for (SyncInfo sync : syncs) { in getCurrentSyncsCopy()
1430 ArrayList<SyncInfo> syncs = mCurrentSyncs.get(userId); in getCurrentSyncsLocked() local
1431 if (syncs == null) { in getCurrentSyncsLocked()
1432 syncs = new ArrayList<SyncInfo>(); in getCurrentSyncsLocked()
1433 mCurrentSyncs.put(userId, syncs); in getCurrentSyncsLocked()
1435 return syncs; in getCurrentSyncsLocked()
/aosp14/frameworks/base/core/java/android/window/
H A DSurfaceSyncGroup.md47syncs are requested before VRI draws, they will all get back the same SurfaceSyncGroup object. Thi…
/aosp14/frameworks/base/core/java/android/os/
H A DBatteryStats.java4884 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats(); in dumpCheckinLocked() local
4885 for (int isy=syncs.size()-1; isy>=0; isy--) { in dumpCheckinLocked()
4886 final Timer timer = syncs.valueAt(isy); in dumpCheckinLocked()
6412 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats(); in dumpLocked()
6413 for (int isy=syncs.size()-1; isy>=0; isy--) { in dumpLocked()
6414 final Timer timer = syncs.valueAt(isy); in dumpLocked()
6425 sb.append(syncs.keyAt(isy)); in dumpLocked()
8308 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats(); in dumpProtoAppsLocked() local
8309 for (int isy = syncs.size() - 1; isy >= 0; --isy) { in dumpProtoAppsLocked()
8310 final Timer timer = syncs.valueAt(isy); in dumpProtoAppsLocked()
[all …]
/aosp14/frameworks/base/core/java/android/content/
H A DContentResolver.java3605 final List<SyncInfo> syncs = getContentService().getCurrentSyncs();
3606 if (syncs.isEmpty()) {
3609 return syncs.get(0);
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DBLASTSync.md34 SB: Change syncable state, any number of times, prepare any number of syncs (and
/aosp14/frameworks/base/core/proto/android/os/
H A Dbatterystats.proto790 repeated Sync syncs = 22; field