Lines Matching refs:pszEntry

455 							  const sal_Char* pszSection, const sal_Char* pszEntry,  in osl_readProfileString()  argument
484 if (((pSec = findEntry(pProfile, pszSection, pszEntry, &NoEntry)) != NULL) && in osl_readProfileString()
506 GetPrivateProfileString(pszSection, pszEntry, pszDefault, pszString, MaxLen, aFileName); in osl_readProfileString()
533 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_readProfileBool() argument
542 if (osl_readProfileString(Profile, pszSection, pszEntry, Line, sizeof(Line), "")) in osl_readProfileBool()
564 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_readProfileIdent() argument
575 if (osl_readProfileString(Profile, pszSection, pszEntry, Line, sizeof(Line), "")) in osl_readProfileIdent()
596 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_writeProfileString() argument
624 if ((pSec = findEntry(pProfile, pszSection, pszEntry, &NoEntry)) == NULL) in osl_writeProfileString()
649 strcpy(&Line[0], pszEntry); in osl_writeProfileString()
650 Line[0 + strlen(pszEntry)] = '='; in osl_writeProfileString()
651 strcpy(&Line[1 + strlen(pszEntry)], pszString); in osl_writeProfileString()
661 (! addEntry(pProfile, pSec, i, pStr, strlen(pszEntry)))) in osl_writeProfileString()
677 setEntry(pProfile, pSec, NoEntry, i, pProfile->m_Lines[i], strlen(pszEntry)); in osl_writeProfileString()
687 WritePrivateProfileString(pszSection, pszEntry, pszString, aFileName); in osl_writeProfileString()
699 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_writeProfileBool() argument
709 bRet=osl_writeProfileString(Profile, pszSection, pszEntry, STR_INI_BOOLONE); in osl_writeProfileBool()
711 bRet=osl_writeProfileString(Profile, pszSection, pszEntry, STR_INI_BOOLZERO); in osl_writeProfileBool()
722 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_writeProfileIdent() argument
738 bRet=osl_writeProfileString(Profile, pszSection, pszEntry, Strings[i]); in osl_writeProfileIdent()
748 const sal_Char *pszSection, const sal_Char *pszEntry) in osl_removeProfileEntry() argument
774 if (((pSec = findEntry(pProfile, pszSection, pszEntry, &NoEntry)) != NULL) && in osl_removeProfileEntry()
798 WritePrivateProfileString(pszSection, pszEntry, NULL, aFileName); in osl_removeProfileEntry()