• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/

Lines Matching refs:class_index

156 	int (*cb_get_new_index)(int class_index, long argl, void *argp,
160 int (*cb_new_ex_data)(int class_index, void *obj,
163 int (*cb_dup_ex_data)(int class_index, CRYPTO_EX_DATA *to,
166 void (*cb_free_ex_data)(int class_index, void *obj,
180 static int int_get_new_index(int class_index, long argl, void *argp,
183 static int int_new_ex_data(int class_index, void *obj,
185 static int int_dup_ex_data(int class_index, CRYPTO_EX_DATA *to,
187 static void int_free_ex_data(int class_index, void *obj,
236 * of CRYPTO_EX_DATA_FUNCS plus a index-counter. The 'class_index' is the global
239 int class_index;
253 return ((const EX_CLASS_ITEM *)a_void)->class_index;
257 return (((const EX_CLASS_ITEM *)a_void)->class_index -
258 ((const EX_CLASS_ITEM *)b_void)->class_index);
295 static EX_CLASS_ITEM *def_get_class(int class_index)
299 d.class_index = class_index;
307 gen->class_index = class_index;
384 static int int_get_new_index(int class_index, long argl, void *argp,
388 EX_CLASS_ITEM *item = def_get_class(class_index);
398 static int int_new_ex_data(int class_index, void *obj,
404 EX_CLASS_ITEM *item = def_get_class(class_index);
441 static int int_dup_ex_data(int class_index, CRYPTO_EX_DATA *to,
451 if((item = def_get_class(class_index)) == NULL)
487 static void int_free_ex_data(int class_index, void *obj,
494 if((item = def_get_class(class_index)) == NULL)
554 int CRYPTO_get_ex_new_index(int class_index, long argl, void *argp,
561 ret = EX_IMPL(get_new_index)(class_index,
568 int CRYPTO_new_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad)
571 return EX_IMPL(new_ex_data)(class_index, obj, ad);
576 int CRYPTO_dup_ex_data(int class_index, CRYPTO_EX_DATA *to,
580 return EX_IMPL(dup_ex_data)(class_index, to, from);
585 void CRYPTO_free_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad)
588 EX_IMPL(free_ex_data)(class_index, obj, ad);