Lines Matching refs:names
71 const char *names; /* For get_decoder_from_store() */ member
141 if ((id = methdata->id) == 0 && methdata->names != NULL) { in get_decoder_from_store()
143 const char *names = methdata->names; in get_decoder_from_store() local
144 const char *q = strchr(names, NAME_SEPARATOR); in get_decoder_from_store()
145 size_t l = (q == NULL ? strlen(names) : (size_t)(q - names)); in get_decoder_from_store()
149 id = ossl_namemap_name2num_n(namemap, names, l); in get_decoder_from_store()
166 const char *names, const char *propdef, in put_decoder_in_store() argument
180 if (names != NULL) { in put_decoder_in_store()
181 const char *q = strchr(names, NAME_SEPARATOR); in put_decoder_in_store()
183 l = (q == NULL ? strlen(names) : (size_t)(q - names)); in put_decoder_in_store()
187 || (id = ossl_namemap_name2num_n(namemap, names, l)) == 0) in put_decoder_in_store()
305 const char *names = algodef->algorithm_names; in construct_decoder() local
306 int id = ossl_namemap_add_names(namemap, 0, names, NAME_SEPARATOR); in construct_decoder()
377 methdata->names = name; in inner_ossl_decoder_fetch()