/freebsd/contrib/netbsd-tests/fs/common/ |
H A D | fstest_puffs.c | 59 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 D | pcsc.c | 18 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 D | socket.c | 66 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 D | boot1.S | 40 .globl xread 90 xread: push %ss # Address label 95 xread.1: # Starting 228 callw xread.1 # disk
|
/freebsd/contrib/tcsh/ |
H A D | tw.help.c | 144 while ((len = xread(f, buf, sizeof(buf))) > 0) in do_help()
|
H A D | ed.inputl.c | 247 if (xread(SHIN, &tch, 1) < 0) { in Inputl() 786 while ((num_read = xread(SHIN, cbuf + cbp, 1)) == -1) { in GetNextChar()
|
H A D | sh.decls.h | 299 extern ssize_t xread (int, void *, size_t);
|
H A D | sh.misc.c | 684 xread(int fildes, void *buf, size_t nbyte) in xread() function
|
H A D | tc.func.c | 661 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 D | tc.who.c | 290 while (xread(utmpfd, &utmp, sizeof utmp) == sizeof utmp) {
|
H A D | sh.file.c | 693 while ((num_read = xread(SHIN, tinputline, BUFSIZE)) > 0) {/*FIXBUF*/ in tenex()
|
H A D | ed.init.c | 627 chrs = xread(SHIN, buf, min(chrs, BUFSIZE - 1)); in Load_input_line()
|
H A D | sh.h | 75 # define force_read xread
|
H A D | sh.exec.c | 409 if ((nread = xread(fd, pref, 2)) == 2) { in texec()
|
H A D | tc.os.c | 839 icnt = xread(pvec[0], tibuf, sizeof(tibuf)); in dobs2cmd()
|
H A D | sh.lex.c | 1583 r = xread(fildes, cbuf + partial, len); in wide_read()
|
H A D | tw.parse.c | 1468 (void) xread(SHIN, &tc, 1); in tw_list_items()
|
/freebsd/contrib/lib9p/pytest/ |
H A D | p9conn.py | 226 size_field = self.xread(self.size_coder.size) 245 data = self.xread(size) 248 def xread(self, nbytes): member in P9SockIO
|