indices           139 ext/com_dotnet/com_handlers.c 		LONG indices = 0;
indices           148 ext/com_dotnet/com_handlers.c 			indices = (LONG)Z_LVAL_P(offset);
indices           158 ext/com_dotnet/com_handlers.c 				res = SafeArrayPutElement(V_ARRAY(&obj->v), &indices, &v);
indices           160 ext/com_dotnet/com_handlers.c 				res = SafeArrayPutElement(V_ARRAY(&obj->v), &indices, &v.lVal);
indices           102 ext/com_dotnet/com_misc.c 	LONG indices[1];
indices           134 ext/com_dotnet/com_misc.c 	indices[0] = dim1;
indices           137 ext/com_dotnet/com_misc.c 		SafeArrayGetElement(V_ARRAY(array), indices, dest);
indices           143 ext/com_dotnet/com_misc.c 		SafeArrayGetElement(V_ARRAY(array), indices, &dest->lVal);
indices            49 ext/com_dotnet/com_saproxy.c 	zval *indices;
indices            60 ext/com_dotnet/com_saproxy.c 	LONG *indices;
indices            70 ext/com_dotnet/com_saproxy.c 		ZVAL_DUP(&dest->indices[i], &src->indices[i]);
indices           108 ext/com_dotnet/com_saproxy.c 			args[i-1] = proxy->indices[i];
indices           112 ext/com_dotnet/com_saproxy.c 		convert_to_string(&proxy->indices[0]);
indices           115 ext/com_dotnet/com_saproxy.c 		res = php_com_do_invoke(proxy->obj, Z_STRVAL(proxy->indices[0]),
indices           116 ext/com_dotnet/com_saproxy.c 			   	Z_STRLEN(proxy->indices[0]), DISPATCH_METHOD|DISPATCH_PROPERTYGET, &v,
indices           158 ext/com_dotnet/com_saproxy.c 		LONG *indices;
indices           165 ext/com_dotnet/com_saproxy.c 		indices = safe_emalloc(dims, sizeof(LONG), 0);
indices           169 ext/com_dotnet/com_saproxy.c 			convert_to_long(&proxy->indices[i]);
indices           170 ext/com_dotnet/com_saproxy.c 			indices[i] = (LONG)Z_LVAL(proxy->indices[i]);
indices           174 ext/com_dotnet/com_saproxy.c 		indices[dims-1] = (LONG)Z_LVAL_P(offset);
indices           182 ext/com_dotnet/com_saproxy.c 			res = SafeArrayGetElement(sa, indices, &v);
indices           185 ext/com_dotnet/com_saproxy.c 			res = SafeArrayGetElement(sa, indices, &v.lVal);
indices           188 ext/com_dotnet/com_saproxy.c 		efree(indices);
indices           220 ext/com_dotnet/com_saproxy.c 			ZVAL_COPY_VALUE(&args[i-1], &proxy->indices[i]);
indices           225 ext/com_dotnet/com_saproxy.c 		convert_to_string(&proxy->indices[0]);
indices           227 ext/com_dotnet/com_saproxy.c 		if (SUCCESS == php_com_do_invoke(proxy->obj, Z_STRVAL(proxy->indices[0]),
indices           228 ext/com_dotnet/com_saproxy.c 					Z_STRLEN(proxy->indices[0]), DISPATCH_PROPERTYPUT, &v, proxy->dimensions + 1,
indices           236 ext/com_dotnet/com_saproxy.c 		LONG *indices;
indices           240 ext/com_dotnet/com_saproxy.c 		indices = safe_emalloc(dims, sizeof(LONG), 0);
indices           243 ext/com_dotnet/com_saproxy.c 			convert_to_long(&proxy->indices[i]);
indices           244 ext/com_dotnet/com_saproxy.c 			indices[i] = (LONG)Z_LVAL(proxy->indices[i]);
indices           249 ext/com_dotnet/com_saproxy.c 		indices[dims-1] = (LONG)Z_LVAL_P(offset);
indices           263 ext/com_dotnet/com_saproxy.c 			res = SafeArrayPutElement(V_ARRAY(&proxy->obj->v), indices, &v);
indices           265 ext/com_dotnet/com_saproxy.c 			res = SafeArrayPutElement(V_ARRAY(&proxy->obj->v), indices, &v.lVal);
indices           268 ext/com_dotnet/com_saproxy.c 		efree(indices);
indices           380 ext/com_dotnet/com_saproxy.c 	efree(proxy->indices);
indices           392 ext/com_dotnet/com_saproxy.c 	cloneproxy->indices = safe_emalloc(cloneproxy->dimensions, sizeof(zval *), 0);
indices           442 ext/com_dotnet/com_saproxy.c 	proxy->indices = safe_emalloc(proxy->dimensions, sizeof(zval *), 0);
indices           448 ext/com_dotnet/com_saproxy.c 	ZVAL_DUP(&proxy->indices[proxy->dimensions-1], index);
indices           465 ext/com_dotnet/com_saproxy.c 	efree(I->indices);
indices           483 ext/com_dotnet/com_saproxy.c 	I->indices[I->proxy->dimensions-1] = I->key;
indices           493 ext/com_dotnet/com_saproxy.c 		SafeArrayGetElement(sa, I->indices, &v);
indices           496 ext/com_dotnet/com_saproxy.c 		SafeArrayGetElement(sa, I->indices, &v.lVal);
indices           555 ext/com_dotnet/com_saproxy.c 	I->indices = safe_emalloc(proxy->dimensions + 1, sizeof(LONG), 0);
indices           557 ext/com_dotnet/com_saproxy.c 		convert_to_long(&proxy->indices[i]);
indices           558 ext/com_dotnet/com_saproxy.c 		I->indices[i] = (LONG)Z_LVAL(proxy->indices[i]);