Lines Matching refs:m_MaxSections
129 sal_uInt32 m_MaxSections; member
1739 if (pProfile->m_NoSections >= pProfile->m_MaxSections) in addSection()
1743 pProfile->m_MaxSections = SECTIONS_INI; in addSection()
1744 pProfile->m_Sections = calloc(pProfile->m_MaxSections, sizeof(osl_TProfileSection)); in addSection()
1749 unsigned int oldmax=pProfile->m_MaxSections; in addSection()
1751 pProfile->m_MaxSections += SECTIONS_ADD; in addSection()
1753 pProfile->m_MaxSections * sizeof(osl_TProfileSection)); in addSection()
1754 for ( idx = oldmax ; idx < pProfile->m_MaxSections ; ++idx ) in addSection()
1763 pProfile->m_MaxSections = 0; in addSection()
1800 … (pProfile->m_MaxSections - pProfile->m_NoSections) * sizeof(osl_TProfileSection)); in removeSection()
2012 pProfile->m_MaxSections = 0; in storeProfile()