Lines Matching refs:sal_Char

98 	sal_Char*   m_pReadPtr;
99 sal_Char m_ReadBuf[512];
102 sal_Char* m_pWriteBuf;
137 sal_Char** m_Lines;
153 static sal_Bool getLine(osl_TFile* pFile, const sal_Char *pszLine, int MaxLen);
154 static sal_Bool putLine(osl_TFile* pFile, const sal_Char *pszLine);
155 static const sal_Char* stripBlanks(const sal_Char* String, sal_uInt32* pLen);
156 static const sal_Char* addLine(osl_TProfileImpl* pProfile, const sal_Char* Line);
157 static const sal_Char* insertLine(osl_TProfileImpl* pProfile, const sal_Char* Line, sal_uInt32…
161 const sal_Char* Entry, sal_uInt32 Len);
163 int Line, const sal_Char* Entry, sal_uInt32 Len);
165 static sal_Bool addSection(osl_TProfileImpl* pProfile, int Line, const sal_Char* Sectio…
167 static osl_TProfileSection* findEntry(osl_TProfileImpl* pProfile, const sal_Char* Section,
168 const sal_Char* Entry, sal_uInt32 *pNoEntry);
455 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_readProfileString()
456 sal_Char* pszString, sal_uInt32 MaxLen, in osl_readProfileString()
457 const sal_Char* pszDefault) in osl_readProfileString()
460 const sal_Char* pStr = 0; in osl_readProfileString()
503 ::osl::LongPathBuffer< sal_Char > aFileName( MAX_LONG_PATH ); in osl_readProfileString()
533 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_readProfileBool()
536 sal_Char Line[32]; in osl_readProfileBool()
564 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_readProfileIdent()
565 sal_uInt32 FirstId, const sal_Char* Strings[], in osl_readProfileIdent()
569 sal_Char Line[256]; in osl_readProfileIdent()
596 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_writeProfileString()
597 const sal_Char* pszString) in osl_writeProfileString()
602 const sal_Char* pStr; in osl_writeProfileString()
603 sal_Char Line[4096]; in osl_writeProfileString()
684 ::osl::LongPathBuffer< sal_Char > aFileName( MAX_LONG_PATH ); in osl_writeProfileString()
699 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_writeProfileBool()
722 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_writeProfileIdent()
723 sal_uInt32 FirstId, const sal_Char* Strings[], in osl_writeProfileIdent()
748 const sal_Char *pszSection, const sal_Char *pszEntry) in osl_removeProfileEntry()
795 ::osl::LongPathBuffer< sal_Char > aFileName( MAX_LONG_PATH ); in osl_removeProfileEntry()
809 sal_uInt32 SAL_CALL osl_getProfileSectionEntries(oslProfile Profile, const sal_Char *pszSection, in osl_getProfileSectionEntries()
810 sal_Char* pszBuffer, sal_uInt32 MaxLen) in osl_getProfileSectionEntries()
869 ::osl::LongPathBuffer< sal_Char > aFileName( MAX_LONG_PATH ); in osl_getProfileSectionEntries()
1101 sal_uInt32 SAL_CALL osl_getProfileSections(oslProfile Profile, sal_Char* pszBuffer, sal_uInt32 MaxL… in osl_getProfileSections()
1141 ::osl::LongPathBuffer< sal_Char > aFileName( MAX_LONG_PATH ); in osl_getProfileSections()
1413 static sal_Bool getLine(osl_TFile* pFile, const sal_Char *pszLine, int MaxLen) in getLine()
1417 sal_Char* pChr; in getLine()
1418 sal_Char* pLine = (sal_Char *)pszLine; in getLine()
1501 static sal_Bool putLine(osl_TFile* pFile, const sal_Char *pszLine) in putLine()
1516 pFile->m_pWriteBuf = (sal_Char*) malloc(Len+3); in putLine()
1524 sal_Char* pTmp; in putLine()
1526 pTmp=(sal_Char*) realloc(pFile->m_pWriteBuf,( ( pFile->m_nWriteBufLen + Len ) * 2) ); in putLine()
1560 static const sal_Char* stripBlanks(const sal_Char* String, sal_uInt32* pLen) in stripBlanks()
1580 static const sal_Char* addLine(osl_TProfileImpl* pProfile, const sal_Char* Line) in addLine()
1587 pProfile->m_Lines = (sal_Char **)calloc(pProfile->m_MaxLines, sizeof(sal_Char *)); in addLine()
1595 …pProfile->m_Lines = (sal_Char **)realloc(pProfile->m_Lines, pProfile->m_MaxLines * sizeof(sal_Char in addLine()
1621 static const sal_Char* insertLine(osl_TProfileImpl* pProfile, const sal_Char* Line, sal_uInt32 Line… in insertLine()
1628 pProfile->m_Lines = (sal_Char **)calloc(pProfile->m_MaxLines, sizeof(sal_Char *)); in insertLine()
1633 pProfile->m_Lines = (sal_Char **)realloc(pProfile->m_Lines, in insertLine()
1634 pProfile->m_MaxLines * sizeof(sal_Char *)); in insertLine()
1638 (pProfile->m_MaxLines - pProfile->m_NoLines - 1) * sizeof(sal_Char*)); in insertLine()
1657 (pProfile->m_NoLines - LineNo) * sizeof(sal_Char *)); in insertLine()
1693 (pProfile->m_NoLines - LineNo - 1) * sizeof(sal_Char *)); in removeLine()
1697 (pProfile->m_MaxLines - pProfile->m_NoLines) * sizeof(sal_Char*)); in removeLine()
1725 const sal_Char* Entry, sal_uInt32 Len) in setEntry()
1736 int Line, const sal_Char* Entry, sal_uInt32 Len) in addEntry()
1795 static sal_Bool addSection(osl_TProfileImpl* pProfile, int Line, const sal_Char* Section, sal_uInt3… in addSection()
1836 Section = (sal_Char *)stripBlanks(Section, &Len); in addSection()
1873 static osl_TProfileSection* findEntry(osl_TProfileImpl* pProfile, const sal_Char* Section, in findEntry()
1874 const sal_Char* Entry, sal_uInt32 *pNoEntry) in findEntry()
1879 const sal_Char* pStr; in findEntry()
1883 Section = (sal_Char *)stripBlanks(Section, &Len); in findEntry()
1929 sal_Char* pStr; in loadProfile()
1930 sal_Char* pChar; in loadProfile()
1931 sal_Char Line[4096]; in loadProfile()
1946 pStr = (sal_Char *)stripBlanks(pProfile->m_Lines[i], NULL); in loadProfile()
2298 sal_Char *pChr, *pStr; in lookupProfile()
2299 sal_Char Buffer[4096] = ""; in lookupProfile()
2300 sal_Char Product[132] = ""; in lookupProfile()
2337 ::osl::LongPathBuffer< sal_Char > aDir( MAX_LONG_PATH ); in lookupProfile()
2458 ::osl::LongPathBuffer< sal_Char > aTmpPath( MAX_LONG_PATH ); in lookupProfile()
2542 ::osl::LongPathBuffer< sal_Char > aTmpPath( MAX_LONG_PATH ); in lookupProfile()
2551 static sal_Char *SubDirs[] = SVERSION_DIRS; in lookupProfile()
2591 ::osl::LongPathBuffer< sal_Char > aTmpPath( MAX_LONG_PATH ); in lookupProfile()
2661 ::osl::LongPathBuffer< sal_Char > aTmpPath( MAX_LONG_PATH ); in lookupProfile()