CE_STATIC_MEMBERS  873 Zend/zend_API.c 	if (!class_type->constants_updated || !CE_STATIC_MEMBERS(class_type)) {
CE_STATIC_MEMBERS  881 Zend/zend_API.c 		if (!CE_STATIC_MEMBERS(class_type)) {
CE_STATIC_MEMBERS  893 Zend/zend_API.c 			zend_hash_init(CE_STATIC_MEMBERS(class_type), zend_hash_num_elements(&class_type->default_static_members), NULL, ZVAL_PTR_DTOR, 0);
CE_STATIC_MEMBERS  907 Zend/zend_API.c 				    zend_hash_find(CE_STATIC_MEMBERS(class_type->parent), str_index, str_length, (void**)&q) == SUCCESS) {
CE_STATIC_MEMBERS  910 Zend/zend_API.c 					zend_hash_add(CE_STATIC_MEMBERS(class_type), str_index, str_length, (void**)q, sizeof(zval*), NULL);
CE_STATIC_MEMBERS  918 Zend/zend_API.c 					zend_hash_add(CE_STATIC_MEMBERS(class_type), str_index, str_length, (void**)&q, sizeof(zval*), NULL);
CE_STATIC_MEMBERS  923 Zend/zend_API.c 		zend_hash_apply_with_argument(CE_STATIC_MEMBERS(class_type), (apply_func_arg_t) zval_update_constant, (void *) 1 TSRMLS_CC);
CE_STATIC_MEMBERS  776 Zend/zend_builtin_functions.c 		add_class_vars(*pce, CE_STATIC_MEMBERS(*pce), return_value TSRMLS_CC);
CE_STATIC_MEMBERS 2194 Zend/zend_compile.c 					ht = CE_STATIC_MEMBERS(parent_ce);
CE_STATIC_MEMBERS 2305 Zend/zend_compile.c 		zend_hash_apply_with_arguments(CE_STATIC_MEMBERS(parent_ce), (apply_func_args_t)inherit_static_prop, 1, &ce->default_static_members);
CE_STATIC_MEMBERS  915 Zend/zend_object_handlers.c 	zend_hash_quick_find(CE_STATIC_MEMBERS(tmp_ce), property_info->name, property_info->name_length+1, property_info->h, (void **) &retval);
CE_STATIC_MEMBERS  161 Zend/zend_opcode.c 	} else if (CE_STATIC_MEMBERS(*pce)) {
CE_STATIC_MEMBERS  162 Zend/zend_opcode.c 		zend_hash_destroy(CE_STATIC_MEMBERS(*pce));
CE_STATIC_MEMBERS  163 Zend/zend_opcode.c 		FREE_HASHTABLE(CE_STATIC_MEMBERS(*pce));
CE_STATIC_MEMBERS 2714 ext/reflection/php_reflection.c 	zend_hash_internal_pointer_reset_ex(CE_STATIC_MEMBERS(ce), &pos);
CE_STATIC_MEMBERS 2716 ext/reflection/php_reflection.c 	while (zend_hash_get_current_data_ex(CE_STATIC_MEMBERS(ce), (void **) &value, &pos) == SUCCESS) {
CE_STATIC_MEMBERS 2721 ext/reflection/php_reflection.c 		if (zend_hash_get_current_key_ex(CE_STATIC_MEMBERS(ce), &key, &key_len, &num_index, 0, &pos) != FAILURE && key) {
CE_STATIC_MEMBERS 2730 ext/reflection/php_reflection.c 		zend_hash_move_forward_ex(CE_STATIC_MEMBERS(ce), &pos);
CE_STATIC_MEMBERS 2818 ext/reflection/php_reflection.c 	ht_list[0] = CE_STATIC_MEMBERS(ce);
CE_STATIC_MEMBERS 3972 ext/reflection/php_reflection.c 		if (zend_hash_quick_find(CE_STATIC_MEMBERS(intern->ce), ref->prop.name, ref->prop.name_length + 1, ref->prop.h, (void **) &member) == FAILURE) {
CE_STATIC_MEMBERS 4026 ext/reflection/php_reflection.c 		prop_table = CE_STATIC_MEMBERS(intern->ce);