Home | History | Annotate | Download | only in ssl

Lines Matching full:dsts

933      * @param dsts
946 * {@code dsts.length - offset}.
950 * if {@code src}, {@code dsts}, or one of the entries in
951 * {@code dsts} is {@code null}.
957 ByteBuffer[] dsts,
1024 * @param dsts
1033 * if {@code src} or {@code dsts} is {@code null}.
1038 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts) throws SSLException {
1039 if (dsts == null) {
1040 throw new IllegalArgumentException("Byte buffer array dsts is null");
1042 return unwrap(src, dsts, 0, dsts.length);