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