Lines Matching refs:Section
165 … addSection(osl_TProfileImpl* pProfile, int Line, const sal_Char* Section, sal_uInt32 Len);
167 static osl_TProfileSection* findEntry(osl_TProfileImpl* pProfile, const sal_Char* Section,
1795 static sal_Bool addSection(osl_TProfileImpl* pProfile, int Line, const sal_Char* Section, sal_uInt3… in addSection() argument
1836 Section = (sal_Char *)stripBlanks(Section, &Len); in addSection()
1838 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Offset = Section - pProfile->m_Lines[Line]; in addSection()
1846 sal_uInt32 Section; in removeSection() local
1848 if ((Section = pSection - pProfile->m_Sections) < pProfile->m_NoSections) in removeSection()
1852 if (pProfile->m_NoSections - Section > 1) in removeSection()
1854 memmove(&pProfile->m_Sections[Section], &pProfile->m_Sections[Section + 1], in removeSection()
1855 (pProfile->m_NoSections - Section - 1) * sizeof(osl_TProfileSection)); in removeSection()
1873 static osl_TProfileSection* findEntry(osl_TProfileImpl* pProfile, const sal_Char* Section, in findEntry() argument
1882 Len = strlen(Section); in findEntry()
1883 Section = (sal_Char *)stripBlanks(Section, &Len); in findEntry()
1892 (strnicmp(Section, &pProfile->m_Lines[pSec->m_Line][pSec->m_Offset], pSec->m_Len) in findEntry()