Home
last modified time | relevance | path

Searched refs:block_read (Results 1 – 12 of 12) sorted by relevance

/netbsd/external/gpl2/diffutils/dist/lib/
H A Dcmpbuf.h22 size_t block_read (int, char *, size_t);
H A Dcmpbuf.c86 block_read (int fd, char *buf, size_t nbytes) in block_read() function
/netbsd/external/gpl2/diffutils/dist/src/
H A Dcmp.c408 size_t r = block_read (file_desc[f], buf0, bytes_to_read); in cmp()
432 read0 = block_read (file_desc[0], buf0, bytes_to_read); in cmp()
435 read1 = block_read (file_desc[1], buf1, bytes_to_read); in cmp()
H A Dio.c78 size_t s = block_read (current->desc, in file_block_read()
H A Ddiff3.c1229 size_t bytes = block_read (fd, diff_result + total, bytes_to_read); in read_diff()
/netbsd/external/gpl2/xcvs/dist/src/
H A Dfilesubr.c570 block_read (int fd, char *buf, size_t nchars) in block_read() function
676 read1 = block_read (fd1, buf1, buf_size); in xcmp()
680 read2 = block_read (fd2, buf2, buf_size); in xcmp()
H A DChangeLog-93952206 (block_read): New function, taken from GNU cmp and slightly
/netbsd/external/bsd/nsd/dist/
H A Dnsd.h408 ssize_t block_read(struct nsd* nsd, int s, void* p, ssize_t sz, int timeout);
H A Dipc.c330 if(block_read(nsd, fd, &s, sizeof(s), FINAL_STATS_TIMEOUT)!=sizeof(s)) { in read_child_stats()
770 if(block_read(NULL, handler->ev_fd, &xfrd->reload_pid, in xfrd_handle_ipc_read()
H A Dserver.c1733 if(block_read(nsd, xfrd_sock, &cmd, sizeof(cmd), -1) != sizeof(cmd) || in server_send_soa_xfrd()
2120 block_read(struct nsd* nsd, int s, void* p, ssize_t sz, int timeout) in block_read() function
2194 if(block_read(nsd, cmdsocket, &cmd, sizeof(cmd), 0) == sizeof(cmd)) { in reload_process_tasks()
2241 if(block_read(nsd, cmdfd, &s, sizeof(s), in reload_do_stats()
2252 if(block_read(nsd, cmdfd, p++, sizeof(stc_type), 1)!= in reload_do_stats()
2386 if(block_read(nsd, cmdsocket, &cmd, sizeof(cmd), 0) == sizeof(cmd)) { in server_reload()
2405 ret = block_read(nsd, cmdsocket, &cmd, sizeof(cmd), in server_reload()
4903 (void)block_read(NULL, in send_children_command()
H A Dxfrd.c748 if(block_read(&nsd, socket, &cmd, sizeof(cmd), -1) != sizeof(cmd) || in xfrd_receive_soa()
755 if(block_read(NULL, socket, &xfrd->reload_pid, sizeof(pid_t), -1) in xfrd_receive_soa()
780 if(block_read(NULL, socket, &cmd, sizeof(cmd), -1) != in xfrd_receive_soa()
/netbsd/external/gpl2/diffutils/dist/
H A DChangeLog22 (block_read): Do not attempt to read more than SSIZE_MAX bytes, as the
25 * src/cmp.c (cmp): Use block_read instead of read, to work
267 (block_read): Accommodate ancient AIX hosts that set errno to EINTR
1150 (block_read): Don't assume that int is no wider than size_t.
1339 Move block_read into cmpbuf.c.
1371 * cmpbuf.c (block_read): Moved here from cmp.c.
1373 * cmpbuf.h (block_read): New decl.
2091 (block_read): Coalesce `bp += nread's.