Home
last modified time | relevance | path

Searched refs:rgsabound (Results 1 – 6 of 6) sorted by relevance

/AOO41X/main/connectivity/source/drivers/ado/
H A DAwrapado.cxx1633 SAFEARRAYBOUND rgsabound[1]; in getExportedKeys() local
1638 rgsabound[0].lLbound = 0; in getExportedKeys()
1639 rgsabound[0].cElements = sizeof varCriteria / sizeof varCriteria[0]; in getExportedKeys()
1640 psa = SafeArrayCreate( VT_VARIANT, 1, rgsabound ); in getExportedKeys()
1674 SAFEARRAYBOUND rgsabound[1]; in getImportedKeys() local
1679 rgsabound[0].lLbound = 0; in getImportedKeys()
1680 rgsabound[0].cElements = sizeof varCriteria / sizeof varCriteria[0]; in getImportedKeys()
1681 psa = SafeArrayCreate( VT_VARIANT, 1, rgsabound ); in getImportedKeys()
1717 SAFEARRAYBOUND rgsabound[1]; in getPrimaryKeys() local
1722 rgsabound[0].lLbound = 0; in getPrimaryKeys()
[all …]
H A DAolevariant.cxx186 SAFEARRAYBOUND rgsabound[1]; in OLEVariant() local
187 rgsabound[0].lLbound = 0; in OLEVariant()
188 rgsabound[0].cElements = x.getLength(); in OLEVariant()
H A DAResultSet.cxx939 SAFEARRAYBOUND rgsabound[1]; in deleteRows() local
940 rgsabound[0].lLbound = 0; in deleteRows()
941 rgsabound[0].cElements = rows.getLength(); in deleteRows()
942 SAFEARRAY *psa = SafeArrayCreate( VT_VARIANT, 1, rgsabound ); in deleteRows()
/AOO41X/main/extensions/test/ole/OleConverterVar1/
H A Dsmartarray.h36 SAFEARRAYBOUND rgsabound[1]; in SmartArray() local
37 rgsabound[0].cElements= count; in SmartArray()
38 rgsabound[0].lLbound= 0; in SmartArray()
39 m_array= SafeArrayCreate( destVartype, 1, rgsabound); in SmartArray()
212 SAFEARRAYBOUND rgsabound[1]; in SmartArray() local
213 rgsabound[0].cElements= count; in SmartArray()
214 rgsabound[0].lLbound= 0; in SmartArray()
/AOO41X/main/extensions/source/ole/
H A Dunoconversionutilities.hxx1326 SAFEARRAYBOUND rgsabound[1]; in createUnoSequenceWrapper() local
1327 rgsabound[0].lLbound = 0; in createUnoSequenceWrapper()
1328 rgsabound[0].cElements = n; in createUnoSequenceWrapper()
1332 pArray = SafeArrayCreate(VT_VARIANT, 1, rgsabound); in createUnoSequenceWrapper()
/AOO41X/main/extensions/source/activex/main/
H A DSOActiveX.cpp284 …&& ( !aFrames.parray || aFrames.parray->cDims == 1 && aFrames.parray->rgsabound[0].cElements == 0 … in TerminateOffice()