Searched refs:nbyte (Results 1 - 25 of 26) sorted by relevance

12

/macosx-10.9.5/xnu-2422.115.4/libsyscall/mach/
H A Dpanic.c64 extern int write(int fd, const char* cbuf, int nbyte);
H A Dfprintf_stderr.c41 int write(int fd, const char* cbuf, int nbyte);
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/pwcheck/
H A Dpwcheck.c228 * Keep calling the write() system call with 'fd', 'buf', and 'nbyte'
231 int retry_write(int fd, const char *buf, unsigned int nbyte) argument
236 if (nbyte == 0)
240 n = write(fd, buf, nbyte);
249 if ((unsigned int) n >= nbyte)
253 nbyte -= n;
/macosx-10.9.5/dyld-239.4/src/
H A DdyldSyscallInterface.h43 ssize_t (*pread)(int fd, void* buf, size_t nbyte, off_t offset);
44 ssize_t (*write)(int fd, const void* buf, size_t nbyte);
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/saslauthd/
H A Dtestsaslauthd.c67 * Keep calling the read() system call with 'fd', 'buf', and 'nbyte'
70 int retry_read(int fd, void *inbuf, unsigned nbyte) argument
76 if (nbyte == 0) return 0;
79 n = read(fd, buf, nbyte);
87 if (n >= (int) nbyte) return nread;
90 nbyte -= n;
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/include/
H A Dapr_buckets.h823 * @param nbyte The number of bytes to write
828 const char *str, apr_size_t nbyte);
1359 * @param nbyte The size of the data to insert.
1364 apr_size_t nbyte,
1371 * @param nbyte The size of the data to insert.
1376 apr_size_t nbyte);
1381 * @param nbyte The size of the data to insert.
1386 apr_size_t nbyte,
1393 * @param nbyte The size of the data to insert.
1398 apr_size_t nbyte);
[all...]
/macosx-10.9.5/apr-30/apr-util/apr-util/include/
H A Dapr_buckets.h808 * @param nbyte The number of bytes to write
813 const char *str, apr_size_t nbyte);
1293 * @param nbyte The size of the data to insert.
1298 apr_size_t nbyte,
1305 * @param nbyte The size of the data to insert.
1310 apr_size_t nbyte);
1315 * @param nbyte The size of the data to insert.
1320 apr_size_t nbyte,
1327 * @param nbyte The size of the data to insert.
1332 apr_size_t nbyte);
[all...]
/macosx-10.9.5/apache-786.1/httpd/include/
H A Dutil_filter.h521 * @param nbyte The number of bytes in the data
523 #define ap_fwrite(f, bb, data, nbyte) \
524 apr_brigade_write(bb, ap_filter_flush, f, data, nbyte)
H A Dhttp_protocol.h342 * @param nbyte The number of bytes to send from the buffer
346 AP_DECLARE(int) ap_rwrite(const void *buf, int nbyte, request_rec *r);
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/buckets/
H A Dapr_brigade.c432 const char *str, apr_size_t nbyte)
451 if (nbyte > remaining) {
456 e = apr_bucket_transient_create(str, nbyte, b->bucket_alloc);
461 e = apr_bucket_heap_create(str, nbyte, NULL, b->bucket_alloc);
482 memcpy(buf, str, nbyte);
483 e->length += nbyte;
/macosx-10.9.5/apr-30/apr-util/apr-util/buckets/
H A Dapr_brigade.c419 const char *str, apr_size_t nbyte)
433 if (nbyte > remaining) {
438 e = apr_bucket_transient_create(str, nbyte, b->bucket_alloc);
443 e = apr_bucket_heap_create(str, nbyte, NULL, b->bucket_alloc);
464 memcpy(buf, str, nbyte);
465 e->length += nbyte;
/macosx-10.9.5/tcsh-65/tcsh/
H A Dsh.misc.c630 xread(int fildes, void *buf, size_t nbyte) argument
638 while ((res = read(fildes, buf, nbyte)) == -1 && errno == EINTR);
656 xwrite(int fildes, const void *buf, size_t nbyte) argument
664 while ((res = write(fildes, buf, nbyte)) == -1 && errno == EINTR);
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dsys_generic.c157 user_addr_t bufp, user_size_t nbyte,
160 user_addr_t bufp, user_size_t nbyte,
227 error = dofileread(&context, fp, uap->cbuf, uap->nbyte,
266 error = dofileread(&context, fp, uap->buf, uap->nbyte,
272 uap->fd, uap->nbyte, (unsigned int)((uap->offset >> 32)), (unsigned int)(uap->offset), 0);
355 user_addr_t bufp, user_size_t nbyte, off_t offset, int flags,
363 if (nbyte > INT_MAX)
373 uio_addiov(auio, bufp, nbyte);
375 bytecnt = nbyte;
485 error = dofilewrite(&context, fp, uap->cbuf, uap->nbyte,
354 dofileread(vfs_context_t ctx, struct fileproc *fp, user_addr_t bufp, user_size_t nbyte, off_t offset, int flags, user_ssize_t *retval) argument
573 dofilewrite(vfs_context_t ctx, struct fileproc *fp, user_addr_t bufp, user_size_t nbyte, off_t offset, int flags, user_ssize_t *retval) argument
[all...]
H A Dkern_aio.c239 user_addr_t bufp, user_size_t nbyte,
242 user_addr_t bufp, user_size_t nbyte, off_t offset,
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/lib/
H A Dcheckpw.c512 static int retry_read(int fd, void *buf0, unsigned nbyte, unsigned delta) argument
515 unsigned nleft = nbyte;
534 return nbyte - nleft;
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/edit/
H A Dedit.c923 * put <string> of length <nbyte> onto lookahead stack
928 static int putstack(Edit_t *ep,char string[], register int nbyte, int type) argument
933 int size, offset = ep->e_lookahead + nbyte;
934 *(endp = &p[nbyte]) = 0;
935 endp = &p[nbyte];
992 for(size=offset;size < nbyte;size++)
995 ep->e_lookahead += nbyte-offset;
997 while (nbyte > 0)
999 c = string[--nbyte] & STRIP;
/macosx-10.9.5/emacs-92/emacs/src/
H A Dsysdep.c3361 emacs_read (fildes, buf, nbyte)
3364 unsigned int nbyte;
3368 while ((rtnval = read (fildes, buf, nbyte)) == -1
3375 emacs_write (fildes, buf, nbyte)
3378 unsigned int nbyte;
3384 while (nbyte > 0)
3386 rtnval = write (fildes, buf, nbyte);
3405 nbyte -= rtnval;
4305 sys_read (fildes, buf, nbyte)
4308 unsigned int nbyte;
[all...]
/macosx-10.9.5/dtrace-118.1/libproc/
H A Dlibproc.c632 ssize_t Pread(struct ps_prochandle *P, void *buf, size_t nbyte, mach_vm_address_t address) { argument
637 kern_return_t err = mach_vm_read(CSSymbolicatorGetTask(P->symbolicator), (mach_vm_address_t)address, (mach_vm_size_t)nbyte, &mapped_address, &mapped_size);
639 bytes_read = nbyte;
640 memcpy(buf, (void*)mapped_address, nbyte);
/macosx-10.9.5/smb-697.95.1/kernel/sys5/kern/
H A Dsubr_mchain.c517 user_size_t nbyte = size; local
529 uio_addiov(auio, bufp, nbyte);
880 user_size_t nbyte = size; local
892 uio_addiov(auio, bufp, nbyte);
/macosx-10.9.5/apache-786.1/httpd/server/
H A Dprotocol.c1516 AP_DECLARE(int) ap_rwrite(const void *buf, int nbyte, request_rec *r) argument
1521 if (buffer_output(r, buf, nbyte) != APR_SUCCESS)
1524 return nbyte;
/macosx-10.9.5/libclosure-63/objectTests/
H A Dtest.pl142 ssize_t hacked_write(int fildes, const void *buf, size_t nbyte)
148 return write(fildes, buf, nbyte);
/macosx-10.9.5/objc4-551.1/test/
H A Dtest.pl142 ssize_t hacked_write(int fildes, const void *buf, size_t nbyte)
148 return write(fildes, buf, nbyte);
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/plugins/
H A Dntlm.c729 * Keep calling the read() system call with 'fd', 'buf', and 'nbyte'
732 static int retry_read(SOCKET fd, char *buf0, unsigned nbyte) argument
738 if (nbyte == 0) return 0;
742 n = recv (fd, buf, nbyte, 0);
752 if (n >= (int) nbyte) return nread;
755 nbyte -= n;
/macosx-10.9.5/Heimdal-323.92.1/appl/telnet/telnet/
H A Dcommands.c193 int nbyte; /* Number of bytes to send this command */ member in struct:sendlist
277 count += s->nbyte;
/macosx-10.9.5/remote_cmds-41.90.1/telnet.tproj/
H A Dcommands.c291 int nbyte; /* Number of bytes to send this command */ member in struct:sendlist
375 count += s->nbyte;

Completed in 208 milliseconds

12