Lines Matching refs:a_eof
839 *@a_eof: out parameter. Is set to true is we reach end of
849 cr_input_peek_byte2 (CRInput const * a_this, gulong a_offset, gboolean * a_eof)
856 if (a_eof)
857 *a_eof = FALSE;
862 && a_eof)
863 *a_eof = TRUE;
1082 *@a_eof: the new end of file flag.
1089 cr_input_set_end_of_file (CRInput * a_this, gboolean a_eof)
1093 PRIVATE (a_this)->end_of_input = a_eof;
1101 *@a_eof: out parameter the place to put the end of
1109 cr_input_get_end_of_file (CRInput const * a_this, gboolean * a_eof)
1112 && a_eof, CR_BAD_PARAM_ERROR);
1114 *a_eof = PRIVATE (a_this)->end_of_input;