static_variables  348 Zend/zend_closures.c 		if (closure->func.type == ZEND_USER_FUNCTION && closure->func.op_array.static_variables) {
static_variables  349 Zend/zend_closures.c 			HashTable *static_variables = closure->func.op_array.static_variables;
static_variables  352 Zend/zend_closures.c 			zend_hash_copy(Z_ARRVAL_P(val), static_variables, (copy_ctor_func_t)zval_add_ref, NULL, sizeof(zval*));
static_variables  400 Zend/zend_closures.c 		closure->func.op_array.static_variables : NULL;
static_variables  476 Zend/zend_closures.c 		if (closure->func.op_array.static_variables) {
static_variables  477 Zend/zend_closures.c 			HashTable *static_variables = closure->func.op_array.static_variables;
static_variables  479 Zend/zend_closures.c 			ALLOC_HASHTABLE(closure->func.op_array.static_variables);
static_variables  480 Zend/zend_closures.c 			zend_hash_init(closure->func.op_array.static_variables, zend_hash_num_elements(static_variables), NULL, ZVAL_PTR_DTOR, 0);
static_variables  481 Zend/zend_closures.c 			zend_hash_apply_with_arguments(static_variables TSRMLS_CC, (apply_func_args_t)zval_copy_static_var, 1, closure->func.op_array.static_variables);
static_variables 3104 Zend/zend_compile.c 		if (op_array->static_variables) {
static_variables 3105 Zend/zend_compile.c 			HashTable *static_variables = op_array->static_variables;
static_variables 3108 Zend/zend_compile.c 			ALLOC_HASHTABLE(op_array->static_variables);
static_variables 3109 Zend/zend_compile.c 			zend_hash_init(op_array->static_variables, zend_hash_num_elements(static_variables), NULL, ZVAL_PTR_DTOR, 0);
static_variables 3110 Zend/zend_compile.c 			zend_hash_copy(op_array->static_variables, static_variables, (copy_ctor_func_t) zval_add_ref, (void *) &tmp_zval, sizeof(zval *));
static_variables 4106 Zend/zend_compile.c 		if (fn->type == ZEND_USER_FUNCTION && fn->op_array.static_variables) {
static_variables 4620 Zend/zend_compile.c 		function->op_array.static_variables = NULL; /* NULL out the unbound function */
static_variables 6105 Zend/zend_compile.c 	if (!CG(active_op_array)->static_variables) {
static_variables 6109 Zend/zend_compile.c 		ALLOC_HASHTABLE(CG(active_op_array)->static_variables);
static_variables 6110 Zend/zend_compile.c 		zend_hash_init(CG(active_op_array)->static_variables, 2, NULL, ZVAL_PTR_DTOR, 0);
static_variables 6112 Zend/zend_compile.c 	zend_hash_update(CG(active_op_array)->static_variables, Z_STRVAL(varname->u.constant), Z_STRLEN(varname->u.constant)+1, &tmp, sizeof(zval *), NULL);
static_variables  300 Zend/zend_compile.h 	HashTable *static_variables;
static_variables 1020 Zend/zend_execute.c 			if (!EG(active_op_array)->static_variables) {
static_variables 1021 Zend/zend_execute.c 				ALLOC_HASHTABLE(EG(active_op_array)->static_variables);
static_variables 1022 Zend/zend_execute.c 				zend_hash_init(EG(active_op_array)->static_variables, 2, NULL, ZVAL_PTR_DTOR, 0);
static_variables 1024 Zend/zend_execute.c 			return EG(active_op_array)->static_variables;
static_variables  272 Zend/zend_generators.c 		if (op_array->static_variables) {
static_variables  273 Zend/zend_generators.c 			ALLOC_HASHTABLE(op_array_copy->static_variables);
static_variables  275 Zend/zend_generators.c 				op_array_copy->static_variables, 
static_variables  276 Zend/zend_generators.c 				zend_hash_num_elements(op_array->static_variables),
static_variables  280 Zend/zend_generators.c 				op_array->static_variables TSRMLS_CC,
static_variables  282 Zend/zend_generators.c 				1, op_array_copy->static_variables
static_variables   91 Zend/zend_opcode.c 	op_array->static_variables = NULL;
static_variables  133 Zend/zend_opcode.c 	if (op_array->static_variables) {
static_variables  134 Zend/zend_opcode.c 		zend_hash_clean(op_array->static_variables);
static_variables  360 Zend/zend_opcode.c 	if (op_array->static_variables) {
static_variables  361 Zend/zend_opcode.c 		zend_hash_destroy(op_array->static_variables);
static_variables  362 Zend/zend_opcode.c 		FREE_HASHTABLE(op_array->static_variables);
static_variables  653 ext/opcache/Optimizer/zend_optimizer.c 					HashTable *ht = op_array->static_variables;
static_variables  655 ext/opcache/Optimizer/zend_optimizer.c 					op_array->static_variables = ht;
static_variables 2263 ext/opcache/ZendAccelerator.c 		if (function->op_array.static_variables) {
static_variables 2264 ext/opcache/ZendAccelerator.c 			function->op_array.static_variables->pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor;
static_variables 2265 ext/opcache/ZendAccelerator.c 			accel_fast_hash_destroy(function->op_array.static_variables);
static_variables 2266 ext/opcache/ZendAccelerator.c 			function->op_array.static_variables = NULL;
static_variables 2277 ext/opcache/ZendAccelerator.c 		if (function->op_array.static_variables) {
static_variables 2278 ext/opcache/ZendAccelerator.c 			function->op_array.static_variables->pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor;
static_variables 2279 ext/opcache/ZendAccelerator.c 			accel_fast_hash_destroy(function->op_array.static_variables);
static_variables 2280 ext/opcache/ZendAccelerator.c 			function->op_array.static_variables = NULL;
static_variables   56 ext/opcache/zend_accelerator_util_funcs.c 		if (function->op_array.static_variables) {
static_variables   58 ext/opcache/zend_accelerator_util_funcs.c 			efree(function->op_array.static_variables);
static_variables   59 ext/opcache/zend_accelerator_util_funcs.c 			function->op_array.static_variables = NULL;
static_variables  665 ext/opcache/zend_accelerator_util_funcs.c 	HashTable *shared_statics = op_array->static_variables;
static_variables  673 ext/opcache/zend_accelerator_util_funcs.c 		ALLOC_HASHTABLE(op_array->static_variables);
static_variables  674 ext/opcache/zend_accelerator_util_funcs.c 		zend_hash_clone_zval(op_array->static_variables, shared_statics, 0);
static_variables  415 ext/opcache/zend_persist.c 	if (op_array->static_variables) {
static_variables  416 ext/opcache/zend_persist.c 		zend_hash_persist(op_array->static_variables, (zend_persist_func_t) zend_persist_zval_ptr, sizeof(zval**) TSRMLS_CC);
static_variables  417 ext/opcache/zend_persist.c 		zend_accel_store(op_array->static_variables, sizeof(HashTable));
static_variables  227 ext/opcache/zend_persist_calc.c 	if (op_array->static_variables) {
static_variables  228 ext/opcache/zend_persist_calc.c 		ADD_DUP_SIZE(op_array->static_variables, sizeof(HashTable));
static_variables  229 ext/opcache/zend_persist_calc.c 		ADD_SIZE(zend_hash_persist_calc(op_array->static_variables, (int (*)(void* TSRMLS_DC)) zend_persist_zval_ptr_calc, sizeof(zval**) TSRMLS_CC));
static_variables  827 ext/reflection/php_reflection.c 	HashTable *static_variables;
static_variables  830 ext/reflection/php_reflection.c 	if (fptr->type != ZEND_USER_FUNCTION || !fptr->op_array.static_variables) {
static_variables  834 ext/reflection/php_reflection.c 	static_variables = fptr->op_array.static_variables;
static_variables  835 ext/reflection/php_reflection.c 	count = zend_hash_num_elements(static_variables);
static_variables  842 ext/reflection/php_reflection.c 	string_printf(str, "%s- Bound Variables [%d] {\n", indent, zend_hash_num_elements(static_variables));
static_variables  843 ext/reflection/php_reflection.c 	zend_hash_internal_pointer_reset_ex(static_variables, &pos);
static_variables  846 ext/reflection/php_reflection.c 		zend_hash_get_current_key_ex(static_variables, &key, &key_len, &num_index, 0, &pos);
static_variables  848 ext/reflection/php_reflection.c 		zend_hash_move_forward_ex(static_variables, &pos);
static_variables 1920 ext/reflection/php_reflection.c 	if (fptr->type == ZEND_USER_FUNCTION && fptr->op_array.static_variables != NULL) {
static_variables 1921 ext/reflection/php_reflection.c 		zend_hash_apply_with_argument(fptr->op_array.static_variables, (apply_func_arg_t) zval_update_constant_inline_change, fptr->common.scope TSRMLS_CC);
static_variables 1922 ext/reflection/php_reflection.c 		zend_hash_copy(Z_ARRVAL_P(return_value), fptr->op_array.static_variables, (copy_ctor_func_t) zval_add_ref, (void *) &tmp_copy, sizeof(zval *));