Home | History | Annotate | Download | only in pm

Lines Matching refs:components

464     void setEnabledComponents(ArraySet<String> components, int userId) {
465 modifyUserState(userId).enabledComponents = components;
468 void setDisabledComponents(ArraySet<String> components, int userId) {
469 modifyUserState(userId).disabledComponents = components;
472 void setEnabledComponentsCopy(ArraySet<String> components, int userId) {
473 modifyUserState(userId).enabledComponents = components != null
474 ? new ArraySet<String>(components) : null;
477 void setDisabledComponentsCopy(ArraySet<String> components, int userId) {
478 modifyUserState(userId).disabledComponents = components != null
479 ? new ArraySet<String>(components) : null;