Lines Matching refs:loc
21 X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc);
29 X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc);
31 X509_EXTENSION *ex, int loc);
37 X509_EXTENSION *X509_get_ext(const X509 *x, int loc);
41 X509_EXTENSION *X509_delete_ext(X509 *x, int loc);
42 int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
45 X509_EXTENSION *X509_CRL_get_ext(const X509_CRL *x, int loc);
50 X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc);
51 int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc);
54 X509_EXTENSION *X509_REVOKED_get_ext(const X509_REVOKED *x, int loc);
59 X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc);
60 int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc);
66 X509v3_get_ext() retrieves extension I<loc> from I<x>. The index I<loc>
81 X509v3_delete_ext() deletes the extension with index I<loc> from I<x>.
83 If I<loc> is an invalid index value, NULL is returned.
85 X509v3_add_ext() inserts extension I<ex> to STACK I<*x> at position I<loc>.
86 If I<loc> is -1, the new extension is added to the end.