HomeSort by relevance Sort by last modified time
    Searched defs:LineInput (Results 1 - 2 of 2) sorted by null

  /external/qemu/android/utils/
lineinput.h 17 /* A LineInput is used to read input text, one line at a time,
18 * into a temporary buffer owner by the LineInput object.
20 typedef struct LineInput LineInput;
22 /* Create a LineInput object that reads from a FILE* object */
23 LineInput* lineInput_newFromStdFile( FILE* file );
31 * The returned string is owned by the LineInput object and its
32 * value will not persist any other call to any LineInput functions.
34 const char* lineInput_getLine( LineInput* input );
39 const char* lineInput_getLineAndSize( LineInput* input, size_t *pSize )
    [all...]
lineinput.c 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
    [all...]

Completed in 22 milliseconds