rsrc_int         1108 ext/zip/php_zip.c 	zip_rsrc *rsrc_int;
rsrc_int         1129 ext/zip/php_zip.c 	rsrc_int = (zip_rsrc *)emalloc(sizeof(zip_rsrc));
rsrc_int         1131 ext/zip/php_zip.c 	rsrc_int->za = zip_open(resolved_path, 0, &err);
rsrc_int         1132 ext/zip/php_zip.c 	if (rsrc_int->za == NULL) {
rsrc_int         1133 ext/zip/php_zip.c 		efree(rsrc_int);
rsrc_int         1137 ext/zip/php_zip.c 	rsrc_int->index_current = 0;
rsrc_int         1138 ext/zip/php_zip.c 	rsrc_int->num_files = zip_get_num_files(rsrc_int->za);
rsrc_int         1140 ext/zip/php_zip.c 	RETURN_RES(zend_register_resource(rsrc_int, le_zip_dir));
rsrc_int         1171 ext/zip/php_zip.c 	zip_rsrc *rsrc_int;
rsrc_int         1177 ext/zip/php_zip.c 	if ((rsrc_int = (zip_rsrc *)zend_fetch_resource(Z_RES_P(zip_dp), le_zip_dir_name, le_zip_dir)) == NULL) {
rsrc_int         1181 ext/zip/php_zip.c 	if (rsrc_int && rsrc_int->za) {
rsrc_int         1182 ext/zip/php_zip.c 		if (rsrc_int->index_current >= rsrc_int->num_files) {
rsrc_int         1188 ext/zip/php_zip.c 		ret = zip_stat_index(rsrc_int->za, rsrc_int->index_current, 0, &zr_rsrc->sb);
rsrc_int         1195 ext/zip/php_zip.c 		zr_rsrc->zf = zip_fopen_index(rsrc_int->za, rsrc_int->index_current, 0);
rsrc_int         1197 ext/zip/php_zip.c 			rsrc_int->index_current++;