Lines Matching refs:names
22 * Encoder can have multiple names, separated with colons in a name string
91 const char *names; /* For get_encoder_from_store() */
162 if ((id = methdata->id) == 0 && methdata->names != NULL) {
164 const char *names = methdata->names;
165 const char *q = strchr(names, NAME_SEPARATOR);
166 size_t l = (q == NULL ? strlen(names) : (size_t)(q - names));
170 id = ossl_namemap_name2num_n(namemap, methdata->names, l);
187 const char *names, const char *propdef,
198 * all the names should already be stored in the namemap with the same
201 if (names != NULL) {
202 const char *q = strchr(names, NAME_SEPARATOR);
204 l = (q == NULL ? strlen(names) : (size_t)(q - names));
208 || (id = ossl_namemap_name2num_n(namemap, names, l)) == 0)
320 * The core fetching functionality passes the names of the implementation.
336 const char *names = algodef->algorithm_names;
337 int id = ossl_namemap_add_names(namemap, 0, names, NAME_SEPARATOR);
419 methdata->names = name;