Lines Matching refs:pszEntry
415 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_readProfileString() argument
444 if (((pSec = findEntry(pProfile, pszSection, pszEntry, &NoEntry)) != NULL) && in osl_readProfileString()
463 (PCSZ)pszEntry, (PCSZ)pszDefault, in osl_readProfileString()
487 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_readProfileBool() argument
496 if (osl_readProfileString(Profile, pszSection, pszEntry, Line, sizeof(Line), "")) in osl_readProfileBool()
518 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_readProfileIdent() argument
529 if (osl_readProfileString(Profile, pszSection, pszEntry, Line, sizeof(Line), "")) in osl_readProfileIdent()
551 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_writeProfileString() argument
579 if ((pSec = findEntry(pProfile, pszSection, pszEntry, &NoEntry)) == NULL) in osl_writeProfileString()
604 strcpy(&Line[0], pszEntry); in osl_writeProfileString()
605 Line[0 + strlen(pszEntry)] = '='; in osl_writeProfileString()
606 strcpy(&Line[1 + strlen(pszEntry)], pszString); in osl_writeProfileString()
616 (! addEntry(pProfile, pSec, i, pStr, strlen(pszEntry)))) in osl_writeProfileString()
632 setEntry(pProfile, pSec, NoEntry, i, pProfile->m_Lines[i], strlen(pszEntry)); in osl_writeProfileString()
639 (PCSZ)pszEntry, (PCSZ)pszString); in osl_writeProfileString()
650 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_writeProfileBool() argument
660 bRet=osl_writeProfileString(Profile, pszSection, pszEntry, STR_INI_BOOLONE); in osl_writeProfileBool()
662 bRet=osl_writeProfileString(Profile, pszSection, pszEntry, STR_INI_BOOLZERO); in osl_writeProfileBool()
673 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_writeProfileIdent() argument
689 bRet=osl_writeProfileString(Profile, pszSection, pszEntry, Strings[i]); in osl_writeProfileIdent()
699 const sal_Char *pszSection, const sal_Char *pszEntry) in osl_removeProfileEntry() argument
725 if (((pSec = findEntry(pProfile, pszSection, pszEntry, &NoEntry)) != NULL) && in osl_removeProfileEntry()
745 PrfWriteProfileString(pProfile->m_hIni, (PCSZ)pszSection, (PCSZ)pszEntry, NULL); in osl_removeProfileEntry()