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.java74 Bundle childBundle = bundle.getBundle("bundle_key"); in testConvertRestrictionsToBundle() local
75 assertNotNull(childBundle); in testConvertRestrictionsToBundle()
76 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.java723 Bundle childBundle = convertRestrictionsToBundle(Arrays.asList(restrictions)); in addRestrictionToBundle() local
724 bundle.putBundle(entry.getKey(), childBundle); in addRestrictionToBundle() local
/frameworks/base/services/core/java/com/android/server/pm/
DUserManagerService.java3492 Bundle childBundle = readBundleEntry(parser, values); in readEntry() local
3493 bundleList.add(childBundle); in readEntry()
3512 Bundle childBundle = new Bundle(); in readBundleEntry() local
3515 readEntry(childBundle, values, parser); in readBundleEntry()
3517 return childBundle; in readBundleEntry()