Lines Matching refs:vdict
48 VENDOR_DICT *vdict; in rc_read_dictionary() local
89 vdict = (VENDOR_DICT *) malloc (sizeof (VENDOR_DICT)); in rc_read_dictionary()
90 if (!vdict) { in rc_read_dictionary()
95 strcpy(vdict->vendorname, namestr); in rc_read_dictionary()
96 vdict->vendorcode = value; in rc_read_dictionary()
97 vdict->attributes = NULL; in rc_read_dictionary()
98 vdict->next = vendor_dictionaries; in rc_read_dictionary()
99 vendor_dictionaries = vdict; in rc_read_dictionary()
171 vdict = rc_dict_findvendor(vendorstr); in rc_read_dictionary()
172 if (!vdict) { in rc_read_dictionary()
179 vdict = NULL; in rc_read_dictionary()
191 if (vdict) { in rc_read_dictionary()
192 attr->vendorcode = vdict->vendorcode; in rc_read_dictionary()
200 if (vdict) { in rc_read_dictionary()
201 attr->next = vdict->attributes; in rc_read_dictionary()
202 vdict->attributes = attr; in rc_read_dictionary()