Home
last modified time | relevance | path

Searched refs:writeall (Results 1 – 19 of 19) sorted by relevance

/external/toybox/toys/pending/
Dtar.c91 writeall(dst, toybuf, rd); in copy_in_out()
147 writeall(tar->src_fd, (void*) &tmp, sizeof(tmp)); in write_longname()
149 writeall(tar->src_fd, name, sz); in write_longname()
150 if (sz%512) writeall(tar->src_fd, buf, (512-(sz%512))); in write_longname()
253 writeall(tar->src_fd, (void*)&hdr, 512); in add_file()
262 if (st->st_size%512) writeall(tar->src_fd, buf, (512-(st->st_size%512))); in add_file()
804 writeall(tar_hdl->src_fd, toybuf, 1024); in tar_main()
Dtelnetd.c195 writeall((toys.optflags & FLAG_i)?1:sockfd, intial_iacs, sizeof(intial_iacs)); in new_session()
285 count = writeall(fd, arr, sizeof(arr)); in dup_iacs()
295 count = writeall(fd, start, c); in dup_iacs()
Dgzip.c88 if (len != writeall(out_fd, toybuf, len)) break; in do_zlib()
Dtftpd.c215 int nw = writeall(fd, &rpkt[4], len-4); in do_action()
Ddd.c85 ssize_t nw = writeall(TT.out.fd, TT.out.bp, ((all)? TT.out.count : TT.out.sz)); in write_out()
Dgetty.c311 writeall(STDOUT_FILENO,TT.init_str,strlen(TT.init_str)); in getty_main()
Dtftp.c354 if (writeall(fd, packet + TFTP_DATAHEADERSIZE, ndatabytes) < 0){ in file_get()
Ddhcpd.c1207 writeall(fd, &timestamp, sizeof(timestamp)); in write_leasefile()
1215 writeall(fd, dls, sizeof(dyn_lease)); in write_leasefile()
1244 writeall(fd, &timestamp, sizeof(timestamp)); in write_lease6file()
1252 writeall(fd, dls6, sizeof(dyn_lease6)); in write_lease6file()
Dcrond.c94 writeall((loglevel > 8) ? 2 : 1, smsg, used); in loginfo()
Ddiff.c191 wr = writeall(tmpfd, toybuf, rd); in read_stdin()
/external/toybox/toys/posix/
Dtee.c66 if(len != writeall(fdl ? fdl->fd : 1, toybuf, len)) toys.exitval=1; in tee_main()
Dsed.c207 if (TT.noeol && !writeall(TT.fdout, "\n", 1)) return 1; in emit()
211 l = writeall(TT.fdout, line, len); in emit()
/external/toybox/toys/other/
Dshred.c100 if (throw != writeall(fd, toybuf, throw)) perror_msg_raw(*try);
/external/python/cpython3/Lib/test/
Dtest_ossaudiodev.py179 self.assertRaises(ValueError, dsp.writeall, b'x')
/external/python/cpython2/Doc/library/
Dossaudiodev.rst154 ---see :meth:`writeall`.
157 .. method:: oss_audio_device.writeall(data)
162 mode (the default), this has the same effect as :meth:`write`; :meth:`writeall`
/external/python/cpython3/Doc/library/
Dossaudiodev.rst157 ---see :meth:`writeall`.
163 .. method:: oss_audio_device.writeall(data)
169 :meth:`write`; :meth:`writeall` is only useful in non-blocking mode. Has
/external/toybox/lib/
Dlib.h190 ssize_t writeall(int fd, void *buf, size_t len);
Dlib.c122 ssize_t writeall(int fd, void *buf, size_t len) in writeall() function
835 writeall(toys.signalfd, &c, 1); in generic_signal()
Dxwrap.c443 if (len != writeall(fd, buf, len)) perror_exit("xwrite"); in xwrite()