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.java90 mService.mMaxUpdatesPerInterval = 99; in testNonShell()
100 assertEquals(99, mService.mMaxUpdatesPerInterval); in testNonShell()
104 mService.mMaxUpdatesPerInterval = 99; in testRoot()
109 assertEquals(3, mService.mMaxUpdatesPerInterval); in testRoot()
113 mService.mMaxUpdatesPerInterval = 99; in testRestConfig()
118 assertEquals(3, mService.mMaxUpdatesPerInterval); in testRestConfig()
122 mService.mMaxUpdatesPerInterval = 99; in testOverrideConfig()
128 assertEquals(1, mService.mMaxUpdatesPerInterval); in testOverrideConfig()
/frameworks/base/services/core/java/com/android/server/pm/
DShortcutService.java360 int mMaxUpdatesPerInterval; field in ShortcutService
823 mMaxUpdatesPerInterval = Math.max(0, (int) parser.getLong( in updateConfigurationLocked()
2667 return mMaxUpdatesPerInterval - ps.getApiCallCount(unlimited);
4835 pw.println(mMaxUpdatesPerInterval);
5327 return mMaxUpdatesPerInterval;
DShortcutPackage.java811 if (getApiCallCount(unlimited) >= s.mMaxUpdatesPerInterval) { in tryApiCall()