Lines Matching refs:m_NoSections

135 	sal_uInt32  m_NoSections;  member
347 for ( index = 0 ; index < pProfile->m_NoSections ; ++index ) in osl_closeProfile()
644 pSec = &pProfile->m_Sections[pProfile->m_NoSections - 1]; in osl_writeProfileString()
1114 for (i = 0; i < pProfile->m_NoSections; i++) in osl_getProfileSections()
1133 for (i = 0; i < pProfile->m_NoSections; i++) in osl_getProfileSections()
1661 for (i = 0; i < pProfile->m_NoSections; i++) in insertLine()
1700 for (i = 0; i < pProfile->m_NoSections; i++) in removeLine()
1797 if (pProfile->m_NoSections >= pProfile->m_MaxSections) in addSection()
1820 pProfile->m_NoSections = 0; in addSection()
1826 pProfile->m_NoSections++; in addSection()
1828 if ( pProfile->m_Sections[(pProfile->m_NoSections) - 1].m_Entries != 0 ) in addSection()
1830 free(pProfile->m_Sections[(pProfile->m_NoSections) - 1].m_Entries); in addSection()
1832 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Entries = NULL; in addSection()
1833 pProfile->m_Sections[pProfile->m_NoSections - 1].m_NoEntries = 0; in addSection()
1834 pProfile->m_Sections[pProfile->m_NoSections - 1].m_MaxEntries = 0; in addSection()
1837 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Line = Line; in addSection()
1838 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Offset = Section - pProfile->m_Lines[Line]; in addSection()
1839 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Len = Len; in addSection()
1848 if ((Section = pSection - pProfile->m_Sections) < pProfile->m_NoSections) in removeSection()
1852 if (pProfile->m_NoSections - Section > 1) in removeSection()
1855 (pProfile->m_NoSections - Section - 1) * sizeof(osl_TProfileSection)); in removeSection()
1857 memset(&pProfile->m_Sections[pProfile->m_NoSections - 1], in removeSection()
1859 (pProfile->m_MaxSections - pProfile->m_NoSections) * sizeof(osl_TProfileSection)); in removeSection()
1860 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Entries = 0; in removeSection()
1867 pProfile->m_NoSections--; in removeSection()
1887 for (i = 0; i < pProfile->m_NoSections; i++) in findEntry()
1889 n %= pProfile->m_NoSections; in findEntry()
1900 if (i < pProfile->m_NoSections) in findEntry()
1934 pProfile->m_NoSections = 0; in loadProfile()
1956 if (pProfile->m_NoSections < 1) in loadProfile()
1962 if (! addEntry(pProfile, &pProfile->m_Sections[pProfile->m_NoSections - 1], in loadProfile()
2050 while (pProfile->m_NoSections > 0) in storeProfile()
2051 removeSection(pProfile, &pProfile->m_Sections[pProfile->m_NoSections - 1]); in storeProfile()