Lines Matching refs:names
31 const char *names; /* For get_evp_method_from_store() */ member
134 if ((name_id = methdata->name_id) == 0 && methdata->names != NULL) { in get_evp_method_from_store()
136 const char *names = methdata->names; in get_evp_method_from_store() local
137 const char *q = strchr(names, NAME_SEPARATOR); in get_evp_method_from_store()
138 size_t l = (q == NULL ? strlen(names) : (size_t)(q - names)); in get_evp_method_from_store()
142 name_id = ossl_namemap_name2num_n(namemap, names, l); in get_evp_method_from_store()
161 const char *names, const char *propdef, in put_evp_method_in_store() argument
176 if (names != NULL) { in put_evp_method_in_store()
177 const char *q = strchr(names, NAME_SEPARATOR); in put_evp_method_in_store()
179 l = (q == NULL ? strlen(names) : (size_t)(q - names)); in put_evp_method_in_store()
183 || (name_id = ossl_namemap_name2num_n(namemap, names, l)) == 0 in put_evp_method_in_store()
213 const char *names = algodef->algorithm_names; in construct_evp_method() local
214 int name_id = ossl_namemap_add_names(namemap, 0, names, NAME_SEPARATOR); in construct_evp_method()
307 methdata->names = name; in inner_evp_generic_fetch()