Searched defs:xfd (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/ipf/tools/
H A Dipf.c283 int flag, xfd, logopt, change = 0; local
331 xfd = open(IPSTATE_NAME, O_RDWR);
332 if (xfd >= 0 && setzone(xfd) != 0) {
333 close(xfd);
334 xfd = -1;
337 if (xfd >= 0) {
339 if (ioctl(xfd, SIOCGETLG, &logopt))
343 if (ioctl(xfd, SIOCSETLG, &logopt))
346 close(xfd);
[all...]
/illumos-gate/usr/src/lib/libvolmgt/common/
H A Dvolmgt_on_private.c586 int xfd; local
592 if ((xfd = open(NULL_PATH, O_RDWR)) >= 0) {
593 (void) dup2(xfd, fileno(stdin));
594 (void) dup2(xfd, fileno(stdout));
595 (void) dup2(xfd, fileno(stderr));
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dutil.c2084 int xfd; local
2086 xfd = sm_io_getinfo(e->e_xfp, SM_IO_WHAT_FD, NULL);
2087 if (xfd >= 0 && dup2(xfd, 2) < 0)
/illumos-gate/usr/src/lib/smbsrv/libmlsvc/common/
H A Ddfs.c455 int xfd; local
464 if ((xfd = dfs_root_xopen(rootdir, O_RDONLY)) > 0) {
465 status = dfs_root_xread(xfd, info, infolvl);
466 dfs_root_xclose(xfd);
485 int xfd; local
488 if ((xfd = dfs_root_xopen(rootdir, O_RDWR)) < 0) {
493 status = dfs_root_xread(xfd, &curinfo, DFS_INFO_ALL);
495 dfs_root_xclose(xfd);
502 status = dfs_root_xwrite(xfd, &curinfo);
504 dfs_root_xclose(xfd);
1146 int xfd; local
1197 int xfd = -1; local
1221 dfs_root_xclose(int xfd) argument
1231 dfs_root_xwrite(int xfd, dfs_info_t *info) argument
1253 dfs_root_xread(int xfd, dfs_info_t *info, uint32_t infolvl) argument
[all...]

Completed in 63 milliseconds