Lines Matching refs:from_encoding

1964 	zend_string *from_encoding = NULL;
1971 Z_PARAM_STR_OR_NULL(from_encoding)
1977 const mbfl_encoding *enc = php_mb_get_encoding(from_encoding, 4);
1999 zend_string *from_encoding = NULL;
2006 Z_PARAM_STR_OR_NULL(from_encoding)
2012 const mbfl_encoding *enc = php_mb_get_encoding(from_encoding, 4);
2566 MBSTRING_API zend_string* php_mb_convert_encoding_ex(const char *input, size_t length, const mbfl_encoding *to_encoding, const mbfl_encoding *from_encoding)
2569 zend_string *result = mb_fast_convert((unsigned char*)input, length, from_encoding, to_encoding, MBSTRG(current_filter_illegal_substchar), MBSTRG(current_filter_illegal_mode), &num_errors);
2576 const mbfl_encoding *from_encoding;
2581 from_encoding = *from_encodings;
2588 from_encoding = mbfl_identify_encoding(
2590 if (!from_encoding) {
2596 return php_mb_convert_encoding_ex(input, length, to_encoding, from_encoding);
2779 zend_string *from_encoding = NULL;
2788 Z_PARAM_STR_OR_NULL(from_encoding)
2791 const mbfl_encoding *enc = php_mb_get_encoding(from_encoding, 3);
2814 zend_string *from_encoding = NULL;
2821 Z_PARAM_STR_OR_NULL(from_encoding)
2824 const mbfl_encoding *enc = php_mb_get_encoding(from_encoding, 2);
2842 zend_string *from_encoding = NULL;
2852 Z_PARAM_STR_OR_NULL(from_encoding)
2855 enc = php_mb_get_encoding(from_encoding, 2);
3333 const mbfl_encoding *from_encoding, *to_encoding;
3354 from_encoding = MBSTRG(current_internal_encoding);
3355 mbfl_string_init_set(&string, from_encoding);
3376 from_encoding = *elist;
3379 from_encoding = NULL;
3389 from_encoding = mbfl_encoding_detector_judge(identd);
3398 if (!from_encoding) {
3407 convd = mbfl_buffer_converter_new(from_encoding, to_encoding, 0);
3435 RETURN_STRING(from_encoding->name);