Lines Matching refs:len

379 RegError ORegKey::setLongListValue(const OUString& valueName, sal_Int32* pValueList, sal_uInt32 len)  in setLongListValue()  argument
401 size += len * 4; in setLongListValue()
408 writeUINT32(pBuffer+VALUE_HEADEROFFSET, len); in setLongListValue()
412 for (sal_uInt32 i=0; i < len; i++) in setLongListValue()
438 …Error ORegKey::setStringListValue(const OUString& valueName, sal_Char** pValueList, sal_uInt32 len) in setStringListValue() argument
461 for (i=0; i < len; i++) in setStringListValue()
471 writeUINT32(pBuffer+VALUE_HEADEROFFSET, len); in setStringListValue()
476 for (i=0; i < len; i++) in setStringListValue()
506 …r ORegKey::setUnicodeListValue(const OUString& valueName, sal_Unicode** pValueList, sal_uInt32 len) in setUnicodeListValue() argument
529 for (i=0; i < len; i++) in setUnicodeListValue()
539 writeUINT32(pBuffer+VALUE_HEADEROFFSET, len); in setUnicodeListValue()
544 for (i=0; i < len; i++) in setUnicodeListValue()
742 sal_uInt32 len = 0; in getLongListValue() local
743 readUINT32(pBuffer, len); in getLongListValue()
745 *pLen = len; in getLongListValue()
746 sal_Int32* pVList = (sal_Int32*)rtl_allocateZeroMemory(len * sizeof(sal_Int32)); in getLongListValue()
750 for (sal_uInt32 i=0; i < len; i++) in getLongListValue()
839 sal_uInt32 len = 0; in getStringListValue() local
840 readUINT32(pBuffer, len); in getStringListValue()
842 *pLen = len; in getStringListValue()
843 sal_Char** pVList = (sal_Char**)rtl_allocateZeroMemory(len * sizeof(sal_Char*)); in getStringListValue()
849 for (sal_uInt32 i=0; i < len; i++) in getStringListValue()
945 sal_uInt32 len = 0; in getUnicodeListValue() local
946 readUINT32(pBuffer, len); in getUnicodeListValue()
948 *pLen = len; in getUnicodeListValue()
949 sal_Unicode** pVList = (sal_Unicode**)rtl_allocateZeroMemory(len * sizeof(sal_Unicode*)); in getUnicodeListValue()
955 for (sal_uInt32 i=0; i < len; i++) in getUnicodeListValue()