Lines Matching full:enc
2220 * @enc: the charset encoding if known
2227 xmlAllocParserInputBuffer(xmlCharEncoding enc) {
2242 ret->encoder = xmlGetCharEncodingHandler(enc);
2432 __xmlParserInputBufferCreateFilename(const char *URI, xmlCharEncoding enc) {
2464 ret = xmlAllocParserInputBuffer(enc);
2495 * @enc: the charset encoding if known
2501 * Do an encoding check if enc == XML_CHAR_ENCODING_NONE
2506 xmlParserInputBufferCreateFilename(const char *URI, xmlCharEncoding enc) {
2508 return xmlParserInputBufferCreateFilenameValue(URI, enc);
2510 return __xmlParserInputBufferCreateFilename(URI, enc);
2666 * @enc: the charset encoding if known
2674 xmlParserInputBufferCreateFile(FILE *file, xmlCharEncoding enc) {
2682 ret = xmlAllocParserInputBuffer(enc);
2751 * @enc: the charset encoding if known
2759 xmlParserInputBufferCreateFd(int fd, xmlCharEncoding enc) {
2764 ret = xmlAllocParserInputBuffer(enc);
2778 * @enc: the charset encoding if known
2786 xmlParserInputBufferCreateMem(const char *mem, int size, xmlCharEncoding enc) {
2793 ret = xmlAllocParserInputBuffer(enc);
2812 * @enc: the charset encoding if known
2823 xmlCharEncoding enc) {
2840 ret->encoder = xmlGetCharEncodingHandler(enc);
2886 * @enc: the charset encoding if known
2895 xmlInputCloseCallback ioclose, void *ioctx, xmlCharEncoding enc) {
2900 ret = xmlAllocParserInputBuffer(enc);