Home
last modified time | relevance | path

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

/external/toybox/toys/posix/
Dtee.c64 if (len != writeall(fdl->fd, toybuf, len)) toys.exitval = 1; in tee_main()
Dtar.c378 if (st->st_size%512) writeall(TT.fd, toybuf, (512-(st->st_size%512))); in add_to_tar()
454 if (j != writeall(fd, toybuf+512, j)) goto error; in sendfile_sparse()
955 writeall(TT.fd, toybuf, 1024); in tar_main()
Dsed.c159 if (TT.noeol && !writeall(TT.fdout, "\n", 1)) return 1; in emit()
163 l = writeall(TT.fdout, line, len); in emit()
/external/toybox/toys/other/
Dshred.c94 if (throw != writeall(fd, toybuf, throw)) perror_msg_raw(*try);
/external/toybox/toys/pending/
Dtelnetd.c160 writeall(FLAG(i)?1:sockfd, intial_iacs, sizeof(intial_iacs)); in new_session()
251 count = writeall(fd, arr, sizeof(arr)); in dup_iacs()
261 count = writeall(fd, start, c); in dup_iacs()
Dtftpd.c215 int nw = writeall(fd, &rpkt[4], len-4); in do_action()
Ddd.c111 ssize_t nw = writeall(TT.out.fd, TT.out.bp, ((all)? TT.out.count : TT.out.sz)); in write_out()
Dtftp.c362 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()
Dsh.c2171 if (len != writeall(from, ss, len)) bad++; in expand_redir()
2187 x = writeall(from, ss, len = strlen(ss)); in expand_redir()
3083 writeall(2, toybuf, len); in do_prompt()
/external/toybox/toys/lsb/
Dgzip.c83 if (len != writeall(out_fd, toybuf, len)) break;
/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.rst156 data may not be written---see :meth:`writeall`.
162 .. method:: oss_audio_device.writeall(data)
168 :meth:`write`; :meth:`writeall` is only useful in non-blocking mode. Has
/external/ms-tpm-20-ref/TPMCmd/tpm/include/
DTpmTypes.h2300 writeall, writedefine, write_stclear, globallock, \ argument
2306 writeall, writedefine, write_stclear, globallock, \
2341 writeall, writedefine, write_stclear, globallock, \ argument
2349 (writelocked << 11) + (writeall << 12) + \
/external/toybox/lib/
Dlib.c125 ssize_t writeall(int fd, void *buf, size_t len) in writeall() function
903 writeall(toys.signalfd, &c, 1); in generic_signal()
Dlib.h206 ssize_t writeall(int fd, void *buf, size_t len);
Dportability.c650 if (ww && writeall(out, libbuf, len) != len) return -1; in sendfile_len()
Dxwrap.c524 if (len != writeall(fd, buf, len)) perror_exit("xwrite"); in xwrite()