Home
last modified time | relevance | path

Searched refs:childBundle (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/content/
DRestrictionsManagerTest.java72 Bundle childBundle = bundle.getBundle("bundle_key"); in testConvertRestrictionsToBundle() local
73 assertNotNull(childBundle); in testConvertRestrictionsToBundle()
74 assertEquals(2, childBundle.size()); in testConvertRestrictionsToBundle()
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
DUserManagerServiceTest.java116 Bundle childBundle = bundle.getBundle("bundle"); in assertBundle() local
117 assertEquals("bundle_string", childBundle.getString("bundle_string")); in assertBundle()
118 assertEquals(1, childBundle.getInt("bundle_int")); in assertBundle()
/frameworks/base/core/java/android/content/
DRestrictionsManager.java720 Bundle childBundle = convertRestrictionsToBundle(Arrays.asList(restrictions)); in addRestrictionToBundle() local
721 bundle.putBundle(entry.getKey(), childBundle); in addRestrictionToBundle() local
/frameworks/base/services/core/java/com/android/server/pm/
DUserManagerService.java3171 Bundle childBundle = readBundleEntry(parser, values); in readEntry() local
3172 bundleList.add(childBundle); in readEntry()
3191 Bundle childBundle = new Bundle(); in readBundleEntry() local
3194 readEntry(childBundle, values, parser); in readBundleEntry()
3196 return childBundle; in readBundleEntry()