Lines Matching refs:zend_encoding

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