Lines Matching +defs:val +defs:output
93 xmlEncodingErr(xmlParserErrors error, const char *msg, const char *val)
97 NULL, 0, val, NULL, NULL, 0, 0, msg, val);
1250 * @output: the xmlCharEncodingOutputFunc to write that encoding
1259 xmlCharEncodingOutputFunc output) {
1303 handler->output = output;
1632 enc->output = NULL;
1686 * -3 if there the last byte can't form a single output char.
1742 * @out: an xmlBuffer for the output.
1830 * @out: an xmlBuffer for the output.
1926 * @out: an xmlBuffer for the output.
1929 * Generic front-end for the encoding handler output function
1931 * output in case of non-stateless encoding needing to initiate their
1932 * state or the output (like the BOM in UTF16).
1948 int output = 0;
1965 if (handler->output != NULL) {
1966 ret = handler->output(&out->content[out->use], &written,
1998 if (handler->output != NULL) {
1999 ret = handler->output(&out->content[out->use], &written,
2027 "xmlCharEncOutFunc: no output function !\n", NULL);
2031 if (ret >= 0) output += ret;
2040 "converted %d bytes to %d bytes of output\n",
2047 "output conversion failed by lack of space\n");
2052 xmlGenericError(xmlGenericErrorContext,"converted %d bytes to %d bytes of output %d left\n",
2067 "handling output conversion error\n");
2091 "output conversion failed due to conv error, bytes %s\n",
2185 if (handler->output != NULL) {
2189 ret = handler->output(&convbuf[0], &written,