Searched refs:directOut (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/native/sun/security/pkcs11/wrapper/
H A Dp11_crypt.c168 jlong directOut, jbyteArray jOut, jint jOutOfs, jint jOutLen)
189 if (directOut != 0) {
190 outBufP = (CK_BYTE_PTR) directOut;
216 if (directOut == 0) {
239 jlong directOut, jbyteArray jOut, jint jOutOfs, jint jOutLen)
251 if (directOut != 0) {
252 outBufP = (CK_BYTE_PTR) directOut;
268 if (directOut == 0) {
389 jlong directOut, jbyteArray jOut, jint jOutOfs, jint jOutLen)
410 if (directOut !
165 Java_sun_security_pkcs11_wrapper_PKCS11_C_1EncryptUpdate(JNIEnv *env, jobject obj, jlong jSessionHandle, jlong directIn, jbyteArray jIn, jint jInOfs, jint jInLen, jlong directOut, jbyteArray jOut, jint jOutOfs, jint jOutLen) argument
237 Java_sun_security_pkcs11_wrapper_PKCS11_C_1EncryptFinal(JNIEnv *env, jobject obj, jlong jSessionHandle, jlong directOut, jbyteArray jOut, jint jOutOfs, jint jOutLen) argument
386 Java_sun_security_pkcs11_wrapper_PKCS11_C_1DecryptUpdate(JNIEnv *env, jobject obj, jlong jSessionHandle, jlong directIn, jbyteArray jIn, jint jInOfs, jint jInLen, jlong directOut, jbyteArray jOut, jint jOutOfs, jint jOutLen) argument
453 Java_sun_security_pkcs11_wrapper_PKCS11_C_1DecryptFinal(JNIEnv *env, jobject obj, jlong jSessionHandle, jlong directOut, jbyteArray jOut, jint jOutOfs, jint jOutLen) argument
[all...]
/openjdk7/jdk/test/javax/crypto/CipherSpi/
H A DDirectBBRemaining.java109 ByteBuffer directIn, ByteBuffer directOut,
132 outBB = directOut;
140 outBB = directOut;
107 encrypt(Cipher cipher, int size, ByteBuffer heapIn, ByteBuffer heapOut, ByteBuffer directIn, ByteBuffer directOut, boolean output) argument
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DPKCS11.java735 public native int C_EncryptUpdate(long hSession, long directIn, byte[] in, int inOfs, int inLen, long directOut, byte[] out, int outOfs, int outLen) throws PKCS11Exception; argument
752 public native int C_EncryptFinal(long hSession, long directOut, byte[] out, int outOfs, int outLen) throws PKCS11Exception; argument
808 public native int C_DecryptUpdate(long hSession, long directIn, byte[] in, int inOfs, int inLen, long directOut, byte[] out, int outOfs, int outLen) throws PKCS11Exception; argument
825 public native int C_DecryptFinal(long hSession, long directOut, byte[] out, int outOfs, int outLen) throws PKCS11Exception; argument
1575 public synchronized int C_EncryptUpdate(long hSession, long directIn, byte[] in, int inOfs, int inLen, long directOut, byte[] out, int outOfs, int outLen) throws PKCS11Exception { argument
1576 return super.C_EncryptUpdate(hSession, directIn, in, inOfs, inLen, directOut, out, outOfs, outLen);
1579 public synchronized int C_EncryptFinal(long hSession, long directOut, byte[] out, int outOfs, int outLen) throws PKCS11Exception { argument
1580 return super.C_EncryptFinal(hSession, directOut, out, outOfs, outLen);
1591 public synchronized int C_DecryptUpdate(long hSession, long directIn, byte[] in, int inOfs, int inLen, long directOut, byte[] out, int outOfs, int outLen) throws PKCS11Exception { argument
1592 return super.C_DecryptUpdate(hSession, directIn, in, inOfs, inLen, directOut, ou
1595 C_DecryptFinal(long hSession, long directOut, byte[] out, int outOfs, int outLen) argument
[all...]

Completed in 728 milliseconds