Searched refs:thepipe (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/apr/file_io/unix/
H A Dpipe.c36 static apr_status_t pipeblock(apr_file_t *thepipe) argument
41 fd_flags = fcntl(thepipe->filedes, F_GETFL, 0);
52 if (fcntl(thepipe->filedes, F_SETFL, fd_flags) == -1) {
59 if (ioctl(thepipe->filedes, FIONBIO, &on, sizeof(on)) < 0) {
68 thepipe->blocking = BLK_ON;
72 static apr_status_t pipenonblock(apr_file_t *thepipe) argument
75 int fd_flags = fcntl(thepipe->filedes, F_GETFL, 0);
87 if (fcntl(thepipe->filedes, F_SETFL, fd_flags) == -1) {
95 if (ioctl(thepipe->filedes, FIONBIO, &on, sizeof(on)) < 0) {
104 thepipe
[all...]
/freebsd-11-stable/contrib/apr/include/
H A Dapr_file_io.h772 * @param thepipe The pipe we are getting a timeout for.
775 APR_DECLARE(apr_status_t) apr_file_pipe_timeout_get(apr_file_t *thepipe,
780 * @param thepipe The pipe we are setting a timeout on.
784 APR_DECLARE(apr_status_t) apr_file_pipe_timeout_set(apr_file_t *thepipe,

Completed in 67 milliseconds