Lines Matching refs:pszEntry

484                               const sal_Char* pszSection, const sal_Char* pszEntry,  in osl_readProfileString()  argument
532 if (((pSec = findEntry(pProfile, pszSection, pszEntry, &NoEntry)) != NULL) && in osl_readProfileString()
580 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_readProfileBool() argument
590 if (osl_readProfileString(Profile, pszSection, pszEntry, Line, sizeof(Line), "")) in osl_readProfileBool()
612 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_readProfileIdent() argument
624 if (osl_readProfileString(Profile, pszSection, pszEntry, Line, sizeof(Line), "")) in osl_readProfileIdent()
645 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_writeProfileString() argument
694 Line = (sal_Char*) malloc(strlen(pszEntry)+strlen(pszString)+48); in osl_writeProfileString()
698 if ((pSec = findEntry(pProfile, pszSection, pszEntry, &NoEntry)) == NULL) in osl_writeProfileString()
729 strcpy(&Line[0], pszEntry); in osl_writeProfileString()
730 Line[0 + strlen(pszEntry)] = '='; in osl_writeProfileString()
731 strcpy(&Line[1 + strlen(pszEntry)], pszString); in osl_writeProfileString()
741 (! addEntry(pProfile, pSec, i, pStr, strlen(pszEntry)))) in osl_writeProfileString()
762 setEntry(pProfile, pSec, NoEntry, i, pProfile->m_Lines[i], strlen(pszEntry)); in osl_writeProfileString()
789 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_writeProfileBool() argument
799 bRet=osl_writeProfileString(Profile, pszSection, pszEntry, STR_INI_BOOLONE); in osl_writeProfileBool()
801 bRet=osl_writeProfileString(Profile, pszSection, pszEntry, STR_INI_BOOLZERO); in osl_writeProfileBool()
812 const sal_Char* pszSection, const sal_Char* pszEntry, in osl_writeProfileIdent() argument
828 bRet = osl_writeProfileString(Profile, pszSection, pszEntry, Strings[i]); in osl_writeProfileIdent()
838 const sal_Char *pszSection, const sal_Char *pszEntry) in osl_removeProfileEntry() argument
887 if (((pSec = findEntry(pProfile, pszSection, pszEntry, &NoEntry)) != NULL) && in osl_removeProfileEntry()