Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mashups/
Dinteractive.py76 def writeall(sock): function
86 writer = threading.Thread(target=writeall, args=(chan,))
/external/toybox/toys/pending/
Dtar.c90 writeall(dst, toybuf, rd); in copy_in_out()
146 writeall(tar->src_fd, (void*) &tmp, sizeof(tmp)); in write_longname()
148 writeall(tar->src_fd, name, sz); in write_longname()
149 if (sz%512) writeall(tar->src_fd, buf, (512-(sz%512))); in write_longname()
252 writeall(tar->src_fd, (void*)&hdr, 512); in add_file()
261 if (st->st_size%512) writeall(tar->src_fd, buf, (512-(st->st_size%512))); in add_file()
795 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()
Dtftpd.c215 int nw = writeall(fd, &rpkt[4], len-4); in do_action()
Ddd.c208 nw = writeall(out.fd, out.bp, ((all)? out.count : 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.c93 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.c197 if (TT.noeol && !writeall(TT.fdout, "\n", 1)) return 1; in emit()
201 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/toybox/lib/
Dlib.c120 ssize_t writeall(int fd, void *buf, size_t len) in writeall() function
755 writeall(toys.signalfd, &c, 1); in generic_signal()
Dlib.h164 ssize_t writeall(int fd, void *buf, size_t len);
Dxwrap.c369 if (len != writeall(fd, buf, len)) perror_exit("xwrite"); in xwrite()