to_charset       2569 ext/iconv/iconv.c 	char *to_charset;
to_charset       2582 ext/iconv/iconv.c 	pefree(self->to_charset, self->persistent);
to_charset       2589 ext/iconv/iconv.c 		const char *to_charset, size_t to_charset_len,
to_charset       2592 ext/iconv/iconv.c 	if (NULL == (self->to_charset = pemalloc(to_charset_len + 1, persistent))) {
to_charset       2597 ext/iconv/iconv.c 		pefree(self->to_charset, persistent);
to_charset       2602 ext/iconv/iconv.c 	memcpy(self->to_charset, to_charset, to_charset_len);
to_charset       2603 ext/iconv/iconv.c 	self->to_charset[to_charset_len] = '\0';
to_charset       2607 ext/iconv/iconv.c 	if ((iconv_t)-1 == (self->cd = iconv_open(self->to_charset, self->from_charset))) {
to_charset       2609 ext/iconv/iconv.c 		pefree(self->to_charset, persistent);
to_charset       2657 ext/iconv/iconv.c 						php_error_docref(NULL TSRMLS_CC, E_WARNING, "iconv stream filter (\"%s\"=>\"%s\"): invalid multibyte sequence", self->from_charset, self->to_charset);
to_charset       2664 ext/iconv/iconv.c 									php_error_docref(NULL TSRMLS_CC, E_WARNING, "iconv stream filter (\"%s\"=>\"%s\"): insufficient buffer", self->from_charset, self->to_charset);
to_charset       2714 ext/iconv/iconv.c 						php_error_docref(NULL TSRMLS_CC, E_WARNING, "iconv stream filter (\"%s\"=>\"%s\"): unknown error", self->from_charset, self->to_charset);
to_charset       2719 ext/iconv/iconv.c 					php_error_docref(NULL TSRMLS_CC, E_WARNING, "iconv stream filter (\"%s\"=>\"%s\"): unknown error", self->from_charset, self->to_charset);
to_charset       2736 ext/iconv/iconv.c 					php_error_docref(NULL TSRMLS_CC, E_WARNING, "iconv stream filter (\"%s\"=>\"%s\"): invalid multibyte sequence", self->from_charset, self->to_charset);
to_charset       2742 ext/iconv/iconv.c 							php_error_docref(NULL TSRMLS_CC, E_WARNING, "iconv stream filter (\"%s\"=>\"%s\"): insufficient buffer", self->from_charset, self->to_charset);
to_charset       2750 ext/iconv/iconv.c 						php_error_docref(NULL TSRMLS_CC, E_WARNING, "iconv stream filter (\"%s\"=>\"%s\"): unexpected octet values", self->from_charset, self->to_charset);
to_charset       2791 ext/iconv/iconv.c 					php_error_docref(NULL TSRMLS_CC, E_WARNING, "iconv stream filter (\"%s\"=>\"%s\"): unknown error", self->from_charset, self->to_charset);
to_charset       2796 ext/iconv/iconv.c 				php_error_docref(NULL TSRMLS_CC, E_WARNING, "iconv stream filter (\"%s\"=>\"%s\"): unknown error", self->from_charset, self->to_charset);
to_charset       2892 ext/iconv/iconv.c 	char *from_charset = NULL, *to_charset = NULL;
to_charset       2903 ext/iconv/iconv.c 	if ((to_charset = strpbrk(from_charset, "/.")) == NULL) {
to_charset       2906 ext/iconv/iconv.c 	from_charset_len = to_charset - from_charset;
to_charset       2907 ext/iconv/iconv.c 	++to_charset;
to_charset       2908 ext/iconv/iconv.c 	to_charset_len = strlen(to_charset);
to_charset       2918 ext/iconv/iconv.c 	if (php_iconv_stream_filter_ctor(inst, to_charset, to_charset_len, from_charset, from_charset_len, persistent) != PHP_ICONV_ERR_SUCCESS) {