Home | History | Annotate | Download | only in utils

Lines Matching defs:LineInput

15 #include "android/utils/lineinput.h"
17 struct LineInput {
38 static LineInput*
41 LineInput* input;
50 /* Create a LineInput object that reads from a FILE* object */
51 LineInput*
54 LineInput* input = _lineInput_new();
62 _lineInput_grow( LineInput* input )
76 static int _lineInput_getLineFromStdFile( LineInput* input, FILE* file );
79 lineInput_getLine( LineInput* input )
85 lineInput_getLineAndSize( LineInput* input, size_t *pSize )
131 lineInput_getLineNumber( LineInput* input )
138 lineInput_isEof( LineInput* input )
143 /* Return the error condition of a LineInput object.
148 lineInput_getError( LineInput* input )
154 lineInput_free( LineInput* input )
174 _lineInput_getLineFromStdFile( LineInput* input, FILE* file )