Lines Matching refs:sal_Char

100 	sal_Char*   m_pReadPtr;
101 sal_Char m_ReadBuf[512];
104 sal_Char* m_pWriteBuf;
140 sal_Char** m_Lines;
159 static sal_Bool getLine(osl_TFile* pFile, const sal_Char *pszLine, int MaxLen);
160 static sal_Bool putLine(osl_TFile* pFile, const sal_Char *pszLine);
161 static const sal_Char* stripBlanks(const sal_Char* String, sal_uInt32* pLen);
162 static const sal_Char* addLine(osl_TProfileImpl* pProfile, const sal_Char* Line);
163 static const sal_Char* insertLine(osl_TProfileImpl* pProfile, const sal_Char* Line, sal_uInt32 Line…
167 const sal_Char* Entry, sal_uInt32 Len);
169 int Line, const sal_Char* Entry, sal_uInt32 Len);
171 static sal_Bool addSection(osl_TProfileImpl* pProfile, int Line, const sal_Char* Section, sal_uInt3…
173 static osl_TProfileSection* findEntry(osl_TProfileImpl* pProfile, const sal_Char* Section,
174 const sal_Char* Entry, sal_uInt32 *pNoEntry);
179 static sal_Bool lookupProfile(const sal_Char *pszPath, const sal_Char *pszFile, sal_Char *pPath);
184 sal_Bool SAL_CALL osl_getFullPath(rtl_uString* pszFilename, sal_Char* pszPath, sal_uInt32 MaxLen) in osl_getFullPath()
415 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_readProfileString()
416 sal_Char* pszString, sal_uInt32 MaxLen, in osl_readProfileString()
417 const sal_Char* pszDefault) in osl_readProfileString()
420 const sal_Char* pStr = 0; in osl_readProfileString()
487 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_readProfileBool()
490 sal_Char Line[32]; in osl_readProfileBool()
518 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_readProfileIdent()
519 sal_uInt32 FirstId, const sal_Char* Strings[], in osl_readProfileIdent()
523 sal_Char Line[256]; in osl_readProfileIdent()
551 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_writeProfileString()
552 const sal_Char* pszString) in osl_writeProfileString()
557 const sal_Char* pStr; in osl_writeProfileString()
558 sal_Char Line[4096]; in osl_writeProfileString()
650 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_writeProfileBool()
673 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_writeProfileIdent()
674 sal_uInt32 FirstId, const sal_Char* Strings[], in osl_writeProfileIdent()
699 const sal_Char *pszSection, const sal_Char *pszEntry) in osl_removeProfileEntry()
755 sal_uInt32 SAL_CALL osl_getProfileSectionEntries(oslProfile Profile, const sal_Char *pszSection, in osl_getProfileSectionEntries()
756 sal_Char* pszBuffer, sal_uInt32 MaxLen) in osl_getProfileSectionEntries()
826 sal_uInt32 SAL_CALL osl_getProfileSections(oslProfile Profile, sal_Char* pszBuffer, sal_uInt32 MaxL… in osl_getProfileSections()
877 sal_Char File[_MAX_PATH];
878 sal_Char Path[_MAX_PATH];
1155 sal_Char* pszFileName=0; in openFileImpl()
1299 static sal_Bool getLine(osl_TFile* pFile, const sal_Char *pszLine, int MaxLen) in getLine()
1302 sal_Char* pChr; in getLine()
1303 sal_Char* pLine = (sal_Char *)pszLine; in getLine()
1378 static sal_Bool putLine(osl_TFile* pFile, const sal_Char *pszLine) in putLine()
1393 pFile->m_pWriteBuf = (sal_Char*) malloc(Len+3); in putLine()
1401 sal_Char* pTmp; in putLine()
1403 pTmp=(sal_Char*) realloc(pFile->m_pWriteBuf,( ( pFile->m_nWriteBufLen + Len ) * 2) ); in putLine()
1436 static const sal_Char* stripBlanks(const sal_Char* String, sal_uInt32* pLen) in stripBlanks()
1456 static const sal_Char* addLine(osl_TProfileImpl* pProfile, const sal_Char* Line) in addLine()
1463 pProfile->m_Lines = (sal_Char **)malloc(pProfile->m_MaxLines * sizeof(sal_Char *)); in addLine()
1468 pProfile->m_Lines = (sal_Char **)realloc(pProfile->m_Lines, in addLine()
1469 pProfile->m_MaxLines * sizeof(sal_Char *)); in addLine()
1486 static const sal_Char* insertLine(osl_TProfileImpl* pProfile, const sal_Char* Line, sal_uInt32 Line… in insertLine()
1493 pProfile->m_Lines = (sal_Char **)malloc(pProfile->m_MaxLines * sizeof(sal_Char *)); in insertLine()
1498 pProfile->m_Lines = (sal_Char **)realloc(pProfile->m_Lines, in insertLine()
1499 pProfile->m_MaxLines * sizeof(sal_Char *)); in insertLine()
1519 (pProfile->m_NoLines - LineNo) * sizeof(sal_Char *)); in insertLine()
1553 (pProfile->m_NoLines - LineNo - 1) * sizeof(sal_Char *)); in removeLine()
1581 const sal_Char* Entry, sal_uInt32 Len) in setEntry()
1592 int Line, const sal_Char* Entry, sal_uInt32 Len) in addEntry()
1645 static sal_Bool addSection(osl_TProfileImpl* pProfile, int Line, const sal_Char* Section, sal_uInt3… in addSection()
1675 Section = (sal_Char *)stripBlanks(Section, &Len); in addSection()
1706 static osl_TProfileSection* findEntry(osl_TProfileImpl* pProfile, const sal_Char* Section, in findEntry()
1707 const sal_Char* Entry, sal_uInt32 *pNoEntry) in findEntry()
1712 const sal_Char* pStr; in findEntry()
1716 Section = (sal_Char *)stripBlanks(Section, &Len); in findEntry()
1762 sal_Char* pStr; in loadProfile()
1763 sal_Char* pChar; in loadProfile()
1764 sal_Char Line[1024]; in loadProfile()
1779 pStr = (sal_Char *)stripBlanks(pProfile->m_Lines[i], NULL); in loadProfile()
1986 static sal_Bool lookupProfile(const sal_Char *pszPath, const sal_Char *pszFile, sal_Char *pPath)
1988 sal_Char *pChr, *pStr;
1989 sal_Char Path[_MAX_PATH] = "";
1990 sal_Char Product[132] = "";
1991 sal_Char Buffer[1024];
2017 sal_Char Profile[_MAX_PATH];
2018 sal_Char Dir[_MAX_PATH];
2083 sal_Char *pStart, *pEnd;
2164 static sal_Char *SubDirs[] = SVERSION_DIRS;
2195 sal_Char Profile[_MAX_PATH];