tempfd            175 plugin/ipc/event/eventconnection.cpp   int tempfd = _real_eventfd(_initval, _flags);
tempfd            176 plugin/ipc/event/eventconnection.cpp   JASSERT(tempfd > 0) (tempfd) (JASSERT_ERRNO);
tempfd            177 plugin/ipc/event/eventconnection.cpp   Util::dupFds(tempfd, _fds);
tempfd            236 plugin/ipc/event/eventconnection.cpp   int tempfd = _real_signalfd(-1, &_mask, _flags);
tempfd            237 plugin/ipc/event/eventconnection.cpp   JASSERT(tempfd > 0) (tempfd) (JASSERT_ERRNO);
tempfd            238 plugin/ipc/event/eventconnection.cpp   Util::dupFds(tempfd, _fds);
tempfd            295 plugin/ipc/event/eventconnection.cpp   int tempfd =  _real_inotify_init1(_flags);
tempfd            296 plugin/ipc/event/eventconnection.cpp   JASSERT(tempfd >= 0);
tempfd            297 plugin/ipc/event/eventconnection.cpp   Util::dupFds(tempfd, _fds);
tempfd            339 plugin/ipc/file/fileconnection.cpp     int tempfd = _real_open(_ptsName.c_str(), _flags | extraFlags);
tempfd            340 plugin/ipc/file/fileconnection.cpp     JASSERT(tempfd >= 0) (_virtPtsName) (_ptsName) (JASSERT_ERRNO)
tempfd            344 plugin/ipc/file/fileconnection.cpp     Util::dupFds(tempfd, _fds);
tempfd            359 plugin/ipc/file/fileconnection.cpp     int tempfd = _real_open("/dev/tty", O_RDWR, 0);
tempfd            360 plugin/ipc/file/fileconnection.cpp     JASSERT(tempfd >= 0) (tempfd) (JASSERT_ERRNO)
tempfd            365 plugin/ipc/file/fileconnection.cpp     Util::dupFds(tempfd, _fds);
tempfd            376 plugin/ipc/file/fileconnection.cpp   int tempfd = -1;
tempfd            398 plugin/ipc/file/fileconnection.cpp           tempfd = _real_open(controllingTty.c_str(), _fcntlFlags);
tempfd            399 plugin/ipc/file/fileconnection.cpp           JASSERT(tempfd >= 0) (tempfd) (controllingTty) (JASSERT_ERRNO)
tempfd            418 plugin/ipc/file/fileconnection.cpp             tempfd = _real_dup(STDIN_FILENO);
tempfd            420 plugin/ipc/file/fileconnection.cpp             tempfd = _real_dup(STDOUT_FILENO);
tempfd            438 plugin/ipc/file/fileconnection.cpp         tempfd = _real_open("/dev/ptmx", _flags | extraFlags);
tempfd            439 plugin/ipc/file/fileconnection.cpp         JASSERT(tempfd >= 0) (tempfd) (JASSERT_ERRNO)
tempfd            442 plugin/ipc/file/fileconnection.cpp         JASSERT(grantpt(tempfd) >= 0) (tempfd) (JASSERT_ERRNO);
tempfd            443 plugin/ipc/file/fileconnection.cpp         JASSERT(unlockpt(tempfd) >= 0) (tempfd) (JASSERT_ERRNO);
tempfd            444 plugin/ipc/file/fileconnection.cpp         JASSERT(_real_ptsname_r(tempfd, pts_name, 80) == 0)
tempfd            445 plugin/ipc/file/fileconnection.cpp           (tempfd) (JASSERT_ERRNO);
tempfd            464 plugin/ipc/file/fileconnection.cpp         tempfd = _real_open(_masterName.c_str(), _flags | extraFlags);
tempfd            474 plugin/ipc/file/fileconnection.cpp         JASSERT(tempfd >= 0) (tempfd) (JASSERT_ERRNO)
tempfd            484 plugin/ipc/file/fileconnection.cpp   Util::dupFds(tempfd, _fds);
tempfd            678 plugin/ipc/file/fileconnection.cpp     int tempfd;
tempfd            680 plugin/ipc/file/fileconnection.cpp       tempfd = _real_open(_path.c_str(), _fcntlFlags | O_CREAT, 0600);
tempfd            681 plugin/ipc/file/fileconnection.cpp       JASSERT(tempfd != -1) (_path) (JASSERT_ERRNO) .Text("open() failed");
tempfd            699 plugin/ipc/file/fileconnection.cpp       tempfd = openFile();
tempfd            701 plugin/ipc/file/fileconnection.cpp     Util::dupFds(tempfd, _fds);
tempfd            787 plugin/ipc/file/fileconnection.cpp   int tempfd;
tempfd            800 plugin/ipc/file/fileconnection.cpp     tempfd = dmtcp_bq_restore_file(_path.c_str(), savedFilePath.c_str(),
tempfd            831 plugin/ipc/file/fileconnection.cpp     tempfd = openFile();
tempfd            833 plugin/ipc/file/fileconnection.cpp   Util::dupFds(tempfd, _fds);
tempfd           1027 plugin/ipc/file/fileconnection.cpp   int tempfd = openFile();
tempfd           1028 plugin/ipc/file/fileconnection.cpp   Util::dupFds(tempfd, _fds);
tempfd           1165 plugin/ipc/file/fileconnection.cpp   int tempfd = _real_mq_open(_name.c_str(), _oflag, _mode, &_attr);
tempfd           1166 plugin/ipc/file/fileconnection.cpp   JASSERT(tempfd != -1) (JASSERT_ERRNO);
tempfd           1167 plugin/ipc/file/fileconnection.cpp   Util::dupFds(tempfd, _fds);