Home
last modified time | relevance | path

Searched refs:dba_connection_object_handlers (Results 1 – 1 of 1) sorted by relevance

/php-src/ext/dba/
H A Ddba.c240 static zend_object_handlers dba_connection_object_handlers; variable
410 dba_connection_ce->default_object_handlers = &dba_connection_object_handlers; in PHP_MINIT_FUNCTION()
412 memcpy(&dba_connection_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()
413 dba_connection_object_handlers.offset = XtOffsetOf(dba_connection, std); in PHP_MINIT_FUNCTION()
414 dba_connection_object_handlers.free_obj = dba_connection_free_obj; in PHP_MINIT_FUNCTION()
415 dba_connection_object_handlers.get_constructor = dba_connection_get_constructor; in PHP_MINIT_FUNCTION()
416 dba_connection_object_handlers.clone_obj = NULL; in PHP_MINIT_FUNCTION()
417 dba_connection_object_handlers.cast_object = dba_connection_cast_object; in PHP_MINIT_FUNCTION()
418 dba_connection_object_handlers.compare = zend_objects_not_comparable; in PHP_MINIT_FUNCTION()

Completed in 6 milliseconds