Lines Matching +defs:val +defs:file
1241 xmlChar *val;
1341 val = xmlStrndup(q, cur - q);
1342 ent = xmlGetDocEntity(doc, val);
1358 node = xmlNewReference(doc, val);
1360 if (val != NULL) xmlFree(val);
1382 xmlFree(val);
1438 xmlChar *val;
1526 val = xmlStrndup(q, cur - q);
1527 ent = xmlGetDocEntity(doc, val);
1543 node = xmlNewReference(doc, val);
1545 if (val != NULL) xmlFree(val);
1566 xmlFree(val);
4651 * @val: the xml:space value ("0": default, 1: "preserve")
4657 xmlNodeSetSpacePreserve(xmlNodePtr cur, int val) {
4691 switch (val) {
6806 * @file: the file output
6813 xmlBufferDump(FILE *file, xmlBufferPtr buf) {
6830 if (file == NULL)
6831 file = stdout;
6832 ret = fwrite(buf->content, sizeof(xmlChar), buf->use, file);