Lines Matching refs:from_charset

2301 	char *from_charset;  member
2313 pefree(self->from_charset, self->persistent); in php_iconv_stream_filter_dtor()
2320 const char *from_charset, size_t from_charset_len, int persistent) in php_iconv_stream_filter_ctor() argument
2324 self->from_charset = pemalloc(from_charset_len + 1, persistent); in php_iconv_stream_filter_ctor()
2329 memcpy(self->from_charset, from_charset, from_charset_len); in php_iconv_stream_filter_ctor()
2330 self->from_charset[from_charset_len] = '\0'; in php_iconv_stream_filter_ctor()
2332 if ((iconv_t)-1 == (self->cd = iconv_open(self->to_charset, self->from_charset))) { in php_iconv_stream_filter_ctor()
2333 pefree(self->from_charset, persistent); in php_iconv_stream_filter_ctor()
2379 …nv stream filter (\"%s\"=>\"%s\"): invalid multibyte sequence", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2386 …G, "iconv stream filter (\"%s\"=>\"%s\"): insufficient buffer", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2398 …nv stream filter (\"%s\"=>\"%s\"): invalid multibyte sequence", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2430 …WARNING, "iconv stream filter (\"%s\"=>\"%s\"): unknown error", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2445 …nv stream filter (\"%s\"=>\"%s\"): invalid multibyte sequence", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2451 …G, "iconv stream filter (\"%s\"=>\"%s\"): insufficient buffer", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2459 …iconv stream filter (\"%s\"=>\"%s\"): unexpected octet values", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2491 …WARNING, "iconv stream filter (\"%s\"=>\"%s\"): unknown error", self->from_charset, self->to_chars… in php_iconv_stream_filter_append_bucket()
2586 char *from_charset = NULL, *to_charset = NULL; in php_iconv_stream_filter_factory_create() local
2589 if ((from_charset = strchr(name, '.')) == NULL) { in php_iconv_stream_filter_factory_create()
2592 ++from_charset; in php_iconv_stream_filter_factory_create()
2593 if ((from_charset = strchr(from_charset, '.')) == NULL) { in php_iconv_stream_filter_factory_create()
2596 ++from_charset; in php_iconv_stream_filter_factory_create()
2597 if ((to_charset = strpbrk(from_charset, "/.")) == NULL) { in php_iconv_stream_filter_factory_create()
2600 from_charset_len = to_charset - from_charset; in php_iconv_stream_filter_factory_create()
2610 …if (php_iconv_stream_filter_ctor(inst, to_charset, to_charset_len, from_charset, from_charset_len,… in php_iconv_stream_filter_factory_create()