Lines Matching refs:mask

221      * The actions mask.
223 private transient int mask;
254 int mask;
263 mask = getMask(actions);
265 if ((mask & ALL) != mask)
266 throw new IllegalArgumentException("Invalid actions mask");
267 if (mask == NONE)
268 throw new IllegalArgumentException("Invalid actions mask");
269 this.mask = mask;
481 actions = getActions(this.mask);
488 * of the actions from the mask.
490 private static String getActions(int mask) {
494 if ((mask & AddNotificationListener) == AddNotificationListener) {
499 if ((mask & GetAttribute) == GetAttribute) {
505 if ((mask & GetClassLoader) == GetClassLoader) {
511 if ((mask & GetClassLoaderFor) == GetClassLoaderFor) {
517 if ((mask & GetClassLoaderRepository) == GetClassLoaderRepository) {
523 if ((mask & GetDomains) == GetDomains) {
529 if ((mask & GetMBeanInfo) == GetMBeanInfo) {
535 if ((mask & GetObjectInstance) == GetObjectInstance) {
541 if ((mask & Instantiate) == Instantiate) {
547 if ((mask & Invoke) == Invoke) {
553 if ((mask & IsInstanceOf) == IsInstanceOf) {
559 if ((mask & QueryMBeans) == QueryMBeans) {
565 if ((mask & QueryNames) == QueryNames) {
571 if ((mask & RegisterMBean) == RegisterMBean) {
577 if ((mask & RemoveNotificationListener) == RemoveNotificationListener) {
583 if ((mask & SetAttribute) == SetAttribute) {
589 if ((mask & UnregisterMBean) == UnregisterMBean) {
608 * Converts an action String to an integer action mask.
611 * @return the action mask.
627 int mask = NONE;
630 return mask;
641 return mask;
685 mask |= RemoveNotificationListener;
712 mask |= GetClassLoaderRepository;
738 mask |= AddNotificationListener;
758 mask |= GetClassLoaderFor;
778 mask |= GetObjectInstance;
796 mask |= UnregisterMBean;
813 mask |= GetClassLoader;
829 mask |= RegisterMBean;
844 mask |= GetAttribute;
859 mask |= GetMBeanInfo;
874 mask |= IsInstanceOf;
889 mask |= SetAttribute;
903 mask |= Instantiate;
917 mask |= QueryMBeans;
930 mask |= GetDomains;
943 mask |= QueryNames;
952 mask |= Invoke;
981 return mask;
1039 if ((this.mask & QueryMBeans) == QueryMBeans) {
1040 if (((this.mask | QueryNames) & that.mask) != that.mask) {
1045 if ((this.mask & that.mask) != that.mask) {
1146 return (this.mask == that.mask) &&