Lines Matching refs:fdo
191 FdOut *fdo = opaque;
197 int ret = write(fdo->fd, data, len);
205 fdo->total += ret;
210 fd_out_init(FdOut *fdo, int fd)
212 fdo->out->opaque = fdo;
213 fdo->out->send = fd_out_send;
214 fdo->fd = fd;
215 fdo->total = 0;
217 return fdo->out;
221 fd_out_length(FdOut *fdo)
223 return fdo->total;
230 FdOut fdo;
234 out = fd_out_init(&fdo, fd);
242 return fd_out_length(&fdo);