/third_party/toybox/toys/posix/ |
D | cmp.c | 47 len1 = readall(TT.fd, toybuf, size); 48 len2 = readall(fd, buf2, size);
|
D | cpio.c | 115 if (!(size =readall(afd, toybuf, 110))) break; in cpio_main() 266 if (nlen != readall(fd, toybuf, nlen)) in cpio_main()
|
D | logger.c | 88 toybuf[readall(0, toybuf, sizeof(toybuf)-1)] = 0; in logger_main()
|
D | expand.c | 39 len = readall(fd, toybuf, sizeof(toybuf)); in do_expand()
|
D | tail.c | 47 line->len = readall(fd, line->data, len); in get_chunk()
|
D | od.c | 209 len = readall(fd, buf, len); in do_od()
|
/third_party/toybox/toys/pending/ |
D | getty.c | 188 size = readall(STDIN_FILENO, TT.buff, sizeof(TT.buff)-1); in sense_baud() 227 while ((size = readall(fd, buff, 1)) > 0) { in write_issue() 231 if (readall(fd, buff, 1) <= 0) perror_exit("readall"); in write_issue() 315 while (readall(STDIN_FILENO, &ch, 1) != 1) in getty_main()
|
D | bootchartd.c | 70 if ((len = readall(fd, toybuf, sizeof(toybuf)-1)) < 0) { in dump_proc_data() 194 if ((len = readall(kcmd_line_fd, toybuf, sizeof(toybuf)-1)) > 0) { in stop_logging()
|
D | dumpleases.c | 53 (readall(fd, &lease_struct, sizeof(lease_struct)))) { in dumpleases_main()
|
D | hexdump.c | 86 0 < (TT.len = readall(fd, toybuf, in do_hexdump()
|
D | telnetd.c | 131 while ((size = readall(fd, &ch, 1)) > 0) { in write_issue() 133 if (readall(fd, &ch, 1) <= 0) perror_exit("readall!"); in write_issue()
|
D | tftpd.c | 163 len = readall(fd, ptr, blksize); in do_action()
|
/third_party/libfuse/example/ |
D | hello_ll_uds.c | 244 static ssize_t readall(int fd, void *buf, size_t len) { in readall() function 263 int res = readall(fd, buf, sizeof(struct fuse_in_header)); in stream_read() 274 res = readall(fd, (char *)buf + sizeof(struct fuse_in_header), in stream_read()
|
/third_party/python/Lib/ |
D | _compression.py | 74 return self.readall() 113 def readall(self): member in DecompressReader
|
D | _pyio.py | 655 return self.readall() 663 def readall(self): member in RawIOBase 1108 chunk = self.raw.readall() 1672 return self.readall() 1678 def readall(self): member in FileIO
|
/third_party/toybox/toys/net/ |
D | rfkill.c | 75 while (sizeof(rfevent) == readall(fd, &rfevent, sizeof(rfevent))) { in rfkill_main()
|
/third_party/toybox/toys/other/ |
D | inotifyd.c | 82 len = readall(fds.fd, buf, len); in inotifyd_main()
|
D | sha3sum.c | 74 len = span += readall(fd, (ss = toybuf)+span, sizeof(toybuf)-span); in do_sha3sum()
|
D | acpi.c | 57 len = readall(fd, toybuf, sizeof(toybuf)); in acpi_callback()
|
D | xxd.c | 53 while (0<(len = readall(fd, toybuf,
|
D | blkid.c | 97 len = readall(fd, toybuf, sizeof(toybuf)); in do_blkid()
|
/third_party/python/Lib/test/ |
D | test_winconsoleio.py | 197 a, b = stdin.read(1), stdin.readall()
|
/third_party/toybox/porting/liteos_a/toys/lsb/ |
D | mount.c | 151 len = readall(pipe, toybuf, sizeof(toybuf)-1); in tortoise()
|
/third_party/python/Modules/_io/ |
D | bufferedio.c | 1529 PyObject *res = NULL, *data = NULL, *tmp = NULL, *chunks = NULL, *readall; in _bufferedreader_read_all() local 1549 if (_PyObject_LookupAttr(self->raw, _PyIO_str_readall, &readall) < 0) { in _bufferedreader_read_all() 1552 if (readall) { in _bufferedreader_read_all() 1553 tmp = _PyObject_CallNoArg(readall); in _bufferedreader_read_all() 1554 Py_DECREF(readall); in _bufferedreader_read_all()
|
/third_party/toybox/lib/ |
D | lib.c | 110 ssize_t readall(int fd, void *buf, size_t len) in readall() function 156 or = readall(fd, libbuf, try); in lskip() 557 rlen = readall(fd, rbuf, len); in readfileat()
|