Searched refs:pipe_fd (Results 1 - 4 of 4) sorted by relevance
/bind-9.11.3/contrib/dnsperf-2.1.0.0-1/ |
H A D | os.h | 28 perf_os_waituntilreadable(int fd, int pipe_fd, isc_int64_t timeout); 31 perf_os_waituntilanyreadable(int *fds, unsigned int nfds, int pipe_fd,
|
H A D | os.c | 60 perf_os_waituntilreadable(int fd, int pipe_fd, isc_int64_t timeout) argument 69 FD_SET(pipe_fd, &read_fds); 70 maxfd = pipe_fd > fd ? pipe_fd : fd; 85 } else if (FD_ISSET(pipe_fd, &read_fds)) { 93 perf_os_waituntilanyreadable(int *fds, unsigned int nfds, int pipe_fd, argument 109 FD_SET(pipe_fd, &read_fds); 110 if (pipe_fd > maxfd) 111 maxfd = pipe_fd; 127 } else if (FD_ISSET(pipe_fd, [all...] |
H A D | datafile.h | 35 perf_datafile_setpipefd(perf_datafile_t *dfile, int pipe_fd);
|
H A D | datafile.c | 39 int pipe_fd; member in struct:perf_datafile 72 dfile->pipe_fd = -1; 113 perf_datafile_setpipefd(perf_datafile_t *dfile, int pipe_fd) argument 115 dfile->pipe_fd = pipe_fd; 145 if (!dfile->is_file && dfile->pipe_fd >= 0) { 146 result = perf_os_waituntilreadable(dfile->fd, dfile->pipe_fd,
|
Completed in 977 milliseconds