Lines Matching refs:rSection

73 		rtl::OString readString( const rtl::OString& rSection, const rtl::OString& rEntry,   in readString()  argument
78 rSection.getStr(), in readString()
86 sal_Bool readBool( const rtl::OString& rSection, const rtl::OString& rEntry, sal_Bool bDefault ) in readBool() argument
88 return osl_readProfileBool( profile, rSection.getStr(), rEntry.getStr(), bDefault ); in readBool()
91 sal_uInt32 readIdent(const rtl::OString& rSection, const rtl::OString& rEntry, in readIdent() argument
105 …sal_uInt32 nRet = osl_readProfileIdent( profile, rSection.getStr(), rEntry.getStr(), nFirstId, pSt… in readIdent()
110 sal_Bool writeString(const rtl::OString& rSection, const rtl::OString& rEntry, in writeString() argument
113 return osl_writeProfileString( profile, rSection.getStr(), rEntry.getStr(), rString.getStr()); in writeString()
116 sal_Bool writeBool(const rtl::OString& rSection, const rtl::OString& rEntry, sal_Bool Value) in writeBool() argument
118 return osl_writeProfileBool( profile, rSection.getStr(), rEntry.getStr(), Value); in writeBool()
121 sal_Bool writeIdent(const rtl::OString& rSection, const rtl::OString& rEntry, in writeIdent() argument
136 … osl_writeProfileIdent( profile, rSection.getStr(), rEntry.getStr(), nFirstId, pStrings, nValue ); in writeIdent()
145 sal_Bool removeEntry(const rtl::OString& rSection, const rtl::OString& rEntry) in removeEntry() argument
147 return osl_removeProfileEntry( profile, rSection.getStr(), rEntry.getStr()); in removeEntry()
154 std::list< rtl::OString > getSectionEntries(const rtl::OString& rSection ) in getSectionEntries() argument
159 int n = osl_getProfileSectionEntries( profile, rSection.getStr(), NULL, 0 ); in getSectionEntries()
163 osl_getProfileSectionEntries( profile, rSection.getStr(), pBuf, n+1 ); in getSectionEntries()