Home | History | Annotate | Download | only in objects

Lines Matching refs:OBJ_NAME

44 /* static unsigned long obj_name_hash(OBJ_NAME *a); */
46 /* static int obj_name_cmp(OBJ_NAME *a,OBJ_NAME *b); */
110 /* static int obj_name_cmp(OBJ_NAME *a, OBJ_NAME *b) */
114 const OBJ_NAME *a = (const OBJ_NAME *)a_void;
115 const OBJ_NAME *b = (const OBJ_NAME *)b_void;
132 /* static unsigned long obj_name_hash(OBJ_NAME *a) */
136 const OBJ_NAME *a = (const OBJ_NAME *)a_void;
153 OBJ_NAME on,*ret;
167 ret=(OBJ_NAME *)lh_retrieve(names_lh,&on);
183 OBJ_NAME *onp,*ret;
191 onp=(OBJ_NAME *)OPENSSL_malloc(sizeof(OBJ_NAME));
203 ret=(OBJ_NAME *)lh_insert(names_lh,onp);
231 OBJ_NAME on,*ret;
238 ret=(OBJ_NAME *)lh_delete(names_lh,&on);
261 void (*fn)(const OBJ_NAME *,void *arg);
265 static void do_all_fn(const OBJ_NAME *name,struct doall *d)
271 static IMPLEMENT_LHASH_DOALL_ARG_FN(do_all_fn, const OBJ_NAME *, struct doall *)
273 void OBJ_NAME_do_all(int type,void (*fn)(const OBJ_NAME *,void *arg),void *arg)
288 const OBJ_NAME **names;
291 static void do_all_sorted_fn(const OBJ_NAME *name,void *d_)
303 const OBJ_NAME * const *n1=n1_;
304 const OBJ_NAME * const *n2=n2_;
309 void OBJ_NAME_do_all_sorted(int type,void (*fn)(const OBJ_NAME *,void *arg),
330 static void names_lh_free(OBJ_NAME *onp)
341 static IMPLEMENT_LHASH_DOALL_FN(names_lh_free, OBJ_NAME *)