Home
last modified time | relevance | path

Searched refs:pipesize (Results 1 – 4 of 4) sorted by relevance

/external/iputils/
Dping_common.h171 extern int pipesize;
242 if ((int)diff+1 > pipesize) in acknowledge()
243 pipesize = (int)diff+1; in acknowledge()
Dping_common.c56 int pipesize = -1; variable
524 if ((preload < screen_width && pipesize < screen_width) || in pinger()
1051 if (pipesize > 1) { in finish()
1052 printf("%spipe %d", comma, pipesize); in finish()
/external/libfuse/lib/
Dfuse_lowlevel.c732 size_t pipesize; in fuse_send_data_iov() local
772 pipesize = pagesize * (iov_count + buf->count + 1) + out->len; in fuse_send_data_iov()
774 if (llp->size < pipesize) { in fuse_send_data_iov()
776 res = fcntl(llp->pipe[0], F_SETPIPE_SZ, pipesize); in fuse_send_data_iov()
786 if (llp->size < pipesize) in fuse_send_data_iov()
/external/python/cpython2/Modules/
Dposixmodule.c4547 popen(const char *command, const char *mode, int pipesize, int *err) in popen() argument
4566 if ((rc = DosCreatePipe(&pipeh[0], &pipeh[1], pipesize)) != NO_ERROR) { in popen()