Searched defs:reasons (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/x509/
H A DReasonFlags.java122 * @param reasons the bits to be set for the ReasonFlags.
124 public ReasonFlags(byte[] reasons) { argument
125 bitString = new BitArray(reasons.length*8, reasons).toBooleanArray();
131 * @param reasons the bits to be set for the ReasonFlags.
133 public ReasonFlags(boolean[] reasons) { argument
134 this.bitString = reasons;
140 * @param reasons the bits to be set for the ReasonFlags.
142 public ReasonFlags(BitArray reasons) { argument
143 this.bitString = reasons
[all...]

Completed in 21 milliseconds