Home | History | Annotate | Download | only in mkesdb

Lines Matching refs:csid

140 	struct named_csid *csid;
186 SIMPLEQ_FOREACH(csid, &named_csids, ci_entry) {
190 (df, buf, csid->ci_symbol));
193 CHKERR(ret, _db_factory_add32_by_s, (df, buf, csid->ci_csid));
247 struct named_csid *csid;
249 SIMPLEQ_FOREACH(csid, &named_csids, ci_entry) {
250 if (strcmp(csid->ci_symbol, sym) == 0) {
251 yyerror("multiply defined CSID");
256 csid = malloc(sizeof(*csid));
257 if (csid == NULL) {
261 csid->ci_symbol = sym;
262 csid->ci_csid = val;
263 SIMPLEQ_INSERT_TAIL(&named_csids, csid, ci_entry);