Lines Matching refs:PROTO

19 static void buf_default_memory_error PROTO ((struct buffer *));
20 static void allocate_buffer_datas PROTO((void));
21 static struct buffer_data *get_buffer_data PROTO((void));
27 int (*input) PROTO((void *, char *, int, int, int *));
28 int (*output) PROTO((void *, const char *, int, int *));
29 int (*flush) PROTO((void *));
30 int (*block) PROTO((void *, int));
31 int (*shutdown) PROTO((void *));
32 void (*memory) PROTO((struct buffer *));
69 void (*memory) PROTO((struct buffer *));
72 ((int (*) PROTO((void *, char *, int, int, int *))) NULL,
73 (int (*) PROTO((void *, const char *, int, int *))) NULL,
74 (int (*) PROTO((void *))) NULL,
75 (int (*) PROTO((void *, int))) NULL,
76 (int (*) PROTO((void *))) NULL,
1214 static int stdio_buffer_input PROTO((void *, char *, int, int, int *));
1215 static int stdio_buffer_output PROTO((void *, const char *, int, int *));
1216 static int stdio_buffer_flush PROTO((void *));
1224 void (*memory) PROTO((struct buffer *));
1229 (int (*) PROTO((void *, int))) NULL,
1230 (int (*) PROTO((void *))) NULL,
1372 int (*inpfn) PROTO((void *fnclosure, const char *input, char *output,
1380 int (*outfn) PROTO((void *fnclosure, const char *input, char *output,
1401 static int packetizing_buffer_input PROTO((void *, char *, int, int, int *));
1402 static int packetizing_buffer_output PROTO((void *, const char *, int, int *));
1403 static int packetizing_buffer_flush PROTO((void *));
1404 static int packetizing_buffer_block PROTO((void *, int));
1405 static int packetizing_buffer_shutdown PROTO((void *));
1412 int (*inpfn) PROTO ((void *, const char *, char *, int));
1413 int (*outfn) PROTO ((void *, const char *, char *, int, int *));
1415 void (*memory) PROTO((struct buffer *));