Searched refs:LineInput (Results 1 - 3 of 3) sorted by relevance

/external/qemu/android/utils/
H A Dlineinput.h21 /* A LineInput is used to read input text, one line at a time,
22 * into a temporary buffer owner by the LineInput object.
24 typedef struct LineInput LineInput; typedef in typeref:struct:LineInput
26 /* Create a LineInput object that reads from a FILE* object */
27 LineInput* lineInput_newFromStdFile( FILE* file );
35 * The returned string is owned by the LineInput object and its
36 * value will not persist any other call to any LineInput functions.
38 const char* lineInput_getLine( LineInput* input );
43 const char* lineInput_getLineAndSize( LineInput* inpu
[all...]
H A Dlineinput.c17 struct LineInput { struct
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* inpu
[all...]
/external/qemu/android/
H A Dmain.c1434 LineInput* input = lineInput_newFromStdFile(file);

Completed in 90 milliseconds