Home | History | Annotate | Download | only in linker

Lines Matching refs:Out

24  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
49 } Out;
52 out_send(Out *o, const void *data, size_t len)
58 out_send_repeat(Out *o, char ch, int count)
76 out_vformat(Out *o, const char *format, va_list args);
82 Out out[1];
112 static Out*
118 bo->out->opaque = bo;
119 bo->out->send = buf_out_send;
126 return bo->out;
139 Out *out;
141 out = buf_out_init(&bo, buff, buffsize);
142 if (out == NULL)
145 out_vformat(out, format, args);
183 Out out[1];
209 static Out*
212 fdo->out->opaque = fdo;
213 fdo->out->send = fd_out_send;
217 return fdo->out;
231 Out* out;
234 out = fd_out_init(&fdo, fd);
235 if (out == NULL)
239 out_vformat(out, format, args);
428 out_vformat(Out *o, const char *format, va_list args)
633 Out* out;
637 out = buf_out_init(bo, buffer, sizeof buffer);
639 out_send(out, "abc", 3);
641 out_send_repeat(out, 'X', 4);
644 out_send_repeat(out, 'Y', 2*sizeof(buffer));
647 out = buf_out_init(bo, buffer, sizeof buffer);
648 out_send_repeat(out, 'X', 2*sizeof(buffer));
659 Out* out = buf_out_init(bo, buffer, sizeof buffer);
663 out_vformat(out, format, args);