Home
last modified time | relevance | path

Searched refs:PIPE_BUF (Results 1 – 15 of 15) sorted by relevance

/minix/minix/tests/
H A Dtest76.c116 if ((buf = malloc(PIPE_BUF * 2)) == NULL) e(1); in test76b()
135 if (write(pfd[1], buf, PIPE_BUF * 2) != PIPE_BUF) e(5); in test76b()
141 if (read(pfd[0], buf, PIPE_BUF) != PIPE_BUF) e(6); in test76b()
144 if (write(pfd[1], buf, PIPE_BUF) != PIPE_BUF) e(7); in test76b()
156 if (read(pfd[0], buf, PIPE_BUF) != PIPE_BUF) e(11); in test76b()
164 if (read(pfd[0], buf, PIPE_BUF) >= 0) e(13); in test76b()
248 if ((pbuf = malloc(PIPE_BUF - 1)) == NULL) e(4); in test76d()
250 if (write(pfd[1], pbuf, PIPE_BUF - 1) != PIPE_BUF - 1) e(5); in test76d()
H A Dtest68.c299 char buf[PIPE_BUF + 2]; in test_pipe_partial_write()
H A Dtest38.c336 if (PIPE_BUF < 5) e(132); in test38a()
/minix/sys/sys/
H A Dsyslimits.h66 #define PIPE_BUF 32768 /* max bytes for atomic pipe writes */ macro
68 #define PIPE_BUF 512 /* max bytes for atomic pipe writes */ macro
/minix/minix/servers/vfs/
H A Dpipe.c243 if (pos + bytes > PIPE_BUF) { in pipe_check()
245 if (bytes <= PIPE_BUF) { in pipe_check()
251 bytes = PIPE_BUF - pos; in pipe_check()
264 if (bytes > PIPE_BUF) { in pipe_check()
266 bytes = PIPE_BUF - pos; in pipe_check()
/minix/minix/fs/pfs/
H A Dpfs.c146 if (isfifo && (data = malloc(PIPE_BUF)) == NULL) in pfs_newnode()
229 if (bytes > PIPE_BUF) in pfs_read()
265 if (rip->i_size + bytes > PIPE_BUF) in pfs_write()
352 statbuf->st_blksize = PIPE_BUF; in pfs_stat()
/minix/minix/lib/libc/sys/
H A Dfpathconf.c47 return( (long) PIPE_BUF);
/minix/external/bsd/file/dist/src/
H A Dmagic.c71 #ifndef PIPE_BUF
74 #define PIPE_BUF pathconf(".", _PC_PIPE_BUF) macro
76 #define PIPE_BUF 512 macro
452 if (r < PIPE_BUF) break; in file_or_fd()
/minix/bin/sh/
H A Dredir.c71 #ifndef PIPE_BUF
74 # define PIPESIZE PIPE_BUF
/minix/crypto/external/bsd/openssl/dist/demos/easy_tls/
H A Deasy-tls.c115 #if TLS_INFO_SIZE > PIPE_BUF
116 # if PIPE_BUF < 512
/minix/tests/fs/puffs/h_dtfs/
H A Ddtfs_vnops.c542 *retval = PIPE_BUF; in dtfs_node_pathconf()
/minix/sys/fs/cd9660/
H A Dcd9660_vnops.c766 *ap->a_retval = PIPE_BUF; in cd9660_pathconf()
/minix/sys/ufs/lfs/
H A Dulfs_vnops.c1058 *ap->a_retval = PIPE_BUF; in ulfs_pathconf()
/minix/sys/ufs/ufs/
H A Dufs_vnops.c1666 *ap->a_retval = PIPE_BUF; in ufs_pathconf()
/minix/sys/fs/udf/
H A Dudf_vnops.c1317 *ap->a_retval = PIPE_BUF; in udf_pathconf()