Searched refs:fptr_count (Results 1 – 6 of 6) sorted by relevance
/PHP-8.2/ext/simplexml/ |
H A D | php_simplexml.h | 66 zend_function *fptr_count; member
|
H A D | simplexml.c | 1976 if (intern->fptr_count) { in sxe_count_elements() 2200 zend_function *fptr_count = NULL; in php_sxe_find_fptr_count() local 2215 fptr_count = NULL; in php_sxe_find_fptr_count() 2219 return fptr_count; in php_sxe_find_fptr_count() 2233 intern->fptr_count = fptr_count; in php_sxe_object_new() 2265 zend_function *fptr_count; in PHP_FUNCTION() local 2287 fptr_count = NULL; in PHP_FUNCTION() 2312 zend_function *fptr_count; in PHP_FUNCTION() local 2342 fptr_count = NULL; in PHP_FUNCTION() 2631 zend_function *fptr_count; in PHP_FUNCTION() local [all …]
|
/PHP-8.2/ext/spl/ |
H A D | spl_fixedarray.c | 59 zend_function *fptr_count; member 317 …zend_function *fptr_count = zend_hash_str_find_ptr(&class_type->function_table, "count", sizeof("c… in spl_fixedarray_object_new_ex() local 318 if (fptr_count->common.scope == parent) { in spl_fixedarray_object_new_ex() 319 fptr_count = NULL; in spl_fixedarray_object_new_ex() 321 intern->fptr_count = fptr_count; in spl_fixedarray_object_new_ex() 546 if (UNEXPECTED(intern->fptr_count)) { in spl_fixedarray_object_count_elements() 548 zend_call_known_instance_method_with_0_params(intern->fptr_count, object, &rv); in spl_fixedarray_object_count_elements()
|
H A D | spl_heap.c | 68 zend_function *fptr_count; member 437 intern->fptr_count = other->fptr_count; in spl_heap_object_new_ex() 469 …intern->fptr_count = zend_hash_str_find_ptr(&class_type->function_table, "count", sizeof("count") … in spl_heap_object_new_ex() 470 if (intern->fptr_count->common.scope == parent) { in spl_heap_object_new_ex() 471 intern->fptr_count = NULL; in spl_heap_object_new_ex() 499 if (intern->fptr_count) { in spl_heap_object_count_elements() 501 zend_call_method_with_0_params(object, intern->std.ce, &intern->fptr_count, "count", &rv); in spl_heap_object_count_elements()
|
H A D | spl_dllist.c | 85 zend_function *fptr_count; member 384 …intern->fptr_count = zend_hash_str_find_ptr(&class_type->function_table, "count", sizeof("count") … in spl_dllist_object_new_ex() 385 if (intern->fptr_count->common.scope == parent) { in spl_dllist_object_new_ex() 386 intern->fptr_count = NULL; in spl_dllist_object_new_ex() 414 if (intern->fptr_count) { in spl_dllist_object_count_elements() 416 zend_call_method_with_0_params(object, intern->std.ce, &intern->fptr_count, "count", &rv); in spl_dllist_object_count_elements()
|
H A D | spl_array.c | 54 zend_function *fptr_count; member 218 …intern->fptr_count = zend_hash_str_find_ptr(&class_type->function_table, "count", sizeof("count") … in spl_array_object_new_ex() 219 if (intern->fptr_count->common.scope == parent) { in spl_array_object_new_ex() 220 intern->fptr_count = NULL; in spl_array_object_new_ex() 1353 if (intern->fptr_count) { in spl_array_object_count_elements() 1355 zend_call_method_with_0_params(object, intern->std.ce, &intern->fptr_count, "count", &rv); in spl_array_object_count_elements()
|
Completed in 40 milliseconds