V_ARRAY           111 ext/com_dotnet/com_handlers.c 		if (SafeArrayGetDim(V_ARRAY(&obj->v)) == 1) {	
V_ARRAY           150 ext/com_dotnet/com_handlers.c 		if (SafeArrayGetDim(V_ARRAY(&obj->v)) == 1) {	
V_ARRAY           151 ext/com_dotnet/com_handlers.c 			if (FAILED(SafeArrayGetVartype(V_ARRAY(&obj->v), &vt)) || vt == VT_EMPTY) {
V_ARRAY           166 ext/com_dotnet/com_handlers.c 				res = SafeArrayPutElement(V_ARRAY(&obj->v), &indices, &v);
V_ARRAY           168 ext/com_dotnet/com_handlers.c 				res = SafeArrayPutElement(V_ARRAY(&obj->v), &indices, &v.lVal);
V_ARRAY           554 ext/com_dotnet/com_handlers.c 	SafeArrayGetLBound(V_ARRAY(&obj->v), 1, &lbound);
V_ARRAY           555 ext/com_dotnet/com_handlers.c 	SafeArrayGetUBound(V_ARRAY(&obj->v), 1, &ubound);
V_ARRAY           177 ext/com_dotnet/com_iterator.c 		dims = SafeArrayGetDim(V_ARRAY(&obj->v));
V_ARRAY           190 ext/com_dotnet/com_iterator.c 		SafeArrayGetLBound(V_ARRAY(&I->safe_array), 1, &bound);
V_ARRAY           191 ext/com_dotnet/com_iterator.c 		SafeArrayGetUBound(V_ARRAY(&I->safe_array), 1, &I->sa_max);
V_ARRAY           106 ext/com_dotnet/com_misc.c 	dims = SafeArrayGetDim(V_ARRAY(array));
V_ARRAY           114 ext/com_dotnet/com_misc.c 	if (FAILED(SafeArrayGetVartype(V_ARRAY(array), &vt)) || vt == VT_EMPTY) {
V_ARRAY           119 ext/com_dotnet/com_misc.c 	SafeArrayGetLBound(V_ARRAY(array), 1, &lbound);
V_ARRAY           120 ext/com_dotnet/com_misc.c 	SafeArrayGetUBound(V_ARRAY(array), 1, &ubound);
V_ARRAY           134 ext/com_dotnet/com_misc.c 		SafeArrayGetElement(V_ARRAY(array), indices, dest);
V_ARRAY           140 ext/com_dotnet/com_misc.c 		SafeArrayGetElement(V_ARRAY(array), indices, &dest->lVal);
V_ARRAY           144 ext/com_dotnet/com_saproxy.c 	sa = V_ARRAY(&proxy->obj->v);
V_ARRAY           244 ext/com_dotnet/com_saproxy.c 		dims = SafeArrayGetDim(V_ARRAY(&proxy->obj->v));
V_ARRAY           256 ext/com_dotnet/com_saproxy.c 		if (FAILED(SafeArrayGetVartype(V_ARRAY(&proxy->obj->v), &vt)) || vt == VT_EMPTY) {
V_ARRAY           268 ext/com_dotnet/com_saproxy.c 			res = SafeArrayPutElement(V_ARRAY(&proxy->obj->v), indices, &v);
V_ARRAY           270 ext/com_dotnet/com_saproxy.c 			res = SafeArrayPutElement(V_ARRAY(&proxy->obj->v), indices, &v.lVal);
V_ARRAY           372 ext/com_dotnet/com_saproxy.c 	SafeArrayGetLBound(V_ARRAY(&proxy->obj->v), proxy->dimensions, &lbound);
V_ARRAY           373 ext/com_dotnet/com_saproxy.c 	SafeArrayGetUBound(V_ARRAY(&proxy->obj->v), proxy->dimensions, &ubound);
V_ARRAY           499 ext/com_dotnet/com_saproxy.c 	sa = V_ARRAY(&I->proxy->obj->v);
V_ARRAY           578 ext/com_dotnet/com_saproxy.c 	SafeArrayGetLBound(V_ARRAY(&proxy->obj->v), proxy->dimensions, &I->imin);
V_ARRAY           579 ext/com_dotnet/com_saproxy.c 	SafeArrayGetUBound(V_ARRAY(&proxy->obj->v), proxy->dimensions, &I->imax);
V_ARRAY            86 ext/com_dotnet/com_variant.c 	V_ARRAY(v) = sa;