V_ARRAY           103 ext/com_dotnet/com_handlers.c 		if (SafeArrayGetDim(V_ARRAY(&obj->v)) == 1) {
V_ARRAY           142 ext/com_dotnet/com_handlers.c 		if (SafeArrayGetDim(V_ARRAY(&obj->v)) == 1) {
V_ARRAY           143 ext/com_dotnet/com_handlers.c 			if (FAILED(SafeArrayGetVartype(V_ARRAY(&obj->v), &vt)) || vt == VT_EMPTY) {
V_ARRAY           158 ext/com_dotnet/com_handlers.c 				res = SafeArrayPutElement(V_ARRAY(&obj->v), &indices, &v);
V_ARRAY           160 ext/com_dotnet/com_handlers.c 				res = SafeArrayPutElement(V_ARRAY(&obj->v), &indices, &v.lVal);
V_ARRAY           534 ext/com_dotnet/com_handlers.c 	SafeArrayGetLBound(V_ARRAY(&obj->v), 1, &lbound);
V_ARRAY           535 ext/com_dotnet/com_handlers.c 	SafeArrayGetUBound(V_ARRAY(&obj->v), 1, &ubound);
V_ARRAY           175 ext/com_dotnet/com_iterator.c 		dims = SafeArrayGetDim(V_ARRAY(&obj->v));
V_ARRAY           188 ext/com_dotnet/com_iterator.c 		SafeArrayGetLBound(V_ARRAY(&I->safe_array), 1, &bound);
V_ARRAY           189 ext/com_dotnet/com_iterator.c 		SafeArrayGetUBound(V_ARRAY(&I->safe_array), 1, &I->sa_max);
V_ARRAY           109 ext/com_dotnet/com_misc.c 	dims = SafeArrayGetDim(V_ARRAY(array));
V_ARRAY           117 ext/com_dotnet/com_misc.c 	if (FAILED(SafeArrayGetVartype(V_ARRAY(array), &vt)) || vt == VT_EMPTY) {
V_ARRAY           122 ext/com_dotnet/com_misc.c 	SafeArrayGetLBound(V_ARRAY(array), 1, &lbound);
V_ARRAY           123 ext/com_dotnet/com_misc.c 	SafeArrayGetUBound(V_ARRAY(array), 1, &ubound);
V_ARRAY           137 ext/com_dotnet/com_misc.c 		SafeArrayGetElement(V_ARRAY(array), indices, dest);
V_ARRAY           143 ext/com_dotnet/com_misc.c 		SafeArrayGetElement(V_ARRAY(array), indices, &dest->lVal);
V_ARRAY           139 ext/com_dotnet/com_saproxy.c 	sa = V_ARRAY(&proxy->obj->v);
V_ARRAY           239 ext/com_dotnet/com_saproxy.c 		dims = SafeArrayGetDim(V_ARRAY(&proxy->obj->v));
V_ARRAY           251 ext/com_dotnet/com_saproxy.c 		if (FAILED(SafeArrayGetVartype(V_ARRAY(&proxy->obj->v), &vt)) || vt == VT_EMPTY) {
V_ARRAY           263 ext/com_dotnet/com_saproxy.c 			res = SafeArrayPutElement(V_ARRAY(&proxy->obj->v), indices, &v);
V_ARRAY           265 ext/com_dotnet/com_saproxy.c 			res = SafeArrayPutElement(V_ARRAY(&proxy->obj->v), indices, &v.lVal);
V_ARRAY           360 ext/com_dotnet/com_saproxy.c 	SafeArrayGetLBound(V_ARRAY(&proxy->obj->v), proxy->dimensions, &lbound);
V_ARRAY           361 ext/com_dotnet/com_saproxy.c 	SafeArrayGetUBound(V_ARRAY(&proxy->obj->v), proxy->dimensions, &ubound);
V_ARRAY           485 ext/com_dotnet/com_saproxy.c 	sa = V_ARRAY(&I->proxy->obj->v);
V_ARRAY           561 ext/com_dotnet/com_saproxy.c 	SafeArrayGetLBound(V_ARRAY(&proxy->obj->v), proxy->dimensions, &I->imin);
V_ARRAY           562 ext/com_dotnet/com_saproxy.c 	SafeArrayGetUBound(V_ARRAY(&proxy->obj->v), proxy->dimensions, &I->imax);
V_ARRAY            84 ext/com_dotnet/com_variant.c 	V_ARRAY(v) = sa;