Home | History | Annotate | Download | only in gen

Lines Matching defs:exclude

1680 	DB		*exclude;	/* compat exclude DB */
1747 if (state->exclude != NULL)
1748 (void)(state->exclude->close)(state->exclude);
1749 state->exclude = NULL;
1757 * add the name to the exclude list in state->exclude.
1768 if (state->exclude == NULL) {
1769 state->exclude = dbopen(NULL, O_RDWR, 600, DB_HASH, NULL);
1770 if (state->exclude == NULL)
1781 if ((state->exclude->put)(state->exclude, &key, &data, 0) == -1)
1789 * test if a name is on the compat mode exclude list
1799 if (state->exclude == NULL)
1805 if ((state->exclude->get)(state->exclude, &key, &data, 0) == 0)