Lines Matching refs:Section
171 static sal_Bool addSection(osl_TProfileImpl* pProfile, int Line, const sal_Char* Section, sal_uInt3…
173 static osl_TProfileSection* findEntry(osl_TProfileImpl* pProfile, const sal_Char* Section,
1645 static sal_Bool addSection(osl_TProfileImpl* pProfile, int Line, const sal_Char* Section, sal_uInt3… in addSection() argument
1675 Section = (sal_Char *)stripBlanks(Section, &Len); in addSection()
1677 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Offset = Section - pProfile->m_Lines[Line]; in addSection()
1685 sal_uInt32 Section; in removeSection() local
1687 if ((Section = pSection - pProfile->m_Sections) < pProfile->m_NoSections) in removeSection()
1690 if (pProfile->m_NoSections - Section > 1) in removeSection()
1692 memmove(&pProfile->m_Sections[Section], &pProfile->m_Sections[Section + 1], in removeSection()
1693 (pProfile->m_NoSections - Section - 1) * sizeof(osl_TProfileSection)); in removeSection()
1706 static osl_TProfileSection* findEntry(osl_TProfileImpl* pProfile, const sal_Char* Section, in findEntry() argument
1715 Len = strlen(Section); in findEntry()
1716 Section = (sal_Char *)stripBlanks(Section, &Len); in findEntry()
1725 (strnicmp(Section, &pProfile->m_Lines[pSec->m_Line][pSec->m_Offset], pSec->m_Len) in findEntry()