Searched refs:lowfd (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10.1/sudo-73/src/
H A Dclosefrom.c59 * Close all file descriptors greater than or equal to lowfd.
63 closefrom_fallback(lowfd)
64 int lowfd;
81 for (fd = lowfd; fd < maxfd; fd++)
90 * Close all file descriptors greater than or equal to lowfd.
95 closefrom(lowfd)
96 int lowfd;
98 if (fcntl(lowfd, F_CLOSEM, 0) == -1)
99 closefrom_fallback(lowfd);
104 closefrom(lowfd)
[all...]
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-closefrom.c59 * Close all file descriptors greater than or equal to lowfd.
63 closefrom(int lowfd) argument
65 (void) fcntl(lowfd, F_CLOSEM, 0);
69 closefrom(int lowfd) argument
84 fd >= 0 && fd < INT_MAX && fd >= lowfd && fd != dirfd(dirp))
104 for (fd = lowfd; fd < maxfd; fd++)
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dsys_compat.c9 /* void closefrom(int lowfd)
10 /* int lowfd;
260 int closefrom(int lowfd) argument
270 if (lowfd < 0) {
276 for (fd = lowfd; fd < fd_limit; fd++)
/macosx-10.10.1/ruby-106/ruby/include/ruby/
H A Dintern.h513 void rb_close_before_exec(int lowfd, int maxhint, VALUE noclose_fds);
/macosx-10.10.1/ruby-106/ruby/
H A Dio.c5667 rb_close_before_exec(int lowfd, int maxhint, VALUE noclose_fds) argument
5684 for (fd = lowfd; fd <= max; fd++) {

Completed in 155 milliseconds