Symbol: ASN1_STRING_TABLE
crypto/libressl/crypto/asn1/a_strnid.c
148
ASN1_STRING_TABLE *tbl;
crypto/libressl/crypto/asn1/a_strnid.c
189
static const ASN1_STRING_TABLE tbl_standard[] = {
crypto/libressl/crypto/asn1/a_strnid.c
212
sk_table_cmp(const ASN1_STRING_TABLE * const *a,
crypto/libressl/crypto/asn1/a_strnid.c
213
const ASN1_STRING_TABLE * const *b)
crypto/libressl/crypto/asn1/a_strnid.c
219
static int table_cmp(ASN1_STRING_TABLE const *, ASN1_STRING_TABLE const *);
crypto/libressl/crypto/asn1/a_strnid.c
220
static ASN1_STRING_TABLE *OBJ_bsearch_table(ASN1_STRING_TABLE *key, ASN1_STRING_TABLE const *base, int num);
crypto/libressl/crypto/asn1/a_strnid.c
223
table_cmp(const ASN1_STRING_TABLE *a, const ASN1_STRING_TABLE *b)
crypto/libressl/crypto/asn1/a_strnid.c
232
ASN1_STRING_TABLE const *a = a_;
crypto/libressl/crypto/asn1/a_strnid.c
233
ASN1_STRING_TABLE const *b = b_;
crypto/libressl/crypto/asn1/a_strnid.c
237
static ASN1_STRING_TABLE *
crypto/libressl/crypto/asn1/a_strnid.c
238
OBJ_bsearch_table(ASN1_STRING_TABLE *key, ASN1_STRING_TABLE const *base, int num)
crypto/libressl/crypto/asn1/a_strnid.c
240
return (ASN1_STRING_TABLE *)OBJ_bsearch_(key, base, num, sizeof(ASN1_STRING_TABLE),
crypto/libressl/crypto/asn1/a_strnid.c
244
ASN1_STRING_TABLE *
crypto/libressl/crypto/asn1/a_strnid.c
248
ASN1_STRING_TABLE fnd;
crypto/libressl/crypto/asn1/a_strnid.c
257
sizeof(tbl_standard)/sizeof(ASN1_STRING_TABLE));
crypto/libressl/crypto/asn1/a_strnid.c
265
static ASN1_STRING_TABLE *
crypto/libressl/crypto/asn1/a_strnid.c
268
ASN1_STRING_TABLE *tmp, *rv;
crypto/libressl/crypto/asn1/a_strnid.c
307
ASN1_STRING_TABLE *tmp;
crypto/libressl/crypto/asn1/a_strnid.c
328
STACK_OF(ASN1_STRING_TABLE) *tmp;
crypto/libressl/crypto/asn1/a_strnid.c
338
st_free(ASN1_STRING_TABLE *tbl)
crypto/libressl/crypto/asn1/a_strnid.c
68
static STACK_OF(ASN1_STRING_TABLE) *stable = NULL;
crypto/libressl/crypto/asn1/a_strnid.c
70
static ASN1_STRING_TABLE *stable_get(int nid);
crypto/libressl/crypto/asn1/a_strnid.c
71
static void st_free(ASN1_STRING_TABLE *tbl);
crypto/libressl/crypto/asn1/a_strnid.c
72
static int sk_table_cmp(const ASN1_STRING_TABLE * const *a,
crypto/libressl/crypto/asn1/a_strnid.c
73
const ASN1_STRING_TABLE * const *b);
crypto/libressl/include/openssl/asn1.h
222
DECLARE_STACK_OF(ASN1_STRING_TABLE)
crypto/libressl/include/openssl/asn1.h
872
ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid);
crypto/libressl/include/openssl/safestack.h
292
#define sk_ASN1_STRING_TABLE_new(cmp) SKM_sk_new(ASN1_STRING_TABLE, (cmp))
crypto/libressl/include/openssl/safestack.h
293
#define sk_ASN1_STRING_TABLE_new_null() SKM_sk_new_null(ASN1_STRING_TABLE)
crypto/libressl/include/openssl/safestack.h
294
#define sk_ASN1_STRING_TABLE_free(st) SKM_sk_free(ASN1_STRING_TABLE, (st))
crypto/libressl/include/openssl/safestack.h
295
#define sk_ASN1_STRING_TABLE_num(st) SKM_sk_num(ASN1_STRING_TABLE, (st))
crypto/libressl/include/openssl/safestack.h
296
#define sk_ASN1_STRING_TABLE_value(st, i) SKM_sk_value(ASN1_STRING_TABLE, (st), (i))
crypto/libressl/include/openssl/safestack.h
297
#define sk_ASN1_STRING_TABLE_set(st, i, val) SKM_sk_set(ASN1_STRING_TABLE, (st), (i), (val))
crypto/libressl/include/openssl/safestack.h
298
#define sk_ASN1_STRING_TABLE_zero(st) SKM_sk_zero(ASN1_STRING_TABLE, (st))
crypto/libressl/include/openssl/safestack.h
299
#define sk_ASN1_STRING_TABLE_push(st, val) SKM_sk_push(ASN1_STRING_TABLE, (st), (val))
crypto/libressl/include/openssl/safestack.h
300
#define sk_ASN1_STRING_TABLE_unshift(st, val) SKM_sk_unshift(ASN1_STRING_TABLE, (st), (val))
crypto/libressl/include/openssl/safestack.h
301
#define sk_ASN1_STRING_TABLE_find(st, val) SKM_sk_find(ASN1_STRING_TABLE, (st), (val))
crypto/libressl/include/openssl/safestack.h
302
#define sk_ASN1_STRING_TABLE_find_ex(st, val) SKM_sk_find_ex(ASN1_STRING_TABLE, (st), (val))
crypto/libressl/include/openssl/safestack.h
303
#define sk_ASN1_STRING_TABLE_delete(st, i) SKM_sk_delete(ASN1_STRING_TABLE, (st), (i))
crypto/libressl/include/openssl/safestack.h
304
#define sk_ASN1_STRING_TABLE_delete_ptr(st, ptr) SKM_sk_delete_ptr(ASN1_STRING_TABLE, (st), (ptr))
crypto/libressl/include/openssl/safestack.h
305
#define sk_ASN1_STRING_TABLE_insert(st, val, i) SKM_sk_insert(ASN1_STRING_TABLE, (st), (val), (i))
crypto/libressl/include/openssl/safestack.h
306
#define sk_ASN1_STRING_TABLE_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(ASN1_STRING_TABLE, (st), (cmp))
crypto/libressl/include/openssl/safestack.h
307
#define sk_ASN1_STRING_TABLE_dup(st) SKM_sk_dup(ASN1_STRING_TABLE, st)
crypto/libressl/include/openssl/safestack.h
308
#define sk_ASN1_STRING_TABLE_pop_free(st, free_func) SKM_sk_pop_free(ASN1_STRING_TABLE, (st), (free_func))
crypto/libressl/include/openssl/safestack.h
309
#define sk_ASN1_STRING_TABLE_shift(st) SKM_sk_shift(ASN1_STRING_TABLE, (st))
crypto/libressl/include/openssl/safestack.h
310
#define sk_ASN1_STRING_TABLE_pop(st) SKM_sk_pop(ASN1_STRING_TABLE, (st))
crypto/libressl/include/openssl/safestack.h
311
#define sk_ASN1_STRING_TABLE_sort(st) SKM_sk_sort(ASN1_STRING_TABLE, (st))
crypto/libressl/include/openssl/safestack.h
312
#define sk_ASN1_STRING_TABLE_is_sorted(st) SKM_sk_is_sorted(ASN1_STRING_TABLE, (st))