Lines Matching refs:intern
60 php_zlib_context *intern = zend_object_alloc(sizeof(php_zlib_context), class_type); in inflate_context_create_object() local
62 zend_object_std_init(&intern->std, class_type); in inflate_context_create_object()
63 object_properties_init(&intern->std, class_type); in inflate_context_create_object()
64 intern->std.handlers = &inflate_context_object_handlers; in inflate_context_create_object()
66 return &intern->std; in inflate_context_create_object()
76 php_zlib_context *intern = inflate_context_from_obj(object); in inflate_context_free_obj() local
78 if (intern->inflateDict) { in inflate_context_free_obj()
79 efree(intern->inflateDict); in inflate_context_free_obj()
81 inflateEnd(&intern->Z); in inflate_context_free_obj()
83 zend_object_std_dtor(&intern->std); in inflate_context_free_obj()
99 php_zlib_context *intern = zend_object_alloc(sizeof(php_zlib_context), class_type); in deflate_context_create_object() local
101 zend_object_std_init(&intern->std, class_type); in deflate_context_create_object()
102 object_properties_init(&intern->std, class_type); in deflate_context_create_object()
103 intern->std.handlers = &deflate_context_object_handlers; in deflate_context_create_object()
105 return &intern->std; in deflate_context_create_object()
115 php_zlib_context *intern = deflate_context_from_obj(object); in deflate_context_free_obj() local
117 deflateEnd(&intern->Z); in deflate_context_free_obj()
119 zend_object_std_dtor(&intern->std); in deflate_context_free_obj()