Home
last modified time | relevance | path

Searched refs:ce (Results 1 – 25 of 49) sorted by relevance

12

/ext-ds/src/php/iterators/
H A Dphp_htable_iterator.h17 zend_object_iterator *php_ds_htable_get_value_iterator_ex(zend_class_entry *ce, zval *obj, int by_r…
18 zend_object_iterator *php_ds_htable_get_key_iterator_ex (zend_class_entry *ce, zval *obj, int by_r…
19 zend_object_iterator *php_ds_htable_get_pair_iterator_ex (zend_class_entry *ce, zval *obj, int by_r…
20 zend_object_iterator *php_ds_htable_get_assoc_iterator_ex(zend_class_entry *ce, zval *obj, int by_r…
H A Dphp_set_iterator.c10 zend_object_iterator *php_ds_set_get_iterator(zend_class_entry *ce, zval *obj, int by_ref) in php_ds_set_get_iterator() argument
13 return php_ds_htable_get_key_iterator_ex(ce, obj, by_ref, table); in php_ds_set_get_iterator()
H A Dphp_map_iterator.c10 zend_object_iterator *php_ds_map_get_iterator(zend_class_entry *ce, zval *obj, int by_ref) in php_ds_map_get_iterator() argument
13 return php_ds_htable_get_assoc_iterator_ex(ce, obj, by_ref, table); in php_ds_map_get_iterator()
H A Dphp_set_iterator.h10 zend_object_iterator *php_ds_set_get_iterator(zend_class_entry *ce, zval *object, int by_ref);
H A Dphp_map_iterator.h9 zend_object_iterator *php_ds_map_get_iterator(zend_class_entry *ce, zval *obj, int by_ref);
H A Dphp_vector_iterator.h14 zend_object_iterator *php_ds_vector_get_iterator(zend_class_entry *ce, zval *obj, int by_ref);
H A Dphp_deque_iterator.h14 zend_object_iterator *php_ds_deque_get_iterator(zend_class_entry *ce, zval *obj, int by_ref);
H A Dphp_priority_queue_iterator.h14 zend_object_iterator *php_ds_priority_queue_get_iterator(zend_class_entry *ce, zval *object, int by…
H A Dphp_stack_iterator.h14 zend_object_iterator *php_ds_stack_get_iterator(zend_class_entry *ce, zval *object, int by_ref);
H A Dphp_queue_iterator.h14 zend_object_iterator *php_ds_queue_get_iterator(zend_class_entry *ce, zval *object, int by_ref);
H A Dphp_htable_iterator.c194 zend_class_entry *ce, in php_ds_htable_get_value_iterator_ex() argument
204 zend_class_entry *ce, in php_ds_htable_get_key_iterator_ex() argument
214 zend_class_entry *ce, in php_ds_htable_get_pair_iterator_ex() argument
224 zend_class_entry *ce, in php_ds_htable_get_assoc_iterator_ex() argument
/ext-ds/src/php/classes/
H A Dphp_hashable_ce.c19 zend_class_entry ce; in php_ds_register_hashable() local
20 INIT_CLASS_ENTRY(ce, PHP_DS_NS(Hashable), hashable_methods); in php_ds_register_hashable()
21 hashable_ce = zend_register_internal_interface(&ce); in php_ds_register_hashable()
H A Dphp_collection_ce.c11 zend_class_entry ce; in php_ds_register_collection() local
21 INIT_CLASS_ENTRY(ce, PHP_DS_NS(Collection), methods); in php_ds_register_collection()
23 collection_ce = zend_register_internal_interface(&ce); in php_ds_register_collection()
H A Dphp_sequence_ce.c12 zend_class_entry ce; in php_ds_register_sequence() local
41 INIT_CLASS_ENTRY(ce, PHP_DS_NS(Sequence), methods); in php_ds_register_sequence()
43 sequence_ce = zend_register_internal_interface(&ce); in php_ds_register_sequence()
H A Dphp_pair_ce.c48 zend_class_entry ce; in php_ds_register_pair() local
58 INIT_CLASS_ENTRY(ce, PHP_DS_NS(Pair), methods); in php_ds_register_pair()
59 php_ds_pair_ce = zend_register_internal_class(&ce); in php_ds_register_pair()
H A Dphp_priority_queue_ce.c95 zend_class_entry ce; in php_ds_register_priority_queue() local
110 INIT_CLASS_ENTRY(ce, PHP_DS_NS(PriorityQueue), methods); in php_ds_register_priority_queue()
112 php_ds_priority_queue_ce = zend_register_internal_class(&ce); in php_ds_register_priority_queue()
H A Dphp_stack_ce.c128 zend_class_entry ce; in php_ds_register_stack() local
148 INIT_CLASS_ENTRY(ce, PHP_DS_NS(Stack), methods); in php_ds_register_stack()
150 php_ds_stack_ce = zend_register_internal_class(&ce); in php_ds_register_stack()
H A Dphp_queue_ce.c125 zend_class_entry ce; in php_ds_register_queue() local
145 INIT_CLASS_ENTRY(ce, PHP_DS_NS(Queue), methods); in php_ds_register_queue()
147 php_ds_queue_ce = zend_register_internal_class(&ce); in php_ds_register_queue()
/ext-ds/src/php/handlers/
H A Dphp_common_handlers.c8 zend_class_entry *ce = obj->ce; local
11 zend_class_entry *ce = Z_OBJCE_P(obj);
18 smart_str_append (&buffer, ce->name);
/ext-ds/src/php/objects/
H A Dphp_pair.c5 zend_object *php_ds_pair_create_object(zend_class_entry *ce) in php_ds_pair_create_object() argument
8 php_ds_pair_t *obj = ecalloc(1, sizeof(php_ds_pair_t) + zend_object_properties_size(ce)); in php_ds_pair_create_object()
10 php_ds_pair_t *obj = zend_object_alloc(sizeof(php_ds_pair_t), ce); in php_ds_pair_create_object()
12 zend_object_std_init(&obj->std, ce); in php_ds_pair_create_object()
13 object_properties_init(&obj->std, ce); in php_ds_pair_create_object()
126 int php_ds_pair_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buffer, size_t… in php_ds_pair_unserialize() argument
H A Dphp_queue.c21 zend_object *php_ds_queue_create_object(zend_class_entry *ce) in php_ds_queue_create_object() argument
60 int php_ds_queue_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buffer, size_… in php_ds_queue_unserialize() argument
H A Dphp_deque.c20 zend_object *php_ds_deque_create_object(zend_class_entry *ce) in php_ds_deque_create_object() argument
59 int php_ds_deque_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buffer, size_… in php_ds_deque_unserialize() argument
H A Dphp_stack.c20 zend_object *php_ds_stack_create_object(zend_class_entry *ce) in php_ds_stack_create_object() argument
59 int php_ds_stack_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buffer, size_… in php_ds_stack_unserialize() argument
H A Dphp_vector.c21 zend_object *php_ds_vector_create_object(zend_class_entry *ce) in php_ds_vector_create_object() argument
59 int php_ds_vector_unserialize(zval *obj, zend_class_entry *ce, const unsigned char *buffer, size_t … in php_ds_vector_unserialize() argument
H A Dphp_set.c20 zend_object *php_ds_set_create_object(zend_class_entry *ce) in php_ds_set_create_object() argument
59 int php_ds_set_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buffer, size_t … in php_ds_set_unserialize() argument

Completed in 87 milliseconds

12