• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/

Lines Matching defs:encoder

187     "encoder error",		/* XML_IO_ENCODER */
2226 ret->encoder = xmlGetCharEncodingHandler(enc);
2227 if (ret->encoder != NULL)
2243 * @encoder: the encoding converter or NULL
2250 xmlAllocOutputBuffer(xmlCharEncodingHandlerPtr encoder) {
2265 ret->encoder = encoder;
2266 if (encoder != NULL) {
2269 * This call is designed to initiate the encoder state
2271 xmlCharEncOutFunc(encoder, ret->conv, NULL);
2297 if (in->encoder != NULL) {
2298 xmlCharEncCloseFunc(in->encoder);
2339 if (out->encoder != NULL) {
2340 xmlCharEncCloseFunc(out->encoder);
2439 xmlCharEncodingHandlerPtr encoder,
2481 ret = xmlAllocOutputBuffer(encoder);
2518 ret = xmlAllocOutputBuffer(encoder);
2551 ret = xmlAllocOutputBuffer(encoder);
2563 * @encoder: the encoding converter or NULL
2577 xmlCharEncodingHandlerPtr encoder,
2580 return xmlOutputBufferCreateFilenameValue(URI, encoder, compression);
2582 return __xmlOutputBufferCreateFilename(URI, encoder, compression);
2619 * @encoder: the encoding converter or NULL
2627 xmlOutputBufferCreateFile(FILE *file, xmlCharEncodingHandlerPtr encoder) {
2635 ret = xmlAllocOutputBuffer(encoder);
2648 * @encoder: the encoding converter or NULL
2656 xmlCharEncodingHandlerPtr encoder) {
2664 NULL, (void *) buffer, encoder);
2763 ret->encoder = xmlGetCharEncodingHandler(enc);
2764 if (ret->encoder != NULL)
2780 * @encoder: the encoding converter or NULL
2788 xmlOutputBufferCreateFd(int fd, xmlCharEncodingHandlerPtr encoder) {
2793 ret = xmlAllocOutputBuffer(encoder);
2839 * @encoder: the charset encoding if known
2849 xmlCharEncodingHandlerPtr encoder) {
2854 ret = xmlAllocOutputBuffer(encoder);
2927 if (in->encoder != NULL) {
2944 nbchars = xmlCharEncInFunc(in->encoder, in->buffer, in->raw);
3038 if (in->encoder != NULL) {
3055 nbchars = xmlCharEncInFunc(in->encoder, in->buffer, in->raw);
3133 if (out->encoder != NULL) {
3150 ret = xmlCharEncOutFunc(out->encoder, out->conv, out->buffer);
3173 if (out->encoder != NULL) {
3308 if (out->encoder != NULL) {
3328 ret = xmlCharEncOutFunc(out->encoder, out->conv, out->buffer);
3354 if (out->encoder != NULL) {
3428 if ((out->conv != NULL) && (out->encoder != NULL)) {
3432 nbchars = xmlCharEncOutFunc(out->encoder, out->conv, out->buffer);
3443 if ((out->conv != NULL) && (out->encoder != NULL) &&