Lines Matching refs:ByteString

53 	ByteString		maKey;
54 ByteString maValue;
62 ByteString maGroupName;
81 static ByteString& getEmptyByteString() in getEmptyByteString()
83 static ByteString aEmpty; in getEmptyByteString()
257 ByteString makeByteString(sal_uInt8 const * p, sal_uInt64 n) { in makeByteString()
265 return ByteString( in makeByteString()
351 pGroup->maGroupName = ByteString( (const sal_Char*)pLine, nNameLen ); in ImplMakeConfigList()
412 pKey->maKey = ByteString( (const sal_Char*)pLine, nNameLen ); in ImplMakeConfigList()
632 …DBG_ERROR1( "Config overwrites modified configfile:\n %s", ByteString( pData->maFileName, RTL_TEXT… in ImplWriteConfig()
793 ByteString aTraceStr( "Config::Config( " ); in Config()
794 aTraceStr += ByteString( maFileName, RTL_TEXTENCODING_UTF8 ); in Config()
834 void Config::SetGroup( const ByteString& rGroup ) in SetGroup()
847 void Config::DeleteGroup( const ByteString& rGroup ) in DeleteGroup()
902 ByteString Config::GetGroupName( sal_uInt16 nGroup ) const in GetGroupName()
910 ByteString aGroupName; in GetGroupName()
947 sal_Bool Config::HasGroup( const ByteString& rGroup ) const in HasGroup()
972 ByteString Config::ReadKey( const ByteString& rKey ) const in ReadKey()
979 UniString Config::ReadKey( const ByteString& rKey, rtl_TextEncoding eEncoding ) const in ReadKey()
988 ByteString Config::ReadKey( const ByteString& rKey, const ByteString& rDefault ) const in ReadKey()
991 ByteString aTraceStr( "Config::ReadKey( " ); in ReadKey()
996 aTraceStr += ByteString( maFileName, RTL_TEXTENCODING_UTF8 ); in ReadKey()
1023 void Config::WriteKey( const ByteString& rKey, const ByteString& rStr ) in WriteKey()
1026 ByteString aTraceStr( "Config::WriteKey( " ); in WriteKey()
1033 aTraceStr += ByteString( maFileName, RTL_TEXTENCODING_UTF8 ); in WriteKey()
1092 void Config::WriteKey( const ByteString& rKey, const UniString& rValue, rtl_TextEncoding eEncoding ) in WriteKey()
1096 WriteKey( rKey, ByteString( rValue, eEncoding ) ); in WriteKey()
1101 void Config::DeleteKey( const ByteString& rKey ) in DeleteKey()
1150 ByteString aTraceStr( "Config::GetKeyCount()" ); in GetKeyCount()
1154 aTraceStr += ByteString( maFileName, RTL_TEXTENCODING_UTF8 ); in GetKeyCount()
1182 ByteString Config::GetKeyName( sal_uInt16 nKey ) const in GetKeyName()
1185 ByteString aTraceStr( "Config::GetKeyName( " ); in GetKeyName()
1186 aTraceStr += ByteString::CreateFromInt32(nKey); in GetKeyName()
1190 aTraceStr += ByteString( maFileName, RTL_TEXTENCODING_UTF8 ); in GetKeyName()
1217 ByteString Config::ReadKey( sal_uInt16 nKey ) const in ReadKey()
1220 ByteString aTraceStr( "Config::ReadKey( " ); in ReadKey()
1221 aTraceStr += ByteString::CreateFromInt32( nKey ); in ReadKey()
1225 aTraceStr += ByteString( maFileName, RTL_TEXTENCODING_UTF8 ); in ReadKey()