Home
last modified time | relevance | path

Searched refs:xread (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/netbsd-tests/fs/common/
H A Dfstest_puffs.c59 xread(int fd, void *vp, size_t n) in xread() function
184 n = xread(comfd, buf+off, toread); in writeshovel()
290 if ((n = xread(sv[1], &len, sizeof(len))) != sizeof(len)) in donewfs()
294 if ((size_t)xread(sv[1], args->pta_dir, len) != len) in donewfs()
296 if (xread(sv[1], &len, sizeof(len)) != sizeof(len)) in donewfs()
300 if ((size_t)xread(sv[1], args->pta_dev, len) != len) in donewfs()
302 if (xread(sv[1], &mntflags, sizeof(mntflags)) != sizeof(mntflags)) in donewfs()
304 if (xread(sv[1], &args->pta_pargslen, sizeof(args->pta_pargslen)) in donewfs()
310 if (xread(sv[1], args->pta_pargs, args->pta_pargslen) in donewfs()
313 if (xread(sv[1], pflags, sizeof(*pflags)) != sizeof(*pflags)) in donewfs()
/freebsd/contrib/libfido2/fuzz/
H A Dpcsc.c18 static int (*xread)(void *, u_char *, size_t, int); variable
132 (n = xread(ioh, pbRecvBuffer, *pcbRecvLength, -1)) == -1) in __wrap_SCardTransmit()
150 xread = read_f; in set_pcsc_io_functions()
/freebsd/contrib/lib9p/transport/
H A Dsocket.c66 static ssize_t xread(int, void *, size_t);
230 ret = xread(fd, buffer, sizeof(uint32_t)); in l9p_socket_readmsg()
250 ret = xread(fd, (char *)buffer + sizeof(uint32_t), toread); in l9p_socket_readmsg()
316 xread(int fd, void *buf, size_t count) in xread() function
/freebsd/stand/i386/boot2/
H A Dboot1.S40 .globl xread
90 xread: push %ss # Address label
95 xread.1: # Starting
228 callw xread.1 # disk
/freebsd/contrib/tcsh/
H A Dtw.help.c144 while ((len = xread(f, buf, sizeof(buf))) > 0) in do_help()
H A Ded.inputl.c247 if (xread(SHIN, &tch, 1) < 0) { in Inputl()
786 while ((num_read = xread(SHIN, cbuf + cbp, 1)) == -1) { in GetNextChar()
H A Dsh.decls.h299 extern ssize_t xread (int, void *, size_t);
H A Dsh.misc.c684 xread(int fildes, void *buf, size_t nbyte) in xread() function
H A Dtc.func.c661 if (xread(fd, &c, 1) < 1 || c == '\n') in xgetpass()
1802 if (xread(fd, lbuf, HACKBUFSZ) <= 0) in hashbang()
2052 res = xread(fds[0], buf, sizeof(buf));
H A Dtc.who.c290 while (xread(utmpfd, &utmp, sizeof utmp) == sizeof utmp) {
H A Dsh.file.c693 while ((num_read = xread(SHIN, tinputline, BUFSIZE)) > 0) {/*FIXBUF*/ in tenex()
H A Ded.init.c627 chrs = xread(SHIN, buf, min(chrs, BUFSIZE - 1)); in Load_input_line()
H A Dsh.h75 # define force_read xread
H A Dsh.exec.c409 if ((nread = xread(fd, pref, 2)) == 2) { in texec()
H A Dtc.os.c839 icnt = xread(pvec[0], tibuf, sizeof(tibuf)); in dobs2cmd()
H A Dsh.lex.c1583 r = xread(fildes, cbuf + partial, len); in wide_read()
H A Dtw.parse.c1468 (void) xread(SHIN, &tc, 1); in tw_list_items()
/freebsd/contrib/lib9p/pytest/
H A Dp9conn.py226 size_field = self.xread(self.size_coder.size)
245 data = self.xread(size)
248 def xread(self, nbytes): member in P9SockIO