Lines Matching refs:ReadLine
368 CHAR16 *ReadLine; in ManFileFindSections() local
387 ReadLine = AllocateZeroPool(Size); in ManFileFindSections()
388 if (ReadLine == NULL) { in ManFileFindSections()
393 Status = ShellFileHandleReadLine(Handle, ReadLine, &Size, TRUE, &Ascii); in ManFileFindSections()
394 if (ReadLine[0] == L'#') { in ManFileFindSections()
408 } else if (StrnCmp(ReadLine, L".TH", 3) == 0) { in ManFileFindSections()
413 } else if (StrnCmp(ReadLine, L".SH", 3) == 0) { in ManFileFindSections()
427 for ( SectionName = ReadLine + 3 in ManFileFindSections()
444 StrnCatGrow (HelpText, HelpSize, ReadLine, 0); in ManFileFindSections()
448 FreePool(ReadLine); in ManFileFindSections()
717 CHAR16 *ReadLine; in ManFileFindTitleSection() local
733 ReadLine = AllocateZeroPool(Size); in ManFileFindTitleSection()
734 if (ReadLine == NULL) { in ManFileFindTitleSection()
750 Status = ShellFileHandleReadLine(Handle, ReadLine, &Size, TRUE, Ascii); in ManFileFindTitleSection()
759 if (IsTitleHeader (Command+Start, ReadLine, BriefDesc, BriefSize, &Found)) { in ManFileFindTitleSection()
765 FreePool(ReadLine); in ManFileFindTitleSection()