Lines Matching defs:cookie
46 static int fmemopen_read(void *cookie, char *buf, int nbytes);
47 static int fmemopen_write(void *cookie, const char *buf, int nbytes);
48 static fpos_t fmemopen_seek(void *cookie, fpos_t offset, int whence);
49 static int fmemopen_close(void *cookie);
164 fmemopen_read(void *cookie, char *buf, int nbytes)
166 struct fmemopen_cookie *ck = cookie;
182 fmemopen_write(void *cookie, const char *buf, int nbytes)
184 struct fmemopen_cookie *ck = cookie;
212 fmemopen_seek(void *cookie, fpos_t offset, int whence)
214 struct fmemopen_cookie *ck = cookie;
251 fmemopen_close(void *cookie)
253 struct fmemopen_cookie *ck = cookie;