Lines Matching refs:m_Sections

142 	osl_TProfileSection*	m_Sections;  member
351 if ( pProfile->m_Sections != NULL ) in osl_closeProfile()
356 if ( pProfile->m_Sections[index].m_Entries != NULL ) in osl_closeProfile()
358 free(pProfile->m_Sections[index].m_Entries); in osl_closeProfile()
361 free(pProfile->m_Sections); in osl_closeProfile()
599 pSec = &pProfile->m_Sections[pProfile->m_NoSections - 1]; in osl_writeProfileString()
841 pSec = &pProfile->m_Sections[i]; in osl_getProfileSections()
859 n += pProfile->m_Sections[i].m_Len + 1; in osl_getProfileSections()
1524 pSec = &pProfile->m_Sections[i]; in insertLine()
1558 pSec = &pProfile->m_Sections[i]; in removeLine()
1649 if (pProfile->m_Sections == NULL) in addSection()
1652 …pProfile->m_Sections = (osl_TProfileSection *)malloc(pProfile->m_MaxSections * sizeof(osl_TProfile… in addSection()
1657 pProfile->m_Sections = (osl_TProfileSection *)realloc(pProfile->m_Sections, in addSection()
1661 if (pProfile->m_Sections == NULL) 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()
1692 memmove(&pProfile->m_Sections[Section], &pProfile->m_Sections[Section + 1], in removeSection()
1723 pSec = &pProfile->m_Sections[n]; in findEntry()
1795 if (! addEntry(pProfile, &pProfile->m_Sections[pProfile->m_NoSections - 1], in loadProfile()
1837 removeSection(pProfile, &pProfile->m_Sections[pProfile->m_NoSections - 1]); in storeProfile()
1839 free(pProfile->m_Sections); in storeProfile()
1840 pProfile->m_Sections = NULL; in storeProfile()