Home | History | Annotate | Download | only in Common

Lines Matching refs:InputBuffer

26   IN OUT CHAR8      *InputBuffer,

43 InputBuffer Buffer to read into, must be MaxLength size.
49 InputBuffer otherwise
60 assert (InputBuffer);
105 memcpy (InputBuffer, InputFile->CurrentFilePointer, CharsToCopy);
110 if (InputBuffer[CharsToCopy - 1] == '\r') {
112 InputBuffer[CharsToCopy - 1] = '\0';
116 InputBuffer[CharsToCopy] = '\0';
128 CharPtr = strstr (InputBuffer, "//");
135 return InputBuffer;
162 CHAR8 InputBuffer[MAX_LONG_FILE_PATH];
185 ReadLine (InputFile, InputBuffer, MAX_LONG_FILE_PATH);
190 CurrentToken = strstr (InputBuffer, Section);
231 CHAR8 InputBuffer[MAX_LONG_FILE_PATH];
271 if (ReadLine (InputFile, InputBuffer, MAX_LONG_FILE_PATH) == NULL) {
281 Delimiter = strchr (InputBuffer, '=');
286 CurrentToken = strtok (InputBuffer, " \t\n");
291 CurrentToken = InputBuffer;
589 IN OUT CHAR8 *InputBuffer
601 InputBuffer Buffer to read into, must be MAX_LONG_FILE_PATH size.
606 InputBuffer otherwise
616 assert (InputBuffer);
621 if (fgets (InputBuffer, MAX_LONG_FILE_PATH, InputFile) == NULL) {
627 CharPtr = strstr (InputBuffer, "//");
632 CharPtr = strstr (InputBuffer, "#");
639 return InputBuffer;
667 CHAR8 InputBuffer[MAX_LONG_FILE_PATH];
689 ReadLineInStream (InputFile, InputBuffer);
694 CurrentToken = strstr (InputBuffer, Section);