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
1293 char out[40];
1300 out[i] = ch[i];
1301 out[i] = 0;
1303 fprintf(stdout, "SAX.characters(%s, %d)\n", out, len);
1335 char out[40];
1342 out[i] = ch[i];
1343 out[i] = 0;
1344 fprintf(stdout, "SAX.ignorableWhitespace(%s, %d)\n", out, len);
2098 fprintf(stderr, "Out of memory for XPath\n");
2152 fprintf(stderr, "Out of memory for XPath\n");
2553 FILE *out;
2555 out = stdout;
2557 out = fopen(output,"wb");
2559 if (out != NULL) {
2560 if (htmlDocDump(out, doc) < 0)
2564 fclose(out);
2675 FILE *out;
2677 out = stdout;
2679 out = fopen(output,"wb");
2681 if (out != NULL) {
2682 if (xmlDocDump(out, doc) < 0)
2686 fclose(out);
2727 FILE *out;
2729 out = stdout;
2731 out = fopen(output,"wb");
2733 if (out != NULL) {
2734 xmlDebugDumpDocument(out, doc);
2737 fclose(out);
3118 fprintf(stderr, "Out of memory in xmllint:registerNode()\n");