Lines Matching refs:Section
306 SECTION_ITEM *Section; in DumpIniSection() local
313 Section = IniContext->SectionHead; in DumpIniSection()
315 while (Section != NULL) { in DumpIniSection()
316 PtrSection = Section; in DumpIniSection()
317 Section = Section->PtrNext; in DumpIniSection()
788 IN SECTION_ITEM *Section, in FreeAllList() argument
795 while (Section != NULL) { in FreeAllList()
796 PtrSection = Section; in FreeAllList()
797 Section = Section->PtrNext; in FreeAllList()
836 IN SECTION_ITEM *Section, in UpdateGetProfileString() argument
844 while (Section != NULL) { in UpdateGetProfileString()
845 if (AsciiStrCmp ((CONST CHAR8 *) Section->PtrSection, (CONST CHAR8 *) SectionName) == 0) { in UpdateGetProfileString()
846 if (Section->PtrEntry != NULL) { in UpdateGetProfileString()
847 if (AsciiStrCmp ((CONST CHAR8 *) Section->PtrEntry, (CONST CHAR8 *) EntryName) == 0) { in UpdateGetProfileString()
852 Section = Section->PtrNext; in UpdateGetProfileString()
855 if (Section == NULL) { in UpdateGetProfileString()
859 *EntryValue = Section->PtrValue; in UpdateGetProfileString()