Searched defs:mask (Results 1 - 25 of 103) sorted by relevance

12345

/forgerock/openam-v13/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/packet/
H A DFramedIPNetmaskAttribute.java45 * The net mask.
47 private byte[] mask = new byte[4]; field in class:FramedIPNetmaskAttribute
52 * is the most significant byte. The last is the least significant byte. So for a mask of 255.255.255.0 we would
65 this.mask = new FramedIPNetmaskAttribute(super.getOctets()).getMask();
76 mask[0] = octets[2];
77 mask[1] = octets[3];
78 mask[2] = octets[4];
79 mask[3] = octets[5];
83 * Get the mask.
85 * @return the mask
[all...]
/forgerock/openam/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/packet/
H A DFramedIPNetmaskAttribute.java45 * The net mask.
47 private byte[] mask = new byte[4]; field in class:FramedIPNetmaskAttribute
52 * is the most significant byte. The last is the least significant byte. So for a mask of 255.255.255.0 we would
65 this.mask = new FramedIPNetmaskAttribute(super.getOctets()).getMask();
76 mask[0] = octets[2];
77 mask[1] = octets[3];
78 mask[2] = octets[4];
79 mask[3] = octets[5];
83 * Get the mask.
85 * @return the mask
[all...]
/forgerock/opendj2/src/messages/src/org/opends/messages/
H A DSeverity.java98 MASK_VALUE_MAP.put(c.mask, c);
121 * Obtains the <code>Severity</code> associated with a given mask
123 * @param mask for which a <code>Severity</code> is obtained.
124 * @return Severity associated with <code>mask</code>
126 static public Severity parseMask(int mask) { argument
127 Severity sev = MASK_VALUE_MAP.get(mask);
130 "No Severity defined with int value " + mask);
160 private final int mask; field in class:Severity
165 * Returns the mask associated with this <code>Severity</code>.
166 * @return mask fo
190 Severity(int mask, String propertyKeyForm, String messageDescriptorName) argument
[all...]
H A DCategory.java37 * used as a mask for bitwise operations.
182 MASK_VALUE_MAP.put(c.mask, c);
197 * Obtains the <code>Severity</code> associated with a given mask
199 * @param mask for which a <code>Severity</code> is obtained.
200 * @return Severity associated with <code>mask</code>
202 static public Category parseMask(int mask) { argument
203 return MASK_VALUE_MAP.get(mask);
206 private final int mask; field in class:Category
209 * Gets the mask value associated with this category.
210 * @return int mask valu
[all...]
/forgerock/opendj2/src/server/org/opends/server/authorization/dseecompat/
H A DTargAttrFilterList.java51 * The mask corresponding to the operation of this list (add or del).
53 private int mask=0; field in class:TargAttrFilterList
92 * @param mask The mask representing the operation.
96 public TargAttrFilterList(int mask, argument
98 this.mask=mask;
104 * @param mask The mask representing the operation.
110 public static TargAttrFilterList decode(int mask, Strin argument
209 hasMask(int mask) argument
[all...]
/forgerock/opendj-b2.6/src/messages/src/org/opends/messages/
H A DSeverity.java99 MASK_VALUE_MAP.put(c.mask, c);
122 * Obtains the <code>Severity</code> associated with a given mask
124 * @param mask for which a <code>Severity</code> is obtained.
125 * @return Severity associated with <code>mask</code>
127 static public Severity parseMask(int mask) { argument
128 Severity sev = MASK_VALUE_MAP.get(mask);
131 "No Severity defined with int value " + mask);
161 private final int mask; field in class:Severity
166 * Returns the mask associated with this <code>Severity</code>.
167 * @return mask fo
191 Severity(int mask, String propertyKeyForm, String messageDescriptorName) argument
[all...]
H A DCategory.java38 * used as a mask for bitwise operations.
183 MASK_VALUE_MAP.put(c.mask, c);
198 * Obtains the <code>Severity</code> associated with a given mask
200 * @param mask for which a <code>Severity</code> is obtained.
201 * @return Severity associated with <code>mask</code>
203 static public Category parseMask(int mask) { argument
204 return MASK_VALUE_MAP.get(mask);
207 private final int mask; field in class:Category
210 * Gets the mask value associated with this category.
211 * @return int mask valu
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/authorization/dseecompat/
H A DTargAttrFilterList.java50 * The mask coresponding to the operation of this list (add or del).
52 private int mask=0; field in class:TargAttrFilterList
91 * @param mask The mask representing the operation.
95 public TargAttrFilterList(int mask, argument
97 this.mask=mask;
103 * @param mask The mask representing the operation.
109 public static TargAttrFilterList decode(int mask, Strin argument
208 hasMask(int mask) argument
[all...]
H A DTargAttrFilters.java108 * A mask used to denote if the rule has add, del or both operations in the
130 //Add the second filter list mask to the mask.
248 * Return the mask corrsponding to the specified string.
250 * @return The mask corresponding to the operation string.
260 * Gets the TargFilterList corresponding to the mask value.
264 * match context and the mask of the TargFilterAttrList. May return null.
269 int mask=ACI_NULL;
270 //Set up the wanted mask by evaluating both the target match
271 //context's rights and the mask
428 hasMask(int mask) argument
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/messages/
H A DSeverityTest.java130 public void testParseMask(Severity s, int mask) { argument
131 assertEquals(Severity.parseMask(mask), s);
145 public void testGetMask(Severity s, int mask) { argument
146 assertEquals(s.getMask(), mask);
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/messages/
H A DSeverityTest.java129 public void testParseMask(Severity s, int mask) { argument
130 assertEquals(Severity.parseMask(mask), s);
144 public void testGetMask(Severity s, int mask) { argument
145 assertEquals(s.getMask(), mask);
/forgerock/opendj2.6.2/src/server/org/opends/server/authorization/dseecompat/
H A DTargAttrFilterList.java50 * The mask coresponding to the operation of this list (add or del).
52 private int mask=0; field in class:TargAttrFilterList
91 * @param mask The mask representing the operation.
95 public TargAttrFilterList(int mask, argument
97 this.mask=mask;
103 * @param mask The mask representing the operation.
109 public static TargAttrFilterList decode(int mask, Strin argument
208 hasMask(int mask) argument
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/messages/
H A DSeverityTest.java130 public void testParseMask(Severity s, int mask) { argument
131 assertEquals(Severity.parseMask(mask), s);
145 public void testGetMask(Severity s, int mask) { argument
146 assertEquals(s.getMask(), mask);
/forgerock/opendj2.6.2/src/messages/src/org/opends/messages/
H A DSeverity.java99 MASK_VALUE_MAP.put(c.mask, c);
122 * Obtains the <code>Severity</code> associated with a given mask
124 * @param mask for which a <code>Severity</code> is obtained.
125 * @return Severity associated with <code>mask</code>
127 static public Severity parseMask(int mask) { argument
128 Severity sev = MASK_VALUE_MAP.get(mask);
131 "No Severity defined with int value " + mask);
161 private final int mask; field in class:Severity
166 * Returns the mask associated with this <code>Severity</code>.
167 * @return mask fo
191 Severity(int mask, String propertyKeyForm, String messageDescriptorName) argument
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/messages/
H A DSeverityTest.java129 public void testParseMask(Severity s, int mask) { argument
130 assertEquals(Severity.parseMask(mask), s);
144 public void testGetMask(Severity s, int mask) { argument
145 assertEquals(s.getMask(), mask);
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/messages/
H A DSeverityTest.java130 public void testParseMask(Severity s, int mask) { argument
131 assertEquals(Severity.parseMask(mask), s);
145 public void testGetMask(Severity s, int mask) { argument
146 assertEquals(s.getMask(), mask);
/forgerock/opendj2-hg/src/messages/src/org/opends/messages/
H A DSeverity.java98 MASK_VALUE_MAP.put(c.mask, c);
121 * Obtains the <code>Severity</code> associated with a given mask
123 * @param mask for which a <code>Severity</code> is obtained.
124 * @return Severity associated with <code>mask</code>
126 static public Severity parseMask(int mask) { argument
127 Severity sev = MASK_VALUE_MAP.get(mask);
130 "No Severity defined with int value " + mask);
160 private final int mask; field in class:Severity
165 * Returns the mask associated with this <code>Severity</code>.
166 * @return mask fo
190 Severity(int mask, String propertyKeyForm, String messageDescriptorName) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/authorization/dseecompat/
H A DTargAttrFilterList.java51 * The mask corresponding to the operation of this list (add or del).
53 private int mask=0; field in class:TargAttrFilterList
92 * @param mask The mask representing the operation.
96 public TargAttrFilterList(int mask, argument
98 this.mask=mask;
104 * @param mask The mask representing the operation.
110 public static TargAttrFilterList decode(int mask, Strin argument
209 hasMask(int mask) argument
[all...]
/forgerock/opendj2-jel-hg/src/messages/src/org/opends/messages/
H A DSeverity.java99 MASK_VALUE_MAP.put(c.mask, c);
122 * Obtains the <code>Severity</code> associated with a given mask
124 * @param mask for which a <code>Severity</code> is obtained.
125 * @return Severity associated with <code>mask</code>
127 static public Severity parseMask(int mask) { argument
128 Severity sev = MASK_VALUE_MAP.get(mask);
131 "No Severity defined with int value " + mask);
161 private final int mask; field in class:Severity
166 * Returns the mask associated with this <code>Severity</code>.
167 * @return mask fo
191 Severity(int mask, String propertyKeyForm, String messageDescriptorName) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/authorization/dseecompat/
H A DTargAttrFilterList.java50 * The mask coresponding to the operation of this list (add or del).
52 private int mask=0; field in class:TargAttrFilterList
91 * @param mask The mask representing the operation.
95 public TargAttrFilterList(int mask, argument
97 this.mask=mask;
103 * @param mask The mask representing the operation.
109 public static TargAttrFilterList decode(int mask, Strin argument
208 hasMask(int mask) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/
H A DTargAttrFilterList.java51 * The mask corresponding to the operation of this list (add or del).
53 private int mask; field in class:TargAttrFilterList
92 * @param mask The mask representing the operation.
96 public TargAttrFilterList(int mask, argument
98 this.mask=mask;
104 * @param mask The mask representing the operation.
110 public static TargAttrFilterList decode(int mask, Strin argument
203 hasMask(int mask) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DState.java72 final byte mask; field in class:State.IndexFlag
74 IndexFlag(int mask) { argument
75 this.mask=(byte) mask;
145 if ((indexValue & state.mask) == state.mask)
156 value |= flag.mask;
/forgerock/web-agents-v4/zlib/
H A Dinftrees.c52 unsigned mask; /* mask for low root bits */ local
208 mask = used - 1; /* mask for comparing low */
260 if (len > root && (huff & mask) != low) {
285 low = huff & mask;
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/
H A DIPTestCase.java321 * @param mask The expression to decode.
325 public void testValidIPDecode(String mask) argument
327 IP.decode(mask, EnumBindRuleType.EQUAL_BINDRULE_TYPE);
333 * @param mask The expression to decode.
337 public void testInvalidDecode(String mask) argument
340 IP.decode(mask, EnumBindRuleType.EQUAL_BINDRULE_TYPE);
345 "Invalid mask <" + mask + "> threw wrong exception type.");
349 "Invalid mask <" + mask
359 testValidIP6Decode(String mask) argument
372 testInvalid6Decode(String mask) argument
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java92 public void testValidDecode(String mask) argument
94 AddressMask.decode(mask);
98 public void testInvalidDecode(String mask) argument
101 AddressMask.decode(mask);
106 "Invalid mask <" + mask + "> threw wrong exception type.");
110 "Invalid mask <" + mask + "> did not throw an exception.");
257 "Invalid mask <" + rules[i] +
338 public void testValid6Decode(String mask) argument
344 testInvalid6Decode(String mask) argument
[all...]

Completed in 70 milliseconds

12345