Searched refs:dc_conf_fd (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/dumpadm/
H A Ddconf.h45 int dc_conf_fd; /* File descriptor for config file */ member in struct:dumpconf
H A Ddconf.c116 dcp->dc_conf_fd = -1;
135 if ((dcp->dc_conf_fd = open(fpath, O_RDWR | O_CREAT, DC_PERM)) == -1) {
139 if ((dcp->dc_conf_fd = open(fpath, O_RDONLY)) == -1) {
148 if ((dcp->dc_conf_fp = fdopen(dcp->dc_conf_fd, fpmode)) == NULL) {
257 if (ftruncate(dcp->dc_conf_fd, (off_t)0) == -1) {
278 if (fsync(dcp->dc_conf_fd) == -1)
281 if (fchmod(dcp->dc_conf_fd, DC_PERM) == -1)
284 if (fchown(dcp->dc_conf_fd, DC_OWNER, DC_GROUP) == -1)

Completed in 57 milliseconds