HomeSort by relevance Sort by last modified time
    Searched refs:readall (Results 1 - 25 of 42) sorted by null

1 2

  /external/toybox/toys/posix/
cmp.c 49 len1 = readall(TT.fd, toybuf, size);
50 len2 = readall(fd, buf2, size);
expand.c 39 len = readall(fd, toybuf, sizeof(toybuf));
cpio.c 117 if (!(size =readall(afd, toybuf, 110))) break;
268 if (nlen != readall(fd, toybuf, nlen))
tail.c 55 line->len = readall(fd, line->data, len);
od.c 209 len = readall(fd, buf, len);
  /external/toybox/toys/pending/
dumpleases.c 53 (readall(fd, &lease_struct, sizeof(lease_struct)))) {
logger.c 66 toybuf[readall(0, toybuf, 4096-1)] = '\0';
getty.c 188 size = readall(STDIN_FILENO, TT.buff, sizeof(TT.buff)-1);
227 while ((size = readall(fd, buff, 1)) > 0) {
231 if (readall(fd, buff, 1) <= 0) perror_exit("readall");
317 while (readall(STDIN_FILENO, &ch, 1) != 1)
bootchartd.c 86 if ((len = readall(fd, toybuf, sizeof(toybuf)-1)) < 0) {
233 if ((len = readall(kcmd_line_fd, toybuf, sizeof(toybuf)-1)) > 0) {
tftpd.c 148 len = readall(fd, ptr, blksize);
telnetd.c 165 while ((size = readall(fd, &ch, 1)) > 0) {
167 if (readall(fd, &ch, 1) <= 0) perror_exit("readall!");
compress.c 360 len = readall(TT.infd, data+(TT.len&32768), 32768);
tftp.c 207 nbytesread = readall(fd, &packet[TFTP_DATAHEADERSIZE], TFTP_DATASIZE);
tar.c 536 if (readall(tar->src_fd, buf, size) != size) error_exit("short read");
592 i = readall(tar_hdl->src_fd, &tar, 512);
  /external/toybox/toys/net/
rfkill.c 75 while (sizeof(rfevent) == readall(fd, &rfevent, sizeof(rfevent))) {
  /external/toybox/toys/other/
inotifyd.c 82 len = readall(fds.fd, buf, len);
blkid.c 71 len = readall(fd, toybuf, sizeof(toybuf));
xxd.c 49 while (0<(len = readall(fd, toybuf,
acpi.c 57 len = readall(fd, toybuf, sizeof(toybuf));
  /external/toybox/toys/lsb/
mount.c 240 len = readall(pipe, toybuf, sizeof(toybuf)-1);
  /external/toybox/lib/
lib.c 106 ssize_t readall(int fd, void *buf, size_t len) function
151 or = readall(fd, libbuf, try);
485 rlen = readall(fd, rbuf, len);
lib.h 188 ssize_t readall(int fd, void *buf, size_t len);
xwrap.c 434 if (len != readall(fd, buf, len)) perror_exit("xreadall");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_fileio.py 226 f.readall()
  /external/python/cpython2/Lib/test/
test_fileio.py 129 'read', 'readall', 'readline', 'readlines',
264 f.readall()

Completed in 317 milliseconds

1 2