Lines Matching refs:profile
45 oslProfile profile; member in osl::Profile
53 profile = osl_openProfile(strProfileName.pData, Options); in Profile()
54 if( ! profile ) in Profile()
64 osl_closeProfile(profile); in ~Profile()
70 return osl_flushProfile(profile); in flush()
77 return osl_readProfileString( profile, in readString()
88 return osl_readProfileBool( profile, rSection.getStr(), rEntry.getStr(), bDefault ); in readBool()
105 …sal_uInt32 nRet = osl_readProfileIdent( profile, rSection.getStr(), rEntry.getStr(), nFirstId, pSt… in readIdent()
113 return osl_writeProfileString( profile, rSection.getStr(), rEntry.getStr(), rString.getStr()); in writeString()
118 return osl_writeProfileBool( profile, rSection.getStr(), rEntry.getStr(), Value); in writeBool()
136 … osl_writeProfileIdent( profile, rSection.getStr(), rEntry.getStr(), nFirstId, pStrings, nValue ); in writeIdent()
147 return osl_removeProfileEntry( profile, rSection.getStr(), rEntry.getStr()); in removeEntry()
159 int n = osl_getProfileSectionEntries( profile, rSection.getStr(), NULL, 0 ); in getSectionEntries()
163 osl_getProfileSectionEntries( profile, rSection.getStr(), pBuf, n+1 ); in getSectionEntries()
182 int n = osl_getProfileSections( profile, NULL, 0 ); in getSections()
186 osl_getProfileSections( profile, pBuf, n+1 ); in getSections()