Lines Matching refs:m_NoSections
128 sal_uInt32 m_NoSections; member
353 for ( idx = 0 ; idx < pProfile->m_NoSections ; ++idx ) in osl_closeProfile()
724 pSec = &pProfile->m_Sections[pProfile->m_NoSections - 1]; in osl_writeProfileString()
1075 for (i = 0; i < pProfile->m_NoSections; i++) in osl_getProfileSections()
1094 for (i = 0; i < pProfile->m_NoSections; i++) in osl_getProfileSections()
1603 for (i = 0; i < pProfile->m_NoSections; i++) in insertLine()
1642 for (i = 0; i < pProfile->m_NoSections; i++) in removeLine()
1739 if (pProfile->m_NoSections >= pProfile->m_MaxSections) in addSection()
1762 pProfile->m_NoSections = 0; in addSection()
1768 pProfile->m_NoSections++; in addSection()
1770 if ( pProfile->m_Sections[(pProfile->m_NoSections) - 1].m_Entries != 0 ) in addSection()
1772 free(pProfile->m_Sections[(pProfile->m_NoSections) - 1].m_Entries); in addSection()
1774 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Entries = NULL; in addSection()
1775 pProfile->m_Sections[pProfile->m_NoSections - 1].m_NoEntries = 0; in addSection()
1776 pProfile->m_Sections[pProfile->m_NoSections - 1].m_MaxEntries = 0; in addSection()
1778 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Line = Line; in addSection()
1779 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Offset = Section - pProfile->m_Lines[Line]; in addSection()
1780 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Len = Len; in addSection()
1789 if ((Section = pSection - pProfile->m_Sections) < pProfile->m_NoSections) in removeSection()
1793 if (pProfile->m_NoSections - Section > 1) in removeSection()
1796 (pProfile->m_NoSections - Section - 1) * sizeof(osl_TProfileSection)); in removeSection()
1798 memset(&pProfile->m_Sections[pProfile->m_NoSections - 1], in removeSection()
1800 … (pProfile->m_MaxSections - pProfile->m_NoSections) * sizeof(osl_TProfileSection)); in removeSection()
1801 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Entries = 0; in removeSection()
1808 pProfile->m_NoSections--; in removeSection()
1827 for (i = 0; i < pProfile->m_NoSections; i++) in findEntry()
1829 n %= pProfile->m_NoSections; in findEntry()
1840 if (i < pProfile->m_NoSections) in findEntry()
1875 pProfile->m_NoSections = 0; in loadProfile()
1910 if (pProfile->m_NoSections < 1) in loadProfile()
1916 if (! addEntry(pProfile, &pProfile->m_Sections[pProfile->m_NoSections - 1], in loadProfile()
2006 while (pProfile->m_NoSections > 0) in storeProfile()
2007 removeSection(pProfile, &pProfile->m_Sections[pProfile->m_NoSections - 1]); in storeProfile()
2011 pProfile->m_NoSections = 0; in storeProfile()