Lines Matching defs:name
228 const char *name;
341 get_alg_id_by_name(char *name)
343 char *nameEnd = strchr(name, ':');
344 size_t n = nameEnd ? (size_t)(nameEnd - name) : strlen(name);
347 for(i = 0; algs[i].name; i++) {
348 if((n == strlen(algs[i].name) && !strncmp(algs[i].name, name, n)))
511 "comparing the supplied target name with the subject "