Searched refs:CE_STATIC_MEMBERS (Results 1 - 7 of 7) sorted by relevance
| /PHP_5_3/ext/reflection/ |
| H A D | php_reflection.c | 3094 zend_hash_internal_pointer_reset_ex(CE_STATIC_MEMBERS(ce), &pos); 3096 while (zend_hash_get_current_data_ex(CE_STATIC_MEMBERS(ce), (void **) &value, &pos) == SUCCESS) { 3101 if (zend_hash_get_current_key_ex(CE_STATIC_MEMBERS(ce), &key, &key_len, &num_index, 0, &pos) != FAILURE && key) { 3116 zend_hash_move_forward_ex(CE_STATIC_MEMBERS(ce), &pos); 3206 ht_list[0] = CE_STATIC_MEMBERS(ce); 4578 if (zend_hash_quick_find(CE_STATIC_MEMBERS(intern->ce), ref->prop.name, ref->prop.name_length + 1, ref->prop.h, (void **) &member) == FAILURE) { 4631 prop_table = CE_STATIC_MEMBERS(intern->ce);
|
| /PHP_5_3/Zend/ |
| H A D | zend_API.c | 1006 if (!class_type->constants_updated || !CE_STATIC_MEMBERS(class_type)) { 1014 if (!CE_STATIC_MEMBERS(class_type)) { 1026 zend_hash_init(CE_STATIC_MEMBERS(class_type), zend_hash_num_elements(&class_type->default_static_members), NULL, ZVAL_PTR_DTOR, 0); 1040 zend_hash_find(CE_STATIC_MEMBERS(class_type->parent), str_index, str_length, (void**)&q) == SUCCESS 1044 zend_hash_add(CE_STATIC_MEMBERS(class_type), str_index, str_length, (void**)q, sizeof(zval*), NULL); 1052 zend_hash_add(CE_STATIC_MEMBERS(class_type), str_index, str_length, (void**)&r, sizeof(zval*), NULL); 1057 zend_hash_apply_with_argument(CE_STATIC_MEMBERS(class_type), (apply_func_arg_t) zval_update_constant, (void *) 1 TSRMLS_CC);
|
| H A D | zend_opcode.c | 166 } else if (CE_STATIC_MEMBERS(*pce)) { 167 zend_hash_destroy(CE_STATIC_MEMBERS(*pce)); 168 FREE_HASHTABLE(CE_STATIC_MEMBERS(*pce));
|
| H A D | zend_compile.c | 2758 ht = CE_STATIC_MEMBERS(parent_ce); 2869 zend_hash_apply_with_arguments(CE_STATIC_MEMBERS(parent_ce) TSRMLS_CC, (apply_func_args_t)inherit_static_prop, 1, &ce->default_static_members);
|
| H A D | zend_object_handlers.c | 1083 zend_hash_quick_find(CE_STATIC_MEMBERS(tmp_ce), property_info->name, property_info->name_length+1, property_info->h, (void **) &retval);
|
| H A D | zend_API.h | 217 # define CE_STATIC_MEMBERS(ce) (((ce)->type==ZEND_USER_CLASS)?(ce)->static_members:CG(static_members)[(zend_intptr_t)(ce)->static_members]) macro 219 # define CE_STATIC_MEMBERS(ce) ((ce)->static_members) macro
|
| H A D | zend_builtin_functions.c | 942 add_class_vars(*pce, CE_STATIC_MEMBERS(*pce), return_value TSRMLS_CC);
|
Completed in 36 milliseconds