Symbol: et_list
crypto/heimdal/lib/com_err/com_err.c
160
add_to_error_table(struct et_list *new_table)
crypto/heimdal/lib/com_err/com_err.c
162
struct et_list *et;
crypto/heimdal/lib/com_err/com_err.c
43
struct et_list *_et_list = NULL;
crypto/heimdal/lib/com_err/com_err.h
74
add_to_error_table (struct et_list *new_table);
crypto/heimdal/lib/com_err/com_right.h
69
struct et_list *next;
crypto/heimdal/lib/com_err/com_right.h
72
extern struct et_list *_et_list;
crypto/heimdal/lib/com_err/com_right.h
75
com_right (struct et_list *list, long code);
crypto/heimdal/lib/com_err/com_right.h
78
com_right_r (struct et_list *list, long code, char *, size_t);
crypto/heimdal/lib/com_err/com_right.h
81
initialize_error_table_r (struct et_list **, const char **, int, long);
crypto/heimdal/lib/com_err/com_right.h
84
free_error_table (struct et_list *);
crypto/heimdal/lib/com_err/error.c
107
free_error_table(struct et_list *et)
crypto/heimdal/lib/com_err/error.c
110
struct et_list *p = et;
crypto/heimdal/lib/com_err/error.c
50
com_right(struct et_list *list, long code)
crypto/heimdal/lib/com_err/error.c
52
struct et_list *p;
crypto/heimdal/lib/com_err/error.c
60
com_right_r(struct et_list *list, long code, char *str, size_t len)
crypto/heimdal/lib/com_err/error.c
62
struct et_list *p;
crypto/heimdal/lib/com_err/error.c
78
struct et_list etl;
crypto/heimdal/lib/com_err/error.c
83
initialize_error_table_r(struct et_list **list,
crypto/heimdal/lib/com_err/error.c
88
struct et_list *et, **end;
crypto/heimdal/lib/hx509/cert.c
128
initialize_hx_error_table_r(&(*context)->et_list);
crypto/heimdal/lib/hx509/cert.c
129
initialize_asn1_error_table_r(&(*context)->et_list);
crypto/heimdal/lib/hx509/cert.c
178
free_error_table ((*context)->et_list);
crypto/heimdal/lib/hx509/error.c
167
cstr = com_right(context->et_list, error_code);
crypto/heimdal/lib/hx509/hx_locl.h
190
struct et_list *et_list;
crypto/heimdal/lib/krb5/add_et_list.c
52
void (*func)(struct et_list **))
crypto/heimdal/lib/krb5/add_et_list.c
54
(*func)(&context->et_list);
crypto/heimdal/lib/krb5/context.c
1034
if(context->et_list == NULL){
crypto/heimdal/lib/krb5/context.c
584
free_error_table (context->et_list);
crypto/heimdal/lib/krb5/error_string.c
280
cstr = com_right_r(context->et_list, code, buf, sizeof(buf));
crypto/heimdal/lib/krb5/error_string.c
336
p = com_right(context->et_list, code);
crypto/heimdal/lib/krb5/krb5-protos.h
84
void (*/*func*/)(struct et_list **));
crypto/heimdal/lib/krb5/krb5_locl.h
265
struct et_list *et_list;
crypto/krb5/src/util/et/error_message.c
107
struct et_list *e;
crypto/krb5/src/util/et/error_message.c
143
for (e = et_list; e != NULL; e = e->next) {
crypto/krb5/src/util/et/error_message.c
255
struct et_list *e;
crypto/krb5/src/util/et/error_message.c
260
e = malloc(sizeof(struct et_list));
crypto/krb5/src/util/et/error_message.c
267
e->next = et_list;
crypto/krb5/src/util/et/error_message.c
268
et_list = e;
crypto/krb5/src/util/et/error_message.c
27
static struct et_list *et_list;
crypto/krb5/src/util/et/error_message.c
282
struct et_list **ep, *e;
crypto/krb5/src/util/et/error_message.c
293
for (ep = &et_list; *ep; ep = &(*ep)->next) {
crypto/krb5/src/util/et/error_message.c
55
struct et_list *e, *enext;
crypto/krb5/src/util/et/error_message.c
68
for (e = et_list; e; e = enext) {
crypto/krb5/src/util/et/error_message.c
72
et_list = NULL;
crypto/krb5/src/util/et/error_table.h
16
struct et_list *next;
crypto/krb5/src/windows/include/leasherr.h
27
extern void initialize_lsh_error_table(struct et_list **);
crypto/krb5/src/windows/leashdll/leasherr.c
101
void Leash_initialize_kadm_error_table(struct et_list **__et_list)
crypto/krb5/src/windows/leashdll/leasherr.c
51
struct et_list *next;
crypto/krb5/src/windows/leashdll/leasherr.c
61
struct et_list *_link;
crypto/krb5/src/windows/leashdll/leasherr.c
64
ghlink=GlobalAlloc(GHND,sizeof(struct et_list));
crypto/krb5/src/windows/leashdll/leasherr.c
72
void initialize_lsh_error_table(struct et_list **__et_list) {
crypto/krb5/src/windows/leashdll/leasherr.c
73
struct et_list *_link;
crypto/krb5/src/windows/leashdll/leasherr.c
75
_link=malloc(sizeof(struct et_list));
crypto/krb5/src/windows/leashdll/leasherr.c
94
void Leash_initialize_krb_error_func(err_func func, struct et_list **__et_list)