Lines Matching refs:pszSection

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()
462 PrfQueryProfileString(pProfile->m_hIni, (PCSZ)pszSection, 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()
585 strcpy(&Line[1], pszSection); in osl_writeProfileString()
586 Line[1 + strlen(pszSection)] = ']'; in osl_writeProfileString()
587 Line[2 + strlen(pszSection)] = '\0'; in osl_writeProfileString()
590 (! addSection(pProfile, pProfile->m_NoLines - 1, &pStr[1], strlen(pszSection)))) in osl_writeProfileString()
638 PrfWriteProfileString(pProfile->m_hIni, (PCSZ)pszSection, 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()
755 sal_uInt32 SAL_CALL osl_getProfileSectionEntries(oslProfile Profile, const sal_Char *pszSection, in osl_getProfileSectionEntries() argument
782 if ((pSec = findEntry(pProfile, pszSection, "", &NoEntry)) != NULL) in osl_getProfileSectionEntries()
814 n = PrfQueryProfileString(pProfile->m_hIni, (PCSZ)pszSection, NULL, NULL, in osl_getProfileSectionEntries()