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

/openjdk7/jdk/test/javax/crypto/CipherSpi/
H A DDirectBBRemaining.java109 ByteBuffer directIn, ByteBuffer directOut,
135 inBB = directIn;
139 inBB = directIn;
107 encrypt(Cipher cipher, int size, ByteBuffer heapIn, ByteBuffer heapOut, ByteBuffer directIn, ByteBuffer directOut, boolean output) argument
/openjdk7/jdk/src/share/native/sun/security/pkcs11/wrapper/
H A Dp11_crypt.c167 jlong directIn, jbyteArray jIn, jint jInOfs, jint jInLen,
182 if (directIn != 0) {
183 inBufP = (CK_BYTE_PTR) directIn;
212 if (directIn == 0) {
388 jlong directIn, jbyteArray jIn, jint jInOfs, jint jInLen,
403 if (directIn != 0) {
404 inBufP = (CK_BYTE_PTR) directIn;
427 if (directIn == 0) {
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
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
H A Dp11_digest.c167 (JNIEnv *env, jobject obj, jlong jSessionHandle, jlong directIn, jbyteArray jIn, jint jInOfs, jint jInLen)
180 if (directIn != 0) {
181 rv = (*ckpFunctions->C_DigestUpdate)(ckSessionHandle, (CK_BYTE_PTR)directIn, jInLen);
166 Java_sun_security_pkcs11_wrapper_PKCS11_C_1DigestUpdate(JNIEnv *env, jobject obj, jlong jSessionHandle, jlong directIn, jbyteArray jIn, jint jInOfs, jint jInLen) argument
H A Dp11_sign.c187 (JNIEnv *env, jobject obj, jlong jSessionHandle, jlong directIn, jbyteArray jIn, jint jInOfs, jint jInLen)
200 if (directIn != 0) {
201 rv = (*ckpFunctions->C_SignUpdate)(ckSessionHandle, (CK_BYTE_PTR)directIn, jInLen);
485 (JNIEnv *env, jobject obj, jlong jSessionHandle, jlong directIn, jbyteArray jIn, jint jInOfs, jint jInLen)
498 if (directIn != 0) {
499 rv = (*ckpFunctions->C_VerifyUpdate)(ckSessionHandle, (CK_BYTE_PTR)directIn, jInLen);
186 Java_sun_security_pkcs11_wrapper_PKCS11_C_1SignUpdate(JNIEnv *env, jobject obj, jlong jSessionHandle, jlong directIn, jbyteArray jIn, jint jInOfs, jint jInLen) argument
484 Java_sun_security_pkcs11_wrapper_PKCS11_C_1VerifyUpdate(JNIEnv *env, jobject obj, jlong jSessionHandle, jlong directIn, jbyteArray jIn, jint jInOfs, jint jInLen) 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
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
882 public native void C_DigestUpdate(long hSession, long directIn, byte[] in, int inOfs, int inLen) throws PKCS11Exception; argument
977 public native void C_SignUpdate(long hSession, long directIn, byte[] in, int inOfs, int inLen) throws PKCS11Exception; argument
1091 public native void C_VerifyUpdate(long hSession, long directIn, byte[] in, int inOfs, int inLen) 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);
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, out, outOfs, outLen);
1607 public synchronized void C_DigestUpdate(long hSession, long directIn, byt argument
1627 C_SignUpdate(long hSession, long directIn, byte[] in, int inOfs, int inLen) argument
1651 C_VerifyUpdate(long hSession, long directIn, byte[] in, int inOfs, int inLen) argument
[all...]

Completed in 52 milliseconds