Lines Matching refs:m_NoSections

138 	sal_uInt32  m_NoSections;  member
354 for ( index = 0 ; index < pProfile->m_NoSections ; ++index ) in osl_closeProfile()
599 pSec = &pProfile->m_Sections[pProfile->m_NoSections - 1]; in osl_writeProfileString()
839 for (i = 0; i < pProfile->m_NoSections; i++) in osl_getProfileSections()
858 for (i = 0; i < pProfile->m_NoSections; i++) in osl_getProfileSections()
1522 for (i = 0; i < pProfile->m_NoSections; i++) in insertLine()
1556 for (i = 0; i < pProfile->m_NoSections; i++) in removeLine()
1647 if (pProfile->m_NoSections >= pProfile->m_MaxSections) in addSection()
1663 pProfile->m_NoSections = 0; in addSection()
1669 pProfile->m_NoSections++; in addSection()
1671 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Entries = NULL; in addSection()
1672 pProfile->m_Sections[pProfile->m_NoSections - 1].m_NoEntries = 0; in addSection()
1673 pProfile->m_Sections[pProfile->m_NoSections - 1].m_MaxEntries = 0; in addSection()
1676 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Line = Line; in addSection()
1677 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Offset = Section - pProfile->m_Lines[Line]; in addSection()
1678 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Len = Len; in addSection()
1687 if ((Section = pSection - pProfile->m_Sections) < pProfile->m_NoSections) in removeSection()
1690 if (pProfile->m_NoSections - Section > 1) in removeSection()
1693 (pProfile->m_NoSections - Section - 1) * sizeof(osl_TProfileSection)); in removeSection()
1700 pProfile->m_NoSections--; in removeSection()
1720 for (i = 0; i < pProfile->m_NoSections; i++) in findEntry()
1722 n %= pProfile->m_NoSections; in findEntry()
1733 if (i < pProfile->m_NoSections) in findEntry()
1767 pProfile->m_NoSections = 0; in loadProfile()
1789 if (pProfile->m_NoSections < 1) in loadProfile()
1795 if (! addEntry(pProfile, &pProfile->m_Sections[pProfile->m_NoSections - 1], in loadProfile()
1836 while (pProfile->m_NoSections > 0) in storeProfile()
1837 removeSection(pProfile, &pProfile->m_Sections[pProfile->m_NoSections - 1]); in storeProfile()