Lines Matching refs:a_fd
34 * _z_close_file_descriptors - close a file descriptor "a_fd" not in the
136 * Description: close a file descriptor "a_fd" not in the list "a_fds"
142 * a_fd - [RO, *RO] - (int)
149 _z_close_file_descriptors(void *a_fds, int a_fd)
156 if (a_fd == STDIN_FILENO || a_fd == STDOUT_FILENO ||
157 a_fd == STDERR_FILENO) {
164 (void) close(a_fd);
175 if (fds[i] == a_fd) {
182 (void) close(a_fd);