Lines Matching refs:ze_obj
890 ze_xmlwriter_object *ze_obj = NULL; in PHP_FUNCTION() local
898 ze_obj = Z_XMLWRITER_P(self); in PHP_FUNCTION()
919 if (ze_obj->ptr) { in PHP_FUNCTION()
920 xmlFreeTextWriter(ze_obj->ptr); in PHP_FUNCTION()
922 if (ze_obj->output) { in PHP_FUNCTION()
923 xmlBufferFree(ze_obj->output); in PHP_FUNCTION()
925 ze_obj->ptr = ptr; in PHP_FUNCTION()
926 ze_obj->output = NULL; in PHP_FUNCTION()
929 ze_obj = php_xmlwriter_fetch_object(xmlwriter_object_new(xmlwriter_class_entry_ce)); in PHP_FUNCTION()
930 ze_obj->ptr = ptr; in PHP_FUNCTION()
931 ze_obj->output = NULL; in PHP_FUNCTION()
932 RETURN_OBJ(&ze_obj->std); in PHP_FUNCTION()
943 ze_xmlwriter_object *ze_obj = NULL; in PHP_FUNCTION() local
951 ze_obj = Z_XMLWRITER_P(self); in PHP_FUNCTION()
968 if (ze_obj->ptr) { in PHP_FUNCTION()
969 xmlFreeTextWriter(ze_obj->ptr); in PHP_FUNCTION()
971 if (ze_obj->output) { in PHP_FUNCTION()
972 xmlBufferFree(ze_obj->output); in PHP_FUNCTION()
974 ze_obj->ptr = ptr; in PHP_FUNCTION()
975 ze_obj->output = buffer; in PHP_FUNCTION()
978 ze_obj = php_xmlwriter_fetch_object(xmlwriter_object_new(xmlwriter_class_entry_ce)); in PHP_FUNCTION()
979 ze_obj->ptr = ptr; in PHP_FUNCTION()
980 ze_obj->output = buffer; in PHP_FUNCTION()
981 RETURN_OBJ(&ze_obj->std); in PHP_FUNCTION()