Lines Matching refs:from_encodings

1537 	info.from_encodings         = MBSTRG(http_input_list);
2701 MBSTRING_API zend_string* php_mb_convert_encoding(const char *input, size_t length, const mbfl_encoding *to_encoding, const mbfl_encoding **from_encodings, size_t num_from_encodings)
2708 from_encoding = *from_encodings;
2711 from_encoding = mb_guess_encoding((unsigned char*)input, length, from_encodings, num_from_encodings, MBSTRG(strict_detection), true);
2721 MBSTRING_API HashTable *php_mb_convert_encoding_recursive(HashTable *input, const mbfl_encoding *to_encoding, const mbfl_encoding **from_encodings, size_t num_from_encodings)
2742 zend_string *converted_key = php_mb_convert_encoding(ZSTR_VAL(key), ZSTR_LEN(key), to_encoding, from_encodings, num_from_encodings);
2753 zend_string *converted_key = php_mb_convert_encoding(Z_STRVAL_P(entry), Z_STRLEN_P(entry), to_encoding, from_encodings, num_from_encodings);
2772 Z_ARRVAL_P(entry), to_encoding, from_encodings, num_from_encodings);
2826 const mbfl_encoding **from_encodings;
2843 if (php_mb_parse_encoding_array(from_encodings_ht, &from_encodings, &num_from_encodings, 3) == FAILURE) {
2849 &from_encodings, &num_from_encodings,
2855 from_encodings = &MBSTRG(current_internal_encoding);
2860 remove_non_encodings_from_elist(from_encodings, &num_from_encodings);
2864 efree(ZEND_VOIDP(from_encodings));
2870 zend_string *ret = php_mb_convert_encoding(ZSTR_VAL(input_str), ZSTR_LEN(input_str), to_encoding, from_encodings, num_from_encodings);
2879 input_ht, to_encoding, from_encodings, num_from_encodings);
2884 efree(ZEND_VOIDP(from_encodings));