Lines Matching refs:__cookie
594 FILE *funopen (const void *__cookie,
601 FILE *funopen ( const void *__cookie,
609 FILE *funopen (const void *__cookie,
610 int (*__readfn)(void *__cookie, char *__buf,
612 int (*__writefn)(void *__cookie, const char *__buf,
614 fpos_t (*__seekfn)(void *__cookie, fpos_t __off, int __whence),
615 int (*__closefn)(void *__cookie));
616 FILE *funopen ( const void *__cookie,
617 int (*__readfn)(void *__cookie, char *__buf,
619 int (*__writefn)(void *__cookie, const char *__buf,
621 fpos_t (*__seekfn)(void *__cookie, fpos_t __off, int __whence),
622 int (*__closefn)(void *__cookie));
625 # define fropen(__cookie, __fn) funopen(__cookie, __fn, NULL, NULL, NULL) argument
626 # define fwopen(__cookie, __fn) funopen(__cookie, NULL, __fn, NULL, NULL) argument
630 typedef ssize_t cookie_read_function_t(void *__cookie, char *__buf, size_t __n);
631 typedef ssize_t cookie_write_function_t(void *__cookie, const char *__buf,
634 typedef int cookie_seek_function_t(void *__cookie, _off64_t *__off,
637 typedef int cookie_seek_function_t(void *__cookie, off_t *__off, int __whence);
639 typedef int cookie_close_function_t(void *__cookie);
649 FILE *fopencookie (void *__cookie,
651 FILE *fopencookie ( void *__cookie,