Lines Matching defs:fdt
45 if ((files == NULL) || (files->fdt == NULL)) {
49 for (int i = 0; i < files->fdt->max_fds; i++) {
50 if (FD_ISSET(i, files->fdt->proc_fds) &&
51 FD_ISSET(i, files->fdt->cloexec_fds)) {
64 struct fd_table_s *fdt = GetFdTable();
65 if (fdt == NULL) {
69 FileTableLock(fdt);
70 FD_SET(procFd, fdt->cloexec_fds);
71 FileTableUnLock(fdt);
78 struct fd_table_s *fdt = GetFdTable();
79 if (fdt == NULL) {
83 FileTableLock(fdt);
84 isCloexec = FD_ISSET(procFd, fdt->cloexec_fds);
85 FileTableUnLock(fdt);
91 struct fd_table_s *fdt = GetFdTable();
92 if (fdt == NULL) {
96 FileTableLock(fdt);
97 FD_CLR(procFd, fdt->cloexec_fds);
98 FileTableUnLock(fdt);