Lines Matching refs:return_value

388 		array_init(return_value); \
389 add_ascii_assoc_string(return_value, "name", (char *)(sb)->name); \
390 add_ascii_assoc_long(return_value, "index", (zend_long) (sb)->index); \
391 add_ascii_assoc_long(return_value, "crc", (zend_long) (sb)->crc); \
392 add_ascii_assoc_long(return_value, "size", (zend_long) (sb)->size); \
393 add_ascii_assoc_long(return_value, "mtime", (zend_long) (sb)->mtime); \
394 add_ascii_assoc_long(return_value, "comp_size", (zend_long) (sb)->comp_size); \
395 add_ascii_assoc_long(return_value, "comp_method", (zend_long) (sb)->comp_method); \
396 add_ascii_assoc_long(return_value, "encryption_method", (zend_long) (sb)->encryption_method); \
401 array_init(return_value); \
402 add_ascii_assoc_string(return_value, "name", (char *)(sb)->name); \
403 add_ascii_assoc_long(return_value, "index", (zend_long) (sb)->index); \
404 add_ascii_assoc_long(return_value, "crc", (zend_long) (sb)->crc); \
405 add_ascii_assoc_long(return_value, "size", (zend_long) (sb)->size); \
406 add_ascii_assoc_long(return_value, "mtime", (zend_long) (sb)->mtime); \
407 add_ascii_assoc_long(return_value, "comp_size", (zend_long) (sb)->comp_size); \
408 add_ascii_assoc_long(return_value, "comp_method", (zend_long) (sb)->comp_method); \
511 int php_zip_glob(char *pattern, int pattern_len, zend_long flags, zval *return_value) /* {{{ */ in php_zip_glob() argument
564 array_init(return_value); in php_zip_glob()
573 array_init(return_value); in php_zip_glob()
583 array_init(return_value); in php_zip_glob()
604 add_next_index_string(return_value, globbuf.gl_pathv[n]+cwd_skip); in php_zip_glob()
617 int php_zip_pcre(zend_string *regexp, char *path, int path_len, zval *return_value) /* {{{ */ in php_zip_pcre() argument
662 array_init(return_value); in php_zip_pcre()
710 add_next_index_string(return_value, fullpath); in php_zip_pcre()
1708 found = php_zip_glob(ZSTR_VAL(pattern), ZSTR_LEN(pattern), flags, return_value);
1710 found = php_zip_pcre(pattern, path, path_len, return_value);
1723 if ((zval_file = zend_hash_index_find(Z_ARRVAL_P(return_value), i)) != NULL) {
1740 zend_array_destroy(Z_ARR_P(return_value));
1757 zend_array_destroy(Z_ARR_P(return_value));
2800 php_stream_to_zval(stream, return_value);