Lines Matching defs:method
78 const X509V3_EXT_METHOD *method;
86 if ((method = X509V3_EXT_get(ext)) == NULL)
88 if (method->it)
89 ext_str = ASN1_item_d2i(NULL, &p, extlen, ASN1_ITEM_ptr(method->it));
91 ext_str = method->d2i(NULL, &p, extlen);
96 if (method->i2s) {
97 if ((value = method->i2s(method, ext_str)) == NULL) {
116 } else if (method->i2v) {
117 if ((nval = method->i2v(method, ext_str, NULL)) == NULL) {
122 method->ext_flags & X509V3_EXT_MULTILINE);
123 } else if (method->i2r) {
124 if (!method->i2r(method, ext_str, out, indent))
132 if (method->it)
133 ASN1_item_free(ext_str, ASN1_ITEM_ptr(method->it));
135 method->ext_free(ext_str);