LIBXML            360 ext/libxml/libxml.c 	context = php_stream_context_from_zval(Z_ISUNDEF(LIBXML(stream_context))? NULL : &LIBXML(stream_context), 0);
LIBXML            403 ext/libxml/libxml.c 	if (LIBXML(entity_loader_disabled)) {
LIBXML            508 ext/libxml/libxml.c 		zend_llist_add_element(LIBXML(error_list), &error_copy);
LIBXML            529 ext/libxml/libxml.c 	if (LIBXML(error_list)) {
LIBXML            551 ext/libxml/libxml.c 	smart_str_appendl(&LIBXML(error_buffer), buf, len);
LIBXML            556 ext/libxml/libxml.c 		if (LIBXML(error_list)) {
LIBXML            557 ext/libxml/libxml.c 			_php_list_set_error_structure(NULL, ZSTR_VAL(LIBXML(error_buffer).s));
LIBXML            561 ext/libxml/libxml.c 					php_libxml_ctx_error_level(E_WARNING, ctx, ZSTR_VAL(LIBXML(error_buffer).s));
LIBXML            564 ext/libxml/libxml.c 					php_libxml_ctx_error_level(E_NOTICE, ctx, ZSTR_VAL(LIBXML(error_buffer).s));
LIBXML            567 ext/libxml/libxml.c 					php_error_docref(NULL, E_WARNING, "%s", ZSTR_VAL(LIBXML(error_buffer).s));
LIBXML            570 ext/libxml/libxml.c 		smart_str_free(&LIBXML(error_buffer));
LIBXML            584 ext/libxml/libxml.c 	fci = &LIBXML(entity_loader).fci;
LIBXML            624 ext/libxml/libxml.c 	status = zend_call_function(fci, &LIBXML(entity_loader).fcc);
LIBXML            783 ext/libxml/libxml.c 		ZVAL_COPY_VALUE(oldcontext, &LIBXML(stream_context));
LIBXML            786 ext/libxml/libxml.c 		ZVAL_COPY_VALUE(&LIBXML(stream_context), context);
LIBXML            888 ext/libxml/libxml.c 		LIBXML(entity_loader_disabled) = 0;
LIBXML            895 ext/libxml/libxml.c 	_php_libxml_destroy_fci(&LIBXML(entity_loader).fci, &LIBXML(entity_loader).object);
LIBXML            925 ext/libxml/libxml.c 	ZVAL_UNDEF(&LIBXML(stream_context));
LIBXML            926 ext/libxml/libxml.c 	smart_str_free(&LIBXML(error_buffer));
LIBXML            927 ext/libxml/libxml.c 	if (LIBXML(error_list)) {
LIBXML            928 ext/libxml/libxml.c 		zend_llist_destroy(LIBXML(error_list));
LIBXML            929 ext/libxml/libxml.c 		efree(LIBXML(error_list));
LIBXML            930 ext/libxml/libxml.c 		LIBXML(error_list) = NULL;
LIBXML            958 ext/libxml/libxml.c 	if (!Z_ISUNDEF(LIBXML(stream_context))) {
LIBXML            959 ext/libxml/libxml.c 		zval_ptr_dtor(&LIBXML(stream_context));
LIBXML            960 ext/libxml/libxml.c 		ZVAL_UNDEF(&LIBXML(stream_context));
LIBXML            962 ext/libxml/libxml.c 	ZVAL_COPY(&LIBXML(stream_context), arg);
LIBXML            990 ext/libxml/libxml.c 		if (LIBXML(error_list)) {
LIBXML            991 ext/libxml/libxml.c 			zend_llist_destroy(LIBXML(error_list));
LIBXML            992 ext/libxml/libxml.c 			efree(LIBXML(error_list));
LIBXML            993 ext/libxml/libxml.c 			LIBXML(error_list) = NULL;
LIBXML            997 ext/libxml/libxml.c 		if (LIBXML(error_list) == NULL) {
LIBXML            998 ext/libxml/libxml.c 			LIBXML(error_list) = (zend_llist *) emalloc(sizeof(zend_llist));
LIBXML            999 ext/libxml/libxml.c 			zend_llist_init(LIBXML(error_list), sizeof(xmlError), (llist_dtor_func_t) _php_libxml_free_error, 0);
LIBXML           1047 ext/libxml/libxml.c 	if (LIBXML(error_list)) {
LIBXML           1049 ext/libxml/libxml.c 		error = zend_llist_get_first(LIBXML(error_list));
LIBXML           1071 ext/libxml/libxml.c 			error = zend_llist_get_next(LIBXML(error_list));
LIBXML           1082 ext/libxml/libxml.c 	if (LIBXML(error_list)) {
LIBXML           1083 ext/libxml/libxml.c 		zend_llist_clean(LIBXML(error_list));
LIBXML           1090 ext/libxml/libxml.c 	zend_bool old = LIBXML(entity_loader_disabled);
LIBXML           1092 ext/libxml/libxml.c 	LIBXML(entity_loader_disabled) = disable;
LIBXML           1121 ext/libxml/libxml.c 	_php_libxml_destroy_fci(&LIBXML(entity_loader).fci, &LIBXML(entity_loader).object);
LIBXML           1124 ext/libxml/libxml.c 		LIBXML(entity_loader).fci = fci;
LIBXML           1127 ext/libxml/libxml.c 			ZVAL_OBJ(&LIBXML(entity_loader).object, fci.object);
LIBXML           1128 ext/libxml/libxml.c 			Z_ADDREF(LIBXML(entity_loader).object);
LIBXML           1130 ext/libxml/libxml.c 		LIBXML(entity_loader).fcc = fcc;