Lines Matching defs:table
119 resulttable *table;
129 table = malloc(sizeof(*table));
130 if (table == NULL)
132 table->base = base;
133 table->last = base + nresults - 1;
134 table->text = text;
135 table->msgcat = msgcat;
136 table->set = set;
137 ISC_LINK_INIT(table, link);
141 ISC_LIST_APPEND(tables, table, link);
173 resulttable *table;
182 for (table = ISC_LIST_HEAD(tables);
183 table != NULL;
184 table = ISC_LIST_NEXT(table, link)) {
185 if (result >= table->base && result <= table->last) {
186 index = (int)(result - table->base);
187 default_text = table->text[index];
193 text = isc_msgcat_get(table->msgcat, table->set,