Lines Matching defs:obj
211 int ossl_crypto_new_ex_data_ex(OSSL_LIB_CTX *ctx, int class_index, void *obj,
249 storage[i]->new_func(obj, ptr, ad, i,
258 int CRYPTO_new_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad)
260 return ossl_crypto_new_ex_data_ex(NULL, class_index, obj, ad);
363 void CRYPTO_free_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad)
402 f->free_func(obj, ptr, ad, storage[i].index, f->argl, f->argp);
419 int CRYPTO_alloc_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad,
429 return ossl_crypto_alloc_ex_data_intern(class_index, obj, ad, idx);
432 int ossl_crypto_alloc_ex_data_intern(int class_index, void *obj,
456 f->new_func(obj, NULL, ad, idx, f->argl, f->argp);