Lines Matching refs:_from_encodings

3182 …st char *input, size_t length, const char *_to_encoding, const char *_from_encodings, size_t *outp…  in php_mb_convert_encoding()  argument
3218 if (_from_encodings) { in php_mb_convert_encoding()
3221 php_mb_parse_encoding_list(_from_encodings, strlen(_from_encodings), &list, &size, 0); in php_mb_convert_encoding()
3269 …convert_encoding_recursive(HashTable *input, const char *_to_encoding, const char *_from_encodings) in php_mb_convert_encoding_recursive() argument
3292 …ckey = php_mb_convert_encoding(ZSTR_VAL(key), ZSTR_LEN(key), _to_encoding, _from_encodings, &ckey_… in php_mb_convert_encoding_recursive()
3300 …b_convert_encoding(Z_STRVAL_P(entry), Z_STRLEN_P(entry), _to_encoding, _from_encodings, &cval_len); in php_mb_convert_encoding_recursive()
3312 chash = php_mb_convert_encoding_recursive(HASH_OF(entry), _to_encoding, _from_encodings); in php_mb_convert_encoding_recursive()
3350 char *_from_encodings = NULL, *ret, *s_free = NULL; in PHP_FUNCTION() local
3367 _from_encodings = NULL; in PHP_FUNCTION()
3373 if ( _from_encodings) { in PHP_FUNCTION()
3374 l = strlen(_from_encodings); in PHP_FUNCTION()
3376 _from_encodings = erealloc(_from_encodings, l+n+2); in PHP_FUNCTION()
3377 memcpy(_from_encodings + l, ",", 1); in PHP_FUNCTION()
3378 memcpy(_from_encodings + l + 1, Z_STRVAL_P(hash_entry), Z_STRLEN_P(hash_entry) + 1); in PHP_FUNCTION()
3380 _from_encodings = estrdup(Z_STRVAL_P(hash_entry)); in PHP_FUNCTION()
3384 if (_from_encodings != NULL && !strlen(_from_encodings)) { in PHP_FUNCTION()
3385 efree(_from_encodings); in PHP_FUNCTION()
3386 _from_encodings = NULL; in PHP_FUNCTION()
3388 s_free = _from_encodings; in PHP_FUNCTION()
3392 _from_encodings = Z_STRVAL_P(arg_old); in PHP_FUNCTION()
3399 …ret = php_mb_convert_encoding(Z_STRVAL_P(input), Z_STRLEN_P(input), arg_new, _from_encodings, &siz… in PHP_FUNCTION()
3412 tmp = php_mb_convert_encoding_recursive(HASH_OF(input), arg_new, _from_encodings); in PHP_FUNCTION()