Searched refs:deflate_context_object_handlers (Results 1 – 1 of 1) sorted by relevance
87 static zend_object_handlers deflate_context_object_handlers; variable1345 deflate_context_ce->default_object_handlers = &deflate_context_object_handlers; in PHP_INI_END()1347 memcpy(&deflate_context_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_INI_END()1348 deflate_context_object_handlers.offset = XtOffsetOf(php_zlib_context, std); in PHP_INI_END()1349 deflate_context_object_handlers.free_obj = deflate_context_free_obj; in PHP_INI_END()1350 deflate_context_object_handlers.get_constructor = deflate_context_get_constructor; in PHP_INI_END()1351 deflate_context_object_handlers.clone_obj = NULL; in PHP_INI_END()1352 deflate_context_object_handlers.compare = zend_objects_not_comparable; in PHP_INI_END()
Completed in 11 milliseconds