Lines Matching refs:gdIOCtx
33 gdIOCtx ctx;
37 gdIOCtx *newFileCtx (FILE * f);
39 static int fileGetbuf (gdIOCtx *, void *, int);
40 static int filePutbuf (gdIOCtx *, const void *, int);
41 static void filePutchar (gdIOCtx *, int);
42 static int fileGetchar (gdIOCtx * ctx);
44 static int fileSeek (struct gdIOCtx *, const int);
45 static long fileTell (struct gdIOCtx *);
46 static void gdFreeFileCtx (gdIOCtx * ctx);
49 gdIOCtx * gdNewFileCtx (FILE * f) in gdNewFileCtx()
68 return (gdIOCtx *) ctx; in gdNewFileCtx()
71 static void gdFreeFileCtx (gdIOCtx * ctx) in gdFreeFileCtx()
77 static int filePutbuf (gdIOCtx * ctx, const void *buf, int size) in filePutbuf()
86 static int fileGetbuf (gdIOCtx * ctx, void *buf, int size) in fileGetbuf()
94 static void filePutchar (gdIOCtx * ctx, int a) in filePutchar()
105 static int fileGetchar (gdIOCtx * ctx) in fileGetchar()
114 static int fileSeek (struct gdIOCtx *ctx, const int pos) in fileSeek()
122 static long fileTell (struct gdIOCtx *ctx) in fileTell()