Lines Matching refs:m_Entries

123 	osl_TProfileEntry*  m_Entries;  member
356 if ( pProfile->m_Sections[index].m_Entries != 0 ) in osl_closeProfile()
358 free(pProfile->m_Sections[index].m_Entries); in osl_closeProfile()
446 ((pStr = strchr(pProfile->m_Lines[pSec->m_Entries[NoEntry].m_Line], in osl_readProfileString()
611 i = pSec->m_Entries[pSec->m_NoEntries - 1].m_Line + 1; in osl_writeProfileString()
629 i = pSec->m_Entries[NoEntry].m_Line; in osl_writeProfileString()
728 removeLine(pProfile, pSec->m_Entries[NoEntry].m_Line); in osl_removeProfileEntry()
788 if ((n + pSec->m_Entries[i].m_Len + 1) < MaxLen) in osl_getProfileSectionEntries()
790 strncpy(&pszBuffer[n], &pProfile->m_Lines[pSec->m_Entries[i].m_Line] in osl_getProfileSectionEntries()
791 [pSec->m_Entries[i].m_Offset], pSec->m_Entries[i].m_Len); in osl_getProfileSectionEntries()
792 n += pSec->m_Entries[i].m_Len; in osl_getProfileSectionEntries()
805 n += pSec->m_Entries[i].m_Len + 1; in osl_getProfileSectionEntries()
1530 if (pSec->m_Entries[n].m_Line >= LineNo) in insertLine()
1531 pSec->m_Entries[n].m_Line++; in insertLine()
1564 if (pSec->m_Entries[n].m_Line > LineNo) in removeLine()
1565 pSec->m_Entries[n].m_Line--; in removeLine()
1584 pSection->m_Entries[NoEntry].m_Line = Line; in setEntry()
1585 pSection->m_Entries[NoEntry].m_Offset = Entry - pProfile->m_Lines[Line]; in setEntry()
1586 pSection->m_Entries[NoEntry].m_Len = Len; in setEntry()
1598 if (pSection->m_Entries == NULL) in addEntry()
1601 pSection->m_Entries = (osl_TProfileEntry *)malloc( in addEntry()
1607 pSection->m_Entries = (osl_TProfileEntry *)realloc(pSection->m_Entries, in addEntry()
1611 if (pSection->m_Entries == NULL) in addEntry()
1636 memmove(&pSection->m_Entries[NoEntry], in removeEntry()
1637 &pSection->m_Entries[NoEntry + 1], in removeEntry()
1671 pProfile->m_Sections[pProfile->m_NoSections - 1].m_Entries = NULL; in addSection()
1689 free (pSection->m_Entries); in removeSection()
1697 pSection->m_Entries = 0; in removeSection()
1742 pStr = &pProfile->m_Lines[pSec->m_Entries[i].m_Line] in findEntry()
1743 [pSec->m_Entries[i].m_Offset]; in findEntry()
1744 if ((Len == pSec->m_Entries[i].m_Len) && in findEntry()
1745 (strnicmp(Entry, pStr, pSec->m_Entries[i].m_Len) in findEntry()