Lines Matching refs:gdIOCtx
34 gdIOCtx ctx;
41 gdIOCtx *gdNewSSCtx (gdSourcePtr src, gdSinkPtr snk);
43 static int sourceGetbuf (gdIOCtx *, void *, int);
44 static int sourceGetchar (gdIOCtx * ctx);
45 static int sinkPutbuf (gdIOCtx * ctx, const void *buf, int size);
46 static void sinkPutchar (gdIOCtx * ctx, int a);
47 static void gdFreeSsCtx (gdIOCtx * ctx);
50 gdIOCtx * gdNewSSCtx (gdSourcePtr src, gdSinkPtr snk) in gdNewSSCtx()
70 return (gdIOCtx *) ctx; in gdNewSSCtx()
73 static void gdFreeSsCtx (gdIOCtx * ctx) in gdFreeSsCtx()
79 static int sourceGetbuf (gdIOCtx * ctx, void *buf, int size) in sourceGetbuf()
102 static int sourceGetchar (gdIOCtx * ctx) in sourceGetchar()
116 static int sinkPutbuf (gdIOCtx * ctx, const void *buf, int size) in sinkPutbuf()
132 static void sinkPutchar (gdIOCtx * ctx, int a) in sinkPutchar()