Searched refs:curl_object_handlers (Results 1 – 1 of 1) sorted by relevance
230 static zend_object_handlers curl_object_handlers; variable397 curl_ce->default_object_handlers = &curl_object_handlers; in PHP_MINIT_FUNCTION()399 memcpy(&curl_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()400 curl_object_handlers.offset = XtOffsetOf(php_curl, std); in PHP_MINIT_FUNCTION()401 curl_object_handlers.free_obj = curl_free_obj; in PHP_MINIT_FUNCTION()402 curl_object_handlers.get_gc = curl_get_gc; in PHP_MINIT_FUNCTION()403 curl_object_handlers.get_constructor = curl_get_constructor; in PHP_MINIT_FUNCTION()404 curl_object_handlers.clone_obj = curl_clone_obj; in PHP_MINIT_FUNCTION()405 curl_object_handlers.cast_object = curl_cast_object; in PHP_MINIT_FUNCTION()406 curl_object_handlers.compare = zend_objects_not_comparable; in PHP_MINIT_FUNCTION()
Completed in 8 milliseconds