Lines Matching refs:zend_encoding

25 typedef struct _zend_encoding zend_encoding;  typedef
29 typedef const zend_encoding* (*zend_encoding_fetcher)(const char *encoding_name TSRMLS_DC);
30 typedef const char* (*zend_encoding_name_getter)(const zend_encoding *encoding);
31 typedef int (*zend_encoding_lexer_compatibility_checker)(const zend_encoding *encoding);
32 typedef const zend_encoding *(*zend_encoding_detector)(const unsigned char *string, size_t length, …
33 …const unsigned char *from, size_t from_length, const zend_encoding *encoding_to, const zend_encodi…
34 …st_parser)(const char *encoding_list, size_t encoding_list_len, const zend_encoding ***return_list…
35 typedef const zend_encoding *(*zend_encoding_internal_encoding_getter)(TSRMLS_D);
36 typedef int (*zend_encoding_internal_encoding_setter)(const zend_encoding *encoding TSRMLS_DC);
55 ZEND_API extern const zend_encoding *zend_multibyte_encoding_utf32be;
56 ZEND_API extern const zend_encoding *zend_multibyte_encoding_utf32le;
57 ZEND_API extern const zend_encoding *zend_multibyte_encoding_utf16be;
58 ZEND_API extern const zend_encoding *zend_multibyte_encoding_utf16le;
59 ZEND_API extern const zend_encoding *zend_multibyte_encoding_utf8;
65 ZEND_API const zend_encoding *zend_multibyte_fetch_encoding(const char *name TSRMLS_DC);
66 ZEND_API const char *zend_multibyte_get_encoding_name(const zend_encoding *encoding);
67 ZEND_API int zend_multibyte_check_lexer_compatibility(const zend_encoding *encoding);
68 ZEND_API const zend_encoding *zend_multibyte_encoding_detector(const unsigned char *string, size_t …
69 …const unsigned char *from, size_t from_length, const zend_encoding *encoding_to, const zend_encodi…
70 …oding_list(const char *encoding_list, size_t encoding_list_len, const zend_encoding ***return_list…
72 ZEND_API const zend_encoding *zend_multibyte_get_internal_encoding(TSRMLS_D);
73 ZEND_API const zend_encoding *zend_multibyte_get_script_encoding(TSRMLS_D);
74 ZEND_API int zend_multibyte_set_script_encoding(const zend_encoding **encoding_list, size_t encodin…
75 ZEND_API int zend_multibyte_set_internal_encoding(const zend_encoding *encoding TSRMLS_DC);