Lines Matching refs:pszSection

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()
630 strcpy(&Line[1], pszSection); in osl_writeProfileString()
631 Line[1 + strlen(pszSection)] = ']'; in osl_writeProfileString()
632 Line[2 + strlen(pszSection)] = '\0'; in osl_writeProfileString()
635 (! addSection(pProfile, pProfile->m_NoLines - 1, &pStr[1], strlen(pszSection)))) 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()
809 sal_uInt32 SAL_CALL osl_getProfileSectionEntries(oslProfile Profile, const sal_Char *pszSection, in osl_getProfileSectionEntries() argument
836 if ((pSec = findEntry(pProfile, pszSection, "", &NoEntry)) != NULL) in osl_getProfileSectionEntries()
872 n = GetPrivateProfileString(pszSection, NULL, NULL, pszBuffer, MaxLen, aFileName); in osl_getProfileSectionEntries()