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

/openjdk7/jdk/src/share/native/sun/security/pkcs11/wrapper/
H A Dp11_convert.c300 jchar *jTempChars; local
340 jTempChars = (jchar*) malloc((ckLength) * sizeof(jchar));
341 if (jTempChars == NULL) {
346 (*env)->GetCharArrayRegion(env, jYear, 0, ckLength, jTempChars);
349 free(jTempChars);
354 ckpDate->year[i] = jCharToCKChar(jTempChars[i]);
356 free(jTempChars);
364 jTempChars = (jchar*) malloc((ckLength) * sizeof(jchar));
365 if (jTempChars == NULL) {
370 (*env)->GetCharArrayRegion(env, jMonth, 0, ckLength, jTempChars);
[all...]

Completed in 80 milliseconds