Lines Matching refs:zend_constant

30 void free_zend_constant(zend_constant *c)  in free_zend_constant()
39 void copy_zend_constant(zend_constant *c) in copy_zend_constant()
52 zend_constant tmp_constant; in zend_copy_constants()
54 …_copy(target, source, (copy_ctor_func_t) copy_zend_constant, &tmp_constant, sizeof(zend_constant)); in zend_copy_constants()
58 static int clean_non_persistent_constant(const zend_constant *c TSRMLS_DC) in clean_non_persistent_constant()
64 static int clean_non_persistent_constant_full(const zend_constant *c TSRMLS_DC) in clean_non_persistent_constant_full()
70 static int clean_module_constant(const zend_constant *c, int *module_number TSRMLS_DC) in clean_module_constant()
122 zend_constant c; in zend_register_standard_constants()
181 zend_constant c; in zend_register_long_constant()
195 zend_constant c; in zend_register_double_constant()
209 zend_constant c; in zend_register_stringl_constant()
227 static int zend_get_special_constant(const char *name, uint name_len, zend_constant **c TSRMLS_DC) in zend_get_special_constant()
236 zend_constant tmp; in zend_get_special_constant()
249 …zend_hash_add(EG(zend_constants), const_name, const_name_len, (void*)&tmp, sizeof(zend_constant), … in zend_get_special_constant()
250 memset(*c, 0, sizeof(zend_constant)); in zend_get_special_constant()
258 …d_constants), "\0__CLASS__", sizeof("\0__CLASS__"), (void*)&tmp, sizeof(zend_constant), (void**)c); in zend_get_special_constant()
259 memset(*c, 0, sizeof(zend_constant)); in zend_get_special_constant()
288 zend_constant *c; in zend_get_constant()
317 zend_constant *c; in zend_get_constant_ex()
451 zend_constant *zend_quick_get_constant(const zend_literal *key, ulong flags TSRMLS_DC) in zend_quick_get_constant()
453 zend_constant *c; in zend_quick_get_constant()
483 ZEND_API int zend_register_constant(zend_constant *c TSRMLS_DC) in zend_register_constant()
521 …_add(EG(zend_constants), name, c->name_len, chash, (void *) c, sizeof(zend_constant), NULL)==FAILU… in zend_register_constant()