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

/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DCK_ATTRIBUTE.java60 * CK_VOID_PTR pValue;  
131 public CK_ATTRIBUTE(long type, Object pValue) { argument
133 this.pValue = pValue;
138 this.pValue = Boolean.valueOf(value);
143 this.pValue = Long.valueOf(value);
148 this.pValue = sun.security.pkcs11.P11Util.getMagnitude(value);
152 if (pValue instanceof byte[] == false) {
155 return new BigInteger(1, (byte[])pValue);
159 if (pValue instanceo
203 public Object pValue; field in class:CK_ATTRIBUTE
[all...]
/openjdk7/jdk/src/share/native/sun/security/pkcs11/wrapper/
H A Dp11_objmgmt.c239 /* first set all pValue to NULL, to get the needed buffer length */
241 if (ckpAttributes[i].pValue != NULL_PTR) {
242 free(ckpAttributes[i].pValue);
243 ckpAttributes[i].pValue = NULL_PTR;
258 ckpAttributes[i].pValue = (void *) malloc(ckBufferLength);
259 if (ckpAttributes[i].pValue == NULL) {
H A Dp11_convert.c441 /* get pValue */
442 TRACE0(", getting pValue field");
443 jFieldID = (*env)->GetFieldID(env, jAttributeClass, "pValue", "Ljava/lang/Object;");
446 TRACE1(", pValue=%p", jPValue);
449 TRACE0(", converting pValue to primitive object");
451 /* convert the Java pValue object to a CK-type pValue pointer */
452 jObjectToPrimitiveCKObjectPtrPtr(env, jPValue, &(ckAttribute.pValue), &(ckAttribute.ulValueLen));
800 * converts the pValue of a CK_ATTRIBUTE structure into a Java Object by checking the type
805 * and the pValue t
[all...]
H A Dp11_util.c261 if (attrPtr[i].pValue != NULL_PTR) {
262 free(attrPtr[i].pValue);
H A Dpkcs11t.h557 CK_VOID_PTR pValue; member in struct:CK_ATTRIBUTE
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DTemplateManager.java217 if (attr.pValue != null) {
228 if (attr2.pValue != null) {
H A DP11Key.java260 if ((attr.type == known.type) && (known.pValue != null)) {
261 attr.pValue = known.pValue;
265 if (attr.pValue == null) {
269 desiredAttributes[j].pValue = null;
348 crtKey = (attrs2[0].pValue instanceof byte[]);
H A DP11KeyStore.java2237 if (label[0].pValue != null &&
2308 if (attrs[0].pValue != null) {
2339 if (attrs[0].pValue != null) {
2357 if (attrs[0].pValue == null) {
2430 if (attrs[0].pValue != null) {
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Djni.cpp274 jstring pProp, jstring pValue) {
277 const char* value = env->GetStringUTFChars(pValue, JNI_FALSE);
280 env->ReleaseStringUTFChars(pValue, value);
273 Java_com_sun_java_util_jar_pack_NativeUnpack_setOption(JNIEnv *env, jobject pObj, jstring pProp, jstring pValue) argument
/openjdk7/jdk/src/windows/native/com/sun/management/
H A DOperatingSystem_md.c199 PPDH_FMT_COUNTERVALUE pValue
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DCSS.java1829 int pValue = StyleConstants.getFontSize(resolveParent);
1833 retValue = lu.value * (float)pValue;
1836 retValue = lu.value + (float)pValue;

Completed in 72 milliseconds