Lines Matching refs:names
117 const char **names;
124 data->names[data->found++] = namenum->name;
130 * Call the callback for all names in the namemap with the given number.
131 * A return value 1 means that the callback was called for all names. A
132 * return value of 0 means that the callback was not called for any names.
146 * We collect all the names first under a read lock. Subsequently we call
158 cbdata.names = OPENSSL_malloc(sizeof(*cbdata.names) * num_names);
159 if (cbdata.names == NULL) {
168 fn(cbdata.names[i], data);
170 OPENSSL_free(cbdata.names);
301 const char *names, const char separator)
315 * Check that no name is an empty string, and that all names have at
318 for (p = names; *p != '\0'; p = (q == NULL ? p + l : q + 1)) {
337 l, p, this_number, names);
342 /* Now that we have checked, register all names */
343 for (p = names; *p != '\0'; p = (q == NULL ? p + l : q + 1)) {
378 /* Creates an initial namemap with names found in the legacy method db */