Home
last modified time | relevance | path

Searched refs:getAttributeBoolean (Results 1 – 25 of 54) sorted by relevance

123

/frameworks/libs/modules-utils/java/com/android/modules/utils/
DTypedXmlPullParser.java111 boolean getAttributeBoolean(int index) throws XmlPullParserException; in getAttributeBoolean() method
189 default boolean getAttributeBoolean(@Nullable String namespace, @NonNull String name) in getAttributeBoolean() method
191 return getAttributeBoolean(getAttributeIndexOrThrow(namespace, name)); in getAttributeBoolean()
318 default boolean getAttributeBoolean(@Nullable String namespace, @NonNull String name, in getAttributeBoolean() method
323 return getAttributeBoolean(index); in getAttributeBoolean()
/frameworks/base/core/java/android/content/pm/
DUserProperties.java1152 setStartWithParent(parser.getAttributeBoolean(i)); in updateFromXml()
1167 setUseParentsContacts(parser.getAttributeBoolean(i)); in updateFromXml()
1170 setUpdateCrossProfileIntentFiltersOnOTA(parser.getAttributeBoolean(i)); in updateFromXml()
1179 setMediaSharedWithParent(parser.getAttributeBoolean(i)); in updateFromXml()
1182 setCredentialShareableWithParent(parser.getAttributeBoolean(i)); in updateFromXml()
1185 setAuthAlwaysRequiredToDisableQuietMode(parser.getAttributeBoolean(i)); in updateFromXml()
1188 setAllowStoppingUserWithDelayedLocking(parser.getAttributeBoolean(i)); in updateFromXml()
1191 setDeleteAppWithParent(parser.getAttributeBoolean(i)); in updateFromXml()
1194 setAlwaysVisible(parser.getAttributeBoolean(i)); in updateFromXml()
1203 setItemsRestrictedOnHomeScreen(parser.getAttributeBoolean(i)); in updateFromXml()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DActiveAdmin.java811 specifiesGlobalProxy = parser.getAttributeBoolean(null, ATTR_VALUE, false); in readFromXml()
823 encryptionRequested = parser.getAttributeBoolean(null, ATTR_VALUE, false); in readFromXml()
825 testOnlyAdmin = parser.getAttributeBoolean(null, ATTR_VALUE, false); in readFromXml()
827 disableCamera = parser.getAttributeBoolean(null, ATTR_VALUE, false); in readFromXml()
829 disableCallerId = parser.getAttributeBoolean(null, ATTR_VALUE, false); in readFromXml()
831 disableContactsSearch = parser.getAttributeBoolean(null, ATTR_VALUE, false); in readFromXml()
834 parser.getAttributeBoolean(null, ATTR_VALUE, false); in readFromXml()
836 disableScreenCapture = parser.getAttributeBoolean(null, ATTR_VALUE, false); in readFromXml()
838 requireAutoTime = parser.getAttributeBoolean(null, ATTR_VALUE, false); in readFromXml()
840 forceEphemeralUsers = parser.getAttributeBoolean(null, ATTR_VALUE, false); in readFromXml()
[all …]
DOwnersData.java482 mMigratedToPolicyEngine = parser.getAttributeBoolean( in readInner()
484 mPoliciesMigratedPostUpdate = parser.getAttributeBoolean( in readInner()
487 && parser.getAttributeBoolean(null, ATTR_SECURITY_LOG_MIGRATED, false); in readInner()
489 && parser.getAttributeBoolean(null, in readInner()
492 && parser.getAttributeBoolean(null, in readInner()
DBooleanPolicySerializer.java49 parser.getAttributeBoolean(/* namespace= */ null, ATTR_VALUE)); in readFromXml()
DDevicePolicyData.java557 parser.getAttributeBoolean(null, ATTR_VALUE, false); in load()
560 parser.getAttributeBoolean(null, ATTR_DISABLED, false); in load()
587 parser.getAttributeBoolean(null, ATTR_VALUE, false); in load()
592 policy.mEffectiveKeepProfilesRunning = parser.getAttributeBoolean( in load()
/frameworks/base/services/permission/java/com/android/server/permission/access/util/
DBinaryXmlPullParserExtensions.kt248 ): Boolean = getAttributeBoolean(null, name, defaultValue)
254 getAttributeBoolean(null, name)
/frameworks/base/core/java/android/app/admin/
DPreferentialNetworkServiceConfig.java492 resultBuilder.setEnabled(parser.getAttributeBoolean(null, ATTR_VALUE, in getPreferentialNetworkServiceConfig()
500 resultBuilder.setFallbackToDefaultConnectionAllowed(parser.getAttributeBoolean( in getPreferentialNetworkServiceConfig()
503 resultBuilder.setShouldBlockNonMatchingNetworks(parser.getAttributeBoolean( in getPreferentialNetworkServiceConfig()
DFactoryResetProtectionPolicy.java208 boolean factoryResetProtectionEnabled = parser.getAttributeBoolean(null, in readFromXml()
/frameworks/base/apct-tests/perftests/core/src/android/util/
DXmlPerfTest.java273 xml.getAttributeBoolean(null, "isOrphaned"); in read()
281 xml.getAttributeBoolean(null, "granted"); in read()
/frameworks/base/core/java/com/android/internal/vibrator/persistence/
DSerializedPredefinedEffect.java102 ? parser.getAttributeBoolean(NAMESPACE, ATTRIBUTE_FALLBACK, defaultFallback) in parseNext()
/frameworks/base/services/core/java/com/android/server/pm/
DPersistentPreferredActivity.java89 mIsSetByDpm = parser.getAttributeBoolean(null, ATTR_SET_BY_DPM, false);
DSettings.java1892 parser.getAttributeBoolean(null, ATTR_INSTALLED, true);
1894 parser.getAttributeBoolean(null, ATTR_STOPPED, false);
1896 parser.getAttributeBoolean(null, ATTR_NOT_LAUNCHED, false);
1900 boolean hidden = parser.getAttributeBoolean(null, ATTR_HIDDEN, false);
1902 hidden = parser.getAttributeBoolean(null, ATTR_BLOCKED, false);
1907 final boolean suspended = parser.getAttributeBoolean(null, ATTR_SUSPENDED,
1918 parser.getAttributeBoolean(null, ATTR_BLOCK_UNINSTALL, false);
1920 parser.getAttributeBoolean(null, ATTR_INSTANT_APP, false);
1922 parser.getAttributeBoolean(null, ATTR_VIRTUAL_PRELOAD, false);
2566 final boolean granted = parser.getAttributeBoolean(null, ATTR_GRANTED, true);
[all …]
DSettingsXml.java236 return mParser.getAttributeBoolean(null, attrName, defaultValue); in getBoolean()
/frameworks/base/services/core/java/com/android/server/wm/
DActivityCallerState.java288 boolean isShareIdentityEnabled = in.getAttributeBoolean(null, in restoreFromXml()
326 boolean prefix = in.getAttributeBoolean(null, ATTR_PREFIX, false); in restoreGrantUriFromXml()
/frameworks/base/services/core/java/com/android/server/pm/pkg/
DSuspendParams.java144 final boolean quarantined = in.getAttributeBoolean(null, ATTR_QUARANTINED, false); in restoreFromXml()
/frameworks/base/errorprone/refaster/
DEfficientXml.java332 return in.getAttributeBoolean(null, n, false); in after()
344 return in.getAttributeBoolean(null, n, d); in after()
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/
DBiometricUserState.java251 mInvalidationInProgress = parser.getAttributeBoolean(null, ATTR_INVALIDATION); in parseStateLocked()
/frameworks/base/services/core/java/com/android/server/om/
DOverlayManagerSettings.java523 final boolean isEnabled = parser.getAttributeBoolean(null, ATTR_IS_ENABLED, false);
524 final boolean isStatic = parser.getAttributeBoolean(null, ATTR_IS_STATIC, false);
527 final boolean isFabricated = parser.getAttributeBoolean(null, ATTR_IS_FABRICATED,
/frameworks/base/services/core/java/com/android/server/tv/
DPersistentDataStore.java243 mParentalControlsEnabled = parser.getAttributeBoolean(null, ATTR_ENABLED); in loadFromXml()
/frameworks/base/services/core/java/com/android/server/display/
DBrightnessTracker.java713 builder.setNightMode(parser.getAttributeBoolean(null, ATTR_NIGHT_MODE)); in readEventsLocked()
717 parser.getAttributeBoolean(null, ATTR_REDUCE_BRIGHT_COLORS)); in readEventsLocked()
742 parser.getAttributeBoolean(null, ATTR_DEFAULT_CONFIG, false)); in readEventsLocked()
746 parser.getAttributeBoolean(null, ATTR_USER_POINT, false)); in readEventsLocked()
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
DAppWidgetXmlUtil.java143 info.isExtendedFromAppWidgetProvider = parser.getAttributeBoolean(null, in readAppWidgetProviderInfoLocked()
/frameworks/base/core/java/android/app/
DNotificationChannelGroup.java256 setBlocked(parser.getAttributeBoolean(null, ATT_BLOCKED, false)); in populateFromXml()
/frameworks/base/core/java/com/android/internal/util/
DXmlUtils.java235 public boolean getAttributeBoolean(int index) in getAttributeBoolean() method in XmlUtils.ForcedTypedXmlPullParser
1497 array[i] = parser.getAttributeBoolean(null, "value"); in readThisBooleanArrayXml()
1681 return parser.getAttributeBoolean(null, "value"); in readThisPrimitiveValueXml()
1853 return ((TypedXmlPullParser) in).getAttributeBoolean(null, name, defaultValue); in readBooleanAttribute()
/frameworks/base/services/core/java/com/android/server/app/
DGameManagerSettings.java327 final boolean useAngle = parser.getAttributeBoolean(null, ATTR_USE_ANGLE); in readGameModeConfig()

123