Lines Matching defs:dictname
51 const char *dictname;
78 /* diagcode is: dictname-XXXX-XX */
81 /* diagcode is: dictname-XXXX-XXXX-XX */
84 /* diagcode is: dictname-XXXX-XXXX-XXXX-XX */
87 /* diagcode is: dictname-XXXX-XXXX-XXXX-XXXX-XX */
144 fm_dc_opendict(int version, const char *dirpath, const char *dictname)
165 version, (dirpath == NULL) ? "NULL" : dirpath, dictname);
183 * allocate buffer for dirpath, slash, dictname, and suffix
187 strlen(dictname) + sizeof (Suffix));
192 * allocate the dictname copy kept in the handle.
197 (dhp->dictname = strdup(dictname)) == NULL) {
209 (void) strcat(fname, dictname);
302 if (prop_version != 1UL || strcmp(prop_name, dictname) ||
332 free((void *) dhp->dictname);
352 size_t len = strlen(dhp->dictname);
723 /* handle dictname part of checksum */
724 for (ptr = dhp->dictname; *ptr; ptr++) {
834 int len = strlen(dhp->dictname);
844 /* check dictname part of code */
845 if (strncasecmp(code, dhp->dictname, len) ||
857 /* we verified it began with dictname and a dash, so skip it */
893 for (ptr = dhp->dictname; *ptr; ptr++)