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.java80 mService.mMaxUpdatesPerInterval = 99; in testNonShell()
90 assertEquals(99, mService.mMaxUpdatesPerInterval); in testNonShell()
94 mService.mMaxUpdatesPerInterval = 99; in testRoot()
99 assertEquals(3, mService.mMaxUpdatesPerInterval); in testRoot()
103 mService.mMaxUpdatesPerInterval = 99; in testRestConfig()
108 assertEquals(3, mService.mMaxUpdatesPerInterval); in testRestConfig()
112 mService.mMaxUpdatesPerInterval = 99; in testOverrideConfig()
118 assertEquals(1, mService.mMaxUpdatesPerInterval); in testOverrideConfig()
/frameworks/base/services/core/java/com/android/server/pm/
DShortcutService.java286 int mMaxUpdatesPerInterval; field in ShortcutService
682 mMaxUpdatesPerInterval = Math.max(0, (int) parser.getLong( in updateConfigurationLocked()
2066 return mMaxUpdatesPerInterval - ps.getApiCallCount(); in getRemainingCallCount()
3485 pw.println(mMaxUpdatesPerInterval); in dumpInner()
3909 return mMaxUpdatesPerInterval; in getMaxUpdatesPerIntervalForTest()
DShortcutPackage.java480 if (getApiCallCount() >= s.mMaxUpdatesPerInterval) { in tryApiCall()