Home | History | Annotate | Download | only in libxml2

Lines Matching defs:out

119     XMLLINT_ERR_MEM = 9,	/* Out of memory error */
349 fprintf(stderr, "Ran out of memory needs > %d bytes\n", maxmem);
448 * endTimer: call where you want to stop timing and to print out a
1292 char out[40];
1299 out[i] = ch[i];
1300 out[i] = 0;
1302 fprintf(stdout, "SAX.characters(%s, %d)\n", out, len);
1334 char out[40];
1341 out[i] = ch[i];
1342 out[i] = 0;
1343 fprintf(stdout, "SAX.ignorableWhitespace(%s, %d)\n", out, len);
2091 fprintf(stderr, "Out of memory for XPath\n");
2145 fprintf(stderr, "Out of memory for XPath\n");
2546 FILE *out;
2548 out = stdout;
2550 out = fopen(output,"wb");
2552 if (out != NULL) {
2553 if (htmlDocDump(out, doc) < 0)
2557 fclose(out);
2668 FILE *out;
2670 out = stdout;
2672 out = fopen(output,"wb");
2674 if (out != NULL) {
2675 if (xmlDocDump(out, doc) < 0)
2679 fclose(out);
2720 FILE *out;
2722 out = stdout;
2724 out = fopen(output,"wb");
2726 if (out != NULL) {
2727 xmlDebugDumpDocument(out, doc);
2730 fclose(out);
3110 fprintf(stderr, "Out of memory in xmllint:registerNode()\n");