Home
last modified time | relevance | path

Searched refs:mMaxUpdatesPerInterval (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
DShortcutManagerTest7.java81 mService.mMaxUpdatesPerInterval = 99; in testNonShell()
91 assertEquals(99, mService.mMaxUpdatesPerInterval); in testNonShell()
95 mService.mMaxUpdatesPerInterval = 99; in testRoot()
100 assertEquals(3, mService.mMaxUpdatesPerInterval); in testRoot()
104 mService.mMaxUpdatesPerInterval = 99; in testRestConfig()
109 assertEquals(3, mService.mMaxUpdatesPerInterval); in testRestConfig()
113 mService.mMaxUpdatesPerInterval = 99; in testOverrideConfig()
119 assertEquals(1, mService.mMaxUpdatesPerInterval); in testOverrideConfig()
/frameworks/base/services/core/java/com/android/server/pm/
DShortcutService.java301 int mMaxUpdatesPerInterval; field in ShortcutService
710 mMaxUpdatesPerInterval = Math.max(0, (int) parser.getLong( in updateConfigurationLocked()
2223 return mMaxUpdatesPerInterval - ps.getApiCallCount(unlimited); in getRemainingCallCount()
3922 pw.println(mMaxUpdatesPerInterval); in dumpInner()
4366 return mMaxUpdatesPerInterval; in getMaxUpdatesPerIntervalForTest()
DShortcutPackage.java564 if (getApiCallCount(unlimited) >= s.mMaxUpdatesPerInterval) { in tryApiCall()