Lines Matching refs:from_charset
2300 char *from_charset; member
2312 pefree(self->from_charset, self->persistent); in php_iconv_stream_filter_dtor()
2319 const char *from_charset, size_t from_charset_len, int persistent) in php_iconv_stream_filter_ctor() argument
2323 self->from_charset = pemalloc(from_charset_len + 1, persistent); in php_iconv_stream_filter_ctor()
2328 memcpy(self->from_charset, from_charset, from_charset_len); in php_iconv_stream_filter_ctor()
2329 self->from_charset[from_charset_len] = '\0'; in php_iconv_stream_filter_ctor()
2331 if ((iconv_t)-1 == (self->cd = iconv_open(self->to_charset, self->from_charset))) { in php_iconv_stream_filter_ctor()
2332 pefree(self->from_charset, persistent); in php_iconv_stream_filter_ctor()
2378 …nv stream filter (\"%s\"=>\"%s\"): invalid multibyte sequence", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2385 …G, "iconv stream filter (\"%s\"=>\"%s\"): insufficient buffer", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2397 …nv stream filter (\"%s\"=>\"%s\"): invalid multibyte sequence", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2429 …WARNING, "iconv stream filter (\"%s\"=>\"%s\"): unknown error", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2444 …nv stream filter (\"%s\"=>\"%s\"): invalid multibyte sequence", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2450 …G, "iconv stream filter (\"%s\"=>\"%s\"): insufficient buffer", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2458 …iconv stream filter (\"%s\"=>\"%s\"): unexpected octet values", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2490 …WARNING, "iconv stream filter (\"%s\"=>\"%s\"): unknown error", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2585 char *from_charset = NULL, *to_charset = NULL; in php_iconv_stream_filter_factory_create() local
2588 if ((from_charset = strchr(name, '.')) == NULL) { in php_iconv_stream_filter_factory_create()
2591 ++from_charset; in php_iconv_stream_filter_factory_create()
2592 if ((from_charset = strchr(from_charset, '.')) == NULL) { in php_iconv_stream_filter_factory_create()
2595 ++from_charset; in php_iconv_stream_filter_factory_create()
2596 if ((to_charset = strpbrk(from_charset, "/.")) == NULL) { in php_iconv_stream_filter_factory_create()
2599 from_charset_len = to_charset - from_charset; in php_iconv_stream_filter_factory_create()
2609 …if (php_iconv_stream_filter_ctor(inst, to_charset, to_charset_len, from_charset, from_charset_len,… in php_iconv_stream_filter_factory_create()