Lines Matching refs:ce

583 	zend_class_entry *ce,cex;  in PHP_MINIT_FUNCTION()  local
622 ce = mysqli_driver_class_entry; in PHP_MINIT_FUNCTION()
625 MYSQLI_ADD_PROPERTIES_INFO(ce, mysqli_driver_property_info_entries); in PHP_MINIT_FUNCTION()
626 …zend_hash_add(&classes, ce->name, ce->name_length+1, &mysqli_driver_properties, sizeof(mysqli_driv… in PHP_MINIT_FUNCTION()
627 ce->ce_flags |= ZEND_ACC_FINAL_CLASS; in PHP_MINIT_FUNCTION()
630 ce = mysqli_link_class_entry; in PHP_MINIT_FUNCTION()
633 MYSQLI_ADD_PROPERTIES_INFO(ce, mysqli_link_property_info_entries); in PHP_MINIT_FUNCTION()
634 …zend_hash_add(&classes, ce->name, ce->name_length+1, &mysqli_link_properties, sizeof(mysqli_link_p… in PHP_MINIT_FUNCTION()
637 ce = mysqli_warning_class_entry; in PHP_MINIT_FUNCTION()
638 ce->ce_flags |= ZEND_ACC_FINAL_CLASS | ZEND_ACC_PROTECTED; in PHP_MINIT_FUNCTION()
641 MYSQLI_ADD_PROPERTIES_INFO(ce, mysqli_warning_property_info_entries); in PHP_MINIT_FUNCTION()
642 …zend_hash_add(&classes, ce->name, ce->name_length+1, &mysqli_warning_properties, sizeof(mysqli_war… in PHP_MINIT_FUNCTION()
645 ce = mysqli_result_class_entry; in PHP_MINIT_FUNCTION()
648 MYSQLI_ADD_PROPERTIES_INFO(ce, mysqli_result_property_info_entries); in PHP_MINIT_FUNCTION()
649 …zend_hash_add(&classes, ce->name, ce->name_length+1, &mysqli_result_properties, sizeof(mysqli_resu… in PHP_MINIT_FUNCTION()
652 ce = mysqli_stmt_class_entry; in PHP_MINIT_FUNCTION()
655 MYSQLI_ADD_PROPERTIES_INFO(ce, mysqli_stmt_property_info_entries); in PHP_MINIT_FUNCTION()
656 …zend_hash_add(&classes, ce->name, ce->name_length+1, &mysqli_stmt_properties, sizeof(mysqli_stmt_p… in PHP_MINIT_FUNCTION()
1094 zend_class_entry *ce = NULL; in php_mysqli_fetch_into_hash() local
1111 ce = zend_standard_class_def; in php_mysqli_fetch_into_hash()
1113 ce = zend_fetch_class(class_name, class_name_len, ZEND_FETCH_CLASS_AUTO TSRMLS_CC); in php_mysqli_fetch_into_hash()
1115 if (!ce) { in php_mysqli_fetch_into_hash()
1268 object_and_properties_init(return_value, ce, NULL); in php_mysqli_fetch_into_hash()
1271 if (ce->constructor) { in php_mysqli_fetch_into_hash()
1273 fci.function_table = &ce->function_table; in php_mysqli_fetch_into_hash()
1307 fcc.function_handler = ce->constructor; in php_mysqli_fetch_into_hash()
1313 …ion_get_default(TSRMLS_C), 0 TSRMLS_CC, "Could not execute %s::%s()", ce->name, ce->constructor->c… in php_mysqli_fetch_into_hash()
1323 …), 0 TSRMLS_CC, "Class %s does not have a constructor hence you cannot use ctor_params", ce->name); in php_mysqli_fetch_into_hash()