Lines Matching refs:return_value

423 …le_path, int file_path_len, int use_copy, zend_class_entry *ce, zval *return_value TSRMLS_DC) /* {…  in spl_filesystem_object_create_info()
451 return_value->value.obj = spl_filesystem_object_new_ex(ce, &intern TSRMLS_CC); in spl_filesystem_object_create_info()
452 Z_TYPE_P(return_value) = IS_OBJECT; in spl_filesystem_object_create_info()
457 zend_call_method_with_1_params(&return_value, ce, &ce->constructor, "__construct", NULL, arg1); in spl_filesystem_object_create_info()
467 … spl_filesystem_object *source, int type, zend_class_entry *ce, zval *return_value TSRMLS_DC) /* {… in spl_filesystem_object_create_type()
494 return_value->value.obj = spl_filesystem_object_new_ex(ce, &intern TSRMLS_CC); in spl_filesystem_object_create_type()
495 Z_TYPE_P(return_value) = IS_OBJECT; in spl_filesystem_object_create_type()
501 zend_call_method_with_1_params(&return_value, ce, &ce->constructor, "__construct", NULL, arg1); in spl_filesystem_object_create_type()
515 return_value->value.obj = spl_filesystem_object_new_ex(ce, &intern TSRMLS_CC); in spl_filesystem_object_create_type()
516 Z_TYPE_P(return_value) = IS_OBJECT; in spl_filesystem_object_create_type()
525 …zend_call_method_with_2_params(&return_value, ce, &ce->constructor, "__construct", NULL, arg1, arg… in spl_filesystem_object_create_type()
543 zval_dtor(return_value); in spl_filesystem_object_create_type()
544 Z_TYPE_P(return_value) = IS_NULL; in spl_filesystem_object_create_type()
550 zval_dtor(return_value); in spl_filesystem_object_create_type()
551 Z_TYPE_P(return_value) = IS_NULL; in spl_filesystem_object_create_type()
1097 spl_filesystem_object_create_type(0, intern, SPL_FS_INFO, NULL, return_value TSRMLS_CC); in SPL_METHOD()
1164 php_stat(intern->file_name, intern->file_name_len, func_num, return_value TSRMLS_CC); \
1340 spl_filesystem_object_create_type(ht, intern, SPL_FS_FILE, NULL, return_value TSRMLS_CC); in SPL_METHOD()
1391 spl_filesystem_object_create_type(ht, intern, SPL_FS_INFO, ce, return_value TSRMLS_CC); in SPL_METHOD()
1414 spl_filesystem_object_create_info(intern, dpath, path_len, 1, ce, return_value TSRMLS_CC); in SPL_METHOD()
1504 php_stat(intern->file_name, intern->file_name_len, FS_IS_LINK, return_value TSRMLS_CC); in SPL_METHOD()
1505 if (zend_is_true(return_value)) { in SPL_METHOD()
1509 php_stat(intern->file_name, intern->file_name_len, FS_IS_DIR, return_value TSRMLS_CC); in SPL_METHOD()
1533 spl_instantiate_arg_ex2(Z_OBJCE_P(getThis()), &return_value, 0, zpath, zflags TSRMLS_CC); in SPL_METHOD()
1537 subdir = (spl_filesystem_object*)zend_object_store_get_object(return_value TSRMLS_CC); in SPL_METHOD()
2098 …tem_object *intern, zend_function *func_ptr, int pass_num_args, zval *return_value, zval *arg2 TSR… in spl_filesystem_file_call() argument
2140 ZVAL_ZVAL(return_value, retval, 1, 1); in spl_filesystem_file_call()
2156 spl_filesystem_file_call(intern, func_ptr, pass_num_args, return_value, arg2 TSRMLS_CC); \
2159 …em_object *intern, char delimiter, char enclosure, char escape, zval *return_value TSRMLS_DC) /* {… in spl_filesystem_file_read_csv()
2177 if (return_value) { in spl_filesystem_file_read_csv()
2178 if (Z_TYPE_P(return_value) != IS_NULL) { in spl_filesystem_file_read_csv()
2179 zval_dtor(return_value); in spl_filesystem_file_read_csv()
2180 ZVAL_NULL(return_value); in spl_filesystem_file_read_csv()
2182 ZVAL_ZVAL(return_value, intern->u.file.current_zval, 1, 0); in spl_filesystem_file_read_csv()
2616 spl_filesystem_file_read_csv(intern, delimiter, enclosure, escape, return_value TSRMLS_CC); in SPL_METHOD()
2715 array_init(return_value); in SPL_METHOD()
2722 add_next_index_string(return_value, delimiter, 1); in SPL_METHOD()
2723 add_next_index_string(return_value, enclosure, 1); in SPL_METHOD()
2880 Z_STRVAL_P(return_value) = emalloc(length + 1); in SPL_METHOD()
2881 …Z_STRLEN_P(return_value) = php_stream_read(intern->u.file.stream, Z_STRVAL_P(return_value), length… in SPL_METHOD()
2884 Z_STRVAL_P(return_value)[Z_STRLEN_P(return_value)] = 0; in SPL_METHOD() local
2885 Z_TYPE_P(return_value) = IS_STRING; in SPL_METHOD()