/third_party/toybox/toys/posix/ |
H A D | cmp.c | 47 len1 = readall(TT.fd, toybuf, size); in do_cmp() 48 len2 = readall(fd, buf2, size); in do_cmp()
|
H A D | expand.c | 39 len = readall(fd, toybuf, sizeof(toybuf)); in do_expand()
|
H A D | logger.c | 88 toybuf[readall(0, toybuf, sizeof(toybuf)-1)] = 0; in logger_main()
|
H A D | cpio.c | 115 if (!(size =readall(afd, toybuf, 110))) break; in cpio_main() 266 if (nlen != readall(fd, toybuf, nlen)) in cpio_main()
|
H A D | tail.c | 47 line->len = readall(fd, line->data, len); in get_chunk()
|
H A D | od.c | 209 len = readall(fd, buf, len); in do_od()
|
/third_party/toybox/toys/pending/ |
H A 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()
|
H A 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()
|
H A D | dumpleases.c | 53 (readall(fd, &lease_struct, sizeof(lease_struct)))) { in dumpleases_main()
|
H A D | hexdump.c | 86 0 < (TT.len = readall(fd, toybuf, in do_hexdump()
|
H A 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()
|
H A D | tftpd.c | 163 len = readall(fd, ptr, blksize); in do_action()
|
/third_party/libfuse/example/ |
H A 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/ |
H A D | _compression.py | 74 return self.readall() 113 def readall(self): member in DecompressReader
|
H A D | _pyio.py | 646 return self.readall() 654 def readall(self): member in RawIOBase 1098 if hasattr(self.raw, 'readall'): 1099 chunk = self.raw.readall() 1663 return self.readall() 1669 def readall(self): member in FileIO
|
/third_party/toybox/toys/net/ |
H A D | rfkill.c | 75 while (sizeof(rfevent) == readall(fd, &rfevent, sizeof(rfevent))) { in rfkill_main()
|
/third_party/toybox/toys/other/ |
H A D | inotifyd.c | 82 len = readall(fds.fd, buf, len); in inotifyd_main()
|
H A D | acpi.c | 57 len = readall(fd, toybuf, sizeof(toybuf)); in acpi_callback()
|
H A D | sha3sum.c | 74 len = span += readall(fd, (ss = toybuf)+span, sizeof(toybuf)-span); in do_sha3sum()
|
H A D | xxd.c | 53 while (0<(len = readall(fd, toybuf, in do_xxd()
|
H A D | blkid.c | 97 len = readall(fd, toybuf, sizeof(toybuf)); in do_blkid()
|
/third_party/python/Modules/_io/ |
H A D | bufferedio.c | 1513 PyObject *res = NULL, *data = NULL, *tmp = NULL, *chunks = NULL, *readall; in _bufferedreader_read_all() local 1533 if (_PyObject_LookupAttr(self->raw, &_Py_ID(readall), &readall) < 0) { in _bufferedreader_read_all() 1536 if (readall) { in _bufferedreader_read_all() 1537 tmp = _PyObject_CallNoArgs(readall); in _bufferedreader_read_all() 1538 Py_DECREF(readall); in _bufferedreader_read_all() 1542 PyErr_SetString(PyExc_TypeError, "readall() should return bytes"); in _bufferedreader_read_all()
|
/third_party/python/Lib/test/ |
H A D | test_winconsoleio.py | 197 a, b = stdin.read(1), stdin.readall()
|
/third_party/toybox/porting/liteos_a/toys/lsb/ |
H A D | mount.c | 151 len = readall(pipe, toybuf, sizeof(toybuf)-1); in tortoise()
|
/third_party/toybox/toys/lsb/ |
H A D | mount.c | 155 len = readall(pipe, toybuf, sizeof(toybuf)-1); in tortoise()
|