Home
last modified time | relevance | path

Searched refs:cf_dtab (Results 1 – 2 of 2) sorted by relevance

/titanic_41/usr/src/cmd/syslogd/
H A Dconf.c120 void *ndtab = realloc(cf->cf_dtab, sizeof (char *) * ndsize); in grow_conf_file()
133 cf->cf_dtab = (char **)ndtab; in grow_conf_file()
142 cf->cf_dtab[odsize + i] = p; in grow_conf_file()
168 line = cf->cf_dtab[cf->cf_lines]; in conf_open()
201 return (cf->cf_dtab[cf->cf_ptr++]); in conf_read()
211 if (cf->cf_dtab != NULL) { in conf_close()
213 free(cf->cf_dtab[i]); in conf_close()
214 free(cf->cf_dtab); in conf_close()
H A Dconf.h36 char **cf_dtab; /* Array of pointers to line data */ member