Symbol: ASN1_STRING_TABLE
crypto/openssl/crypto/asn1/a_strnid.c
112
static int sk_table_cmp(const ASN1_STRING_TABLE *const *a,
crypto/openssl/crypto/asn1/a_strnid.c
113
const ASN1_STRING_TABLE *const *b)
crypto/openssl/crypto/asn1/a_strnid.c
118
DECLARE_OBJ_BSEARCH_CMP_FN(ASN1_STRING_TABLE, ASN1_STRING_TABLE, table);
crypto/openssl/crypto/asn1/a_strnid.c
120
static int table_cmp(const ASN1_STRING_TABLE *a, const ASN1_STRING_TABLE *b)
crypto/openssl/crypto/asn1/a_strnid.c
125
IMPLEMENT_OBJ_BSEARCH_CMP_FN(ASN1_STRING_TABLE, ASN1_STRING_TABLE, table);
crypto/openssl/crypto/asn1/a_strnid.c
127
ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid)
crypto/openssl/crypto/asn1/a_strnid.c
130
ASN1_STRING_TABLE fnd;
crypto/openssl/crypto/asn1/a_strnid.c
15
static STACK_OF(ASN1_STRING_TABLE) *stable = NULL;
crypto/openssl/crypto/asn1/a_strnid.c
153
static ASN1_STRING_TABLE *stable_get(int nid)
crypto/openssl/crypto/asn1/a_strnid.c
155
ASN1_STRING_TABLE *tmp, *rv;
crypto/openssl/crypto/asn1/a_strnid.c
16
static void st_free(ASN1_STRING_TABLE *tbl);
crypto/openssl/crypto/asn1/a_strnid.c
17
static int sk_table_cmp(const ASN1_STRING_TABLE *const *a,
crypto/openssl/crypto/asn1/a_strnid.c
18
const ASN1_STRING_TABLE *const *b);
crypto/openssl/crypto/asn1/a_strnid.c
191
ASN1_STRING_TABLE *tmp;
crypto/openssl/crypto/asn1/a_strnid.c
211
STACK_OF(ASN1_STRING_TABLE) *tmp;
crypto/openssl/crypto/asn1/a_strnid.c
220
static void st_free(ASN1_STRING_TABLE *tbl)
crypto/openssl/crypto/asn1/a_strnid.c
83
ASN1_STRING_TABLE *tbl;
crypto/openssl/crypto/asn1/tbl_standard.h
28
static const ASN1_STRING_TABLE tbl_standard[] = {
crypto/openssl/include/openssl/asn1.h
1012
ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid);
crypto/openssl/include/openssl/asn1.h
238
SKM_DEFINE_STACK_OF_INTERNAL(ASN1_STRING_TABLE, ASN1_STRING_TABLE, ASN1_STRING_TABLE)
crypto/openssl/include/openssl/asn1.h
240
#define sk_ASN1_STRING_TABLE_value(sk, idx) ((ASN1_STRING_TABLE *)OPENSSL_sk_value(ossl_check_const_ASN1_STRING_TABLE_sk_type(sk), (idx)))
crypto/openssl/include/openssl/asn1.h
241
#define sk_ASN1_STRING_TABLE_new(cmp) ((STACK_OF(ASN1_STRING_TABLE) *)OPENSSL_sk_new(ossl_check_ASN1_STRING_TABLE_compfunc_type(cmp)))
crypto/openssl/include/openssl/asn1.h
242
#define sk_ASN1_STRING_TABLE_new_null() ((STACK_OF(ASN1_STRING_TABLE) *)OPENSSL_sk_new_null())
crypto/openssl/include/openssl/asn1.h
243
#define sk_ASN1_STRING_TABLE_new_reserve(cmp, n) ((STACK_OF(ASN1_STRING_TABLE) *)OPENSSL_sk_new_reserve(ossl_check_ASN1_STRING_TABLE_compfunc_type(cmp), (n)))
crypto/openssl/include/openssl/asn1.h
247
#define sk_ASN1_STRING_TABLE_delete(sk, i) ((ASN1_STRING_TABLE *)OPENSSL_sk_delete(ossl_check_ASN1_STRING_TABLE_sk_type(sk), (i)))
crypto/openssl/include/openssl/asn1.h
248
#define sk_ASN1_STRING_TABLE_delete_ptr(sk, ptr) ((ASN1_STRING_TABLE *)OPENSSL_sk_delete_ptr(ossl_check_ASN1_STRING_TABLE_sk_type(sk), ossl_check_ASN1_STRING_TABLE_type(ptr)))
crypto/openssl/include/openssl/asn1.h
251
#define sk_ASN1_STRING_TABLE_pop(sk) ((ASN1_STRING_TABLE *)OPENSSL_sk_pop(ossl_check_ASN1_STRING_TABLE_sk_type(sk)))
crypto/openssl/include/openssl/asn1.h
252
#define sk_ASN1_STRING_TABLE_shift(sk) ((ASN1_STRING_TABLE *)OPENSSL_sk_shift(ossl_check_ASN1_STRING_TABLE_sk_type(sk)))
crypto/openssl/include/openssl/asn1.h
255
#define sk_ASN1_STRING_TABLE_set(sk, idx, ptr) ((ASN1_STRING_TABLE *)OPENSSL_sk_set(ossl_check_ASN1_STRING_TABLE_sk_type(sk), (idx), ossl_check_ASN1_STRING_TABLE_type(ptr)))
crypto/openssl/include/openssl/asn1.h
261
#define sk_ASN1_STRING_TABLE_dup(sk) ((STACK_OF(ASN1_STRING_TABLE) *)OPENSSL_sk_dup(ossl_check_const_ASN1_STRING_TABLE_sk_type(sk)))
crypto/openssl/include/openssl/asn1.h
262
#define sk_ASN1_STRING_TABLE_deep_copy(sk, copyfunc, freefunc) ((STACK_OF(ASN1_STRING_TABLE) *)OPENSSL_sk_deep_copy(ossl_check_const_ASN1_STRING_TABLE_sk_type(sk), ossl_check_ASN1_STRING_TABLE_copyfunc_type(copyfunc), ossl_check_ASN1_STRING_TABLE_freefunc_type(freefunc)))
crypto/openssl/test/asn1_internal_test.c
38
const ASN1_STRING_TABLE *tmp;
crypto/openssl/test/asn1_string_table_test.c
20
const ASN1_STRING_TABLE *tmp = NULL;