Searched refs:bytesread (Results 1 - 15 of 15) sorted by relevance

/macosx-10.10.1/apr-32/apr/apr/file_io/os2/
H A Dreadwrite.c30 ULONG bytesread; local
59 ULONG bytesread; local
61 thefile->bufsize, &bytesread);
63 if (bytesread == 0) {
69 thefile->dataRead = bytesread;
93 rc = DosRead(thefile->filedes, buf, *nbytes, &bytesread);
99 rc = DosRead(thefile->filedes, buf, *nbytes, &bytesread);
112 *nbytes = bytesread;
114 if (bytesread == 0) {
252 apr_size_t bytesread; local
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dcoalition.h55 uint64_t bytesread; member in struct:coalition_resource_usage
/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dcoalition.h110 uint64_t bytesread; member in struct:coalition_resource_usage
H A Dcoalition.c79 uint64_t bytesread; member in struct:coalition
172 uint64_t bytesread = coal->bytesread; local
183 bytesread += task->task_io_stats->disk_reads.size;
219 cru_out->bytesread = bytesread;
604 coal->bytesread += task->task_io_stats->disk_reads.size;
/macosx-10.10.1/apr-32/apr/apr/file_io/win32/
H A Dreadwrite.c36 DWORD bytesread = 0; local
77 &bytesread, file->pOverlapped)) {
112 &bytesread, TRUE)) {
133 if (rv == APR_SUCCESS && bytesread == 0)
137 file->filePtr += bytesread;
139 *nbytes = bytesread;
H A Dopen.c230 DWORD bytesread = 0; local
245 &bytesread, file->pOverlapped)) {
267 &bytesread, TRUE))
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/lib/
H A Dsaslutil.c338 ssize_t bytesread = 0; local
342 bytesread = read(fd, buf, bytesleft);
343 if(bytesread == -1 && errno == EINTR) continue;
344 else if(bytesread <= 0) break;
345 bytesleft -= bytesread;
346 buf += bytesread;
/macosx-10.10.1/file_cmds-242/gzip/
H A Dunpack.c152 ssize_t bytesread; /* Bytes read from the file */ local
160 bytesread = read(in, hdr + prelen, PACK_HEADER_LENGTH - prelen);
161 if (bytesread < 0)
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/tests/
H A Dfilescan.test74 list bytesread $matchInfo(bytesread)
75 } 0 [list bytesread [keylget scanInfo bytesread]]
119 keylset scanInfo bytesread $bytesRead
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/nssov/nss-pam-ldapd/
H A Dtio.c73 size_t bytesread; member in struct:tio_fileinfo
172 fp->bytesread=0;
305 fp->bytesread+=rv;
473 fprintf(stderr,"DEBUG_TIO_STATS READ=%d WRITTEN=%d\n",fp->bytesread,fp->byteswritten);
/macosx-10.10.1/apr-32/apr/apr/file_io/unix/
H A Dreadwrite.c55 int bytesread = read(thefile->filedes, thefile->buffer, local
57 if (bytesread == 0) {
62 else if (bytesread == -1) {
66 thefile->dataRead = bytesread;
/macosx-10.10.1/xnu-2782.1.97/bsd/hfs/
H A Dhfs_readwrite.c245 off_t bytesread; local
247 bytesread = start_resid - uio_resid(uio);
250 if ((fp->ff_bytesread + bytesread) > 0x00000000ffffffff) {
261 fp->ff_bytesread = bytesread;
265 fp->ff_bytesread += bytesread;
4459 int bytesread; local
4463 bytesread = fp->ff_size;
4465 bytesread = xsize;
4468 if ((fp->ff_bytesread + bytesread) > 0x00000000ffffffff && cp->c_lockowner != current_thread()) {
4479 fp->ff_bytesread = bytesread;
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tdom/tdom/generic/
H A Dtclexpat.c827 size_t bytesread; local
899 bytesread = Tcl_Read (channel, buf, sizeof (buf));
900 done = bytesread < sizeof (buf);
902 result = XML_Parse (expat->parser, buf, bytesread, done);
904 if (!XML_Parse (expat->parser, buf, bytesread, done)) {
934 bytesread = Tcl_Read (channel, buf, sizeof (buf));
935 done = bytesread < sizeof (buf);
937 result = XML_Parse (expat->parser, buf, bytesread, done);
939 if (!XML_Parse (expat->parser, buf, bytesread, done)) {
/macosx-10.10.1/nano-12/src/
H A Dtext.c1938 size_t pipe_buff_size, read_buff_size, read_buff_read, bytesread; local
2048 while ((bytesread = read(uniq_fd[0], read_buff_ptr,
2050 read_buff_read += bytesread;
/macosx-10.10.1/xnu-2782.1.97/bsd/vfs/
H A Dvfs_syscalls.c7534 int bytesread; local
7563 bytesread = bufsize - uio_resid(auio);
7570 while (error == 0 && (char *)dep < ((char *)bufptr + bytesread)) {
7606 getdirentries_common(int fd, user_addr_t bufp, user_size_t bufsize, ssize_t *bytesread, argument
7700 *bytesread = bufsize - uio_resid(auio);
7711 ssize_t bytesread; local
7715 error = getdirentries_common(uap->fd, uap->buf, uap->count, &bytesread, &offset, 0);
7725 *retval = bytesread;
7734 ssize_t bytesread; local
7738 error = getdirentries_common(uap->fd, uap->buf, uap->bufsize, &bytesread,
[all...]

Completed in 329 milliseconds