Lines Matching defs:from
632 * @domain: where the error comes from
937 * @from: a source error
945 xmlCopyError(xmlErrorPtr from, xmlErrorPtr to) {
948 if ((from == NULL) || (to == NULL))
951 message = (char *) xmlStrdup((xmlChar *) from->message);
952 file = (char *) xmlStrdup ((xmlChar *) from->file);
953 str1 = (char *) xmlStrdup ((xmlChar *) from->str1);
954 str2 = (char *) xmlStrdup ((xmlChar *) from->str2);
955 str3 = (char *) xmlStrdup ((xmlChar *) from->str3);
967 to->domain = from->domain;
968 to->code = from->code;
969 to->level = from->level;
970 to->line = from->line;
971 to->node = from->node;
972 to->int1 = from->int1;
973 to->int2 = from->int2;
974 to->node = from->node;
975 to->ctxt = from->ctxt;