| /mirbsd/src/usr.sbin/httpd/src/main/ |
| D | buff.c | 121 static int ap_read(BUFF *fb, void *buf, int nbyte) in ap_read() argument 125 if (!ap_hook_call("ap::buff::read", &rv, fb, buf, nbyte)) in ap_read() 126 rv = read(fb->fd_in, buf, nbyte); in ap_read() 131 static ap_inline int buff_read(BUFF *fb, void *buf, int nbyte) in buff_read() argument 135 rv = ap_read(fb, buf, nbyte); in buff_read() 140 static int ap_write(BUFF *fb, const void *buf, int nbyte) in ap_write() argument 144 if (!ap_hook_call("ap::buff::write", &rv, fb, buf, nbyte)) in ap_write() 145 rv = write(fb->fd, buf, nbyte); in ap_write() 149 static ap_inline int buff_write(BUFF *fb, const void *buf, int nbyte) in buff_write() argument 154 fb->filter_callback(fb, buf, nbyte); in buff_write() [all …]
|
| D | http_protocol.c | 2528 API_EXPORT(int) ap_rwrite(const void *buf, int nbyte, request_rec *r) in ap_rwrite() argument 2535 n = ap_bwrite(r->connection->client, buf, nbyte); in ap_rwrite()
|
| /mirbsd/src/lib/libc/sys/ |
| D | pwrite.c | 43 pwrite(int fd, const void *buf, size_t nbyte, off_t offset) in pwrite() argument 46 return (__syscall((quad_t)SYS_pwrite, fd, buf, nbyte, 0, offset)); in pwrite()
|
| D | pread.c | 43 pread(int fd, void *buf, size_t nbyte, off_t offset) in pread() argument 46 return (__syscall((quad_t)SYS_pread, fd, buf, nbyte, 0, offset)); in pread()
|
| /mirbsd/src/sys/kern/ |
| D | sys_generic.c | 96 return (dofileread(p, fd, fp, SCARG(uap, buf), SCARG(uap, nbyte), 101 dofileread(p, fd, fp, buf, nbyte, offset, retval) in dofileread() argument 106 size_t nbyte; 118 aiov.iov_len = nbyte; 121 auio.uio_resid = nbyte; 307 return (dofilewrite(p, fd, fp, SCARG(uap, buf), SCARG(uap, nbyte), 312 dofilewrite(p, fd, fp, buf, nbyte, offset, retval) in dofilewrite() argument 317 size_t nbyte; 329 aiov.iov_len = nbyte; 332 auio.uio_resid = nbyte;
|
| D | vfs_syscalls.c | 2811 return (dofileread(p, fd, fp, SCARG(uap, buf), SCARG(uap, nbyte), 2893 return (dofilewrite(p, fd, fp, SCARG(uap, buf), SCARG(uap, nbyte),
|
| /mirbsd/src/usr.sbin/httpd/src/include/ |
| D | buff.h | 146 API_EXPORT(int) ap_bread(BUFF *fb, void *buf, int nbyte); 150 API_EXPORT(int) ap_bwrite(BUFF *fb, const void *buf, int nbyte);
|
| D | http_protocol.h | 155 API_EXPORT(int) ap_rwrite(const void *buf, int nbyte, request_rec *r);
|
| /mirbsd/src/gnu/usr.bin/lynx/WWW/Library/Implementation/ |
| D | HTTCP.h | 105 unsigned nbyte);
|
| D | HTTCP.c | 2190 unsigned nbyte) in HTDoRead() argument 2290 result = SOCKET_READ(fildes, buf, nbyte); in HTDoRead() 2304 while ((result = (int) SOCKET_READ(fildes, buf, nbyte)) == -1) { in HTDoRead() 2315 result = SOCKET_READ(fildes, buf, nbyte); in HTDoRead()
|
| /mirbsd/src/sys/compat/linux/ |
| D | linux_file.c | 880 SCARG(&pra, nbyte) = SCARG(uap, nbyte); 905 SCARG(&pra, nbyte) = SCARG(uap, nbyte);
|
| D | linux_syscallargs.h | 480 syscallarg(size_t) nbyte; 487 syscallarg(size_t) nbyte;
|
| D | linux_termios.c | 703 SCARG(&wa, nbyte) = 1;
|
| /mirbsd/src/sys/sys/ |
| D | syscallargs.h | 33 syscallarg(size_t) nbyte; 39 syscallarg(size_t) nbyte; 725 syscallarg(size_t) nbyte; 733 syscallarg(size_t) nbyte;
|
| /mirbsd/src/sys/compat/openbsd/ |
| D | openbsd_syscallargs.h | 33 syscallarg(size_t) nbyte; 39 syscallarg(size_t) nbyte; 725 syscallarg(size_t) nbyte; 733 syscallarg(size_t) nbyte;
|
| /mirbsd/src/usr.bin/xlint/llib/ |
| D | llib-lposix | 250 ssize_t (read)(int fildes, void *buf, size_t nbyte); 383 ssize_t (write)(int fildes, const void *buf, size_t nbyte);
|
| /mirbsd/src/usr.bin/telnet/ |
| D | commands.c | 225 int nbyte; /* Number of bytes to send this command */ member 310 count += s->nbyte;
|