Searched refs:curl_object_handlers (Results 1 – 1 of 1) sorted by relevance
232 static zend_object_handlers curl_object_handlers; variable412 curl_ce->default_object_handlers = &curl_object_handlers; in PHP_MINIT_FUNCTION()414 memcpy(&curl_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()415 curl_object_handlers.offset = XtOffsetOf(php_curl, std); in PHP_MINIT_FUNCTION()416 curl_object_handlers.free_obj = curl_free_obj; in PHP_MINIT_FUNCTION()417 curl_object_handlers.get_gc = curl_get_gc; in PHP_MINIT_FUNCTION()418 curl_object_handlers.get_constructor = curl_get_constructor; in PHP_MINIT_FUNCTION()419 curl_object_handlers.clone_obj = curl_clone_obj; in PHP_MINIT_FUNCTION()420 curl_object_handlers.cast_object = curl_cast_object; in PHP_MINIT_FUNCTION()421 curl_object_handlers.compare = zend_objects_not_comparable; in PHP_MINIT_FUNCTION()
Completed in 9 milliseconds