• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching defs:atts

1433     const xmlChar **atts;
1437 if (ctxt->atts == NULL) {
1439 atts = (const xmlChar **)
1441 if (atts == NULL) goto mem_error;
1442 ctxt->atts = atts;
1449 atts = (const xmlChar **) xmlRealloc((void *) ctxt->atts,
1451 if (atts == NULL) goto mem_error;
1452 ctxt->atts = atts;
7942 const xmlChar **atts = ctxt->atts;
7979 if (xmlStrEqual(atts[i], attname)) {
7986 * Add the pair to atts
7988 if (atts == NULL) {
7990 atts = (const xmlChar **)
7992 if (atts == NULL) {
7998 ctxt->atts = atts;
8004 n = (const xmlChar **) xmlRealloc((void *) atts,
8012 atts = n;
8013 ctxt->atts = atts;
8016 atts[nbatts++] = attname;
8017 atts[nbatts++] = attvalue;
8018 atts[nbatts] = NULL;
8019 atts[nbatts + 1] = NULL;
8051 ctxt->sax->startElement(ctxt->userData, name, atts);
8056 if (atts != NULL) {
8059 if (atts[i] != NULL)
8060 xmlFree((xmlChar *) atts[i]);
8624 const xmlChar **atts = ctxt->atts;
8816 * Add the pair to atts
8818 if ((atts == NULL) || (nbatts + 5 > maxatts)) {
8825 atts = ctxt->atts;
8828 atts[nbatts++] = attname;
8829 atts[nbatts++] = aprefix;
8830 atts[nbatts++] = NULL; /* the URI will be fetched later */
8831 atts[nbatts++] = attvalue;
8833 atts[nbatts++] = attvalue;
8915 if ((attname == atts[j]) && (aprefix == atts[j+1]))
8920 if ((atts == NULL) || (nbatts + 5 > maxatts)) {
8925 atts = ctxt->atts;
8927 atts[nbatts++] = attname;
8928 atts[nbatts++] = aprefix;
8930 atts[nbatts++] = NULL;
8932 atts[nbatts++] = xmlGetNamespace(ctxt, aprefix);
8933 atts[nbatts++] = defaults->values[5 * i + 2];
8934 atts[nbatts++] = defaults->values[5 * i + 3];
8954 if (atts[i + 1] != NULL) {
8955 nsname = xmlGetNamespace(ctxt, atts[i + 1]);
8959 atts[i + 1], atts[i], localname);
8961 atts[i + 2] = nsname;
8971 if (atts[i] == atts[j]) {
8972 if (atts[i+1] == atts[j+1]) {
8973 xmlErrAttributeDup(ctxt, atts[i+1], atts[i]);
8976 if ((nsname != NULL) && (atts[j + 2] == nsname)) {
8979 atts[i], nsname, NULL);
9003 nbatts / 5, nbdef, atts);
9006 nsname, 0, NULL, nbatts / 5, nbdef, atts);
9014 if ((ctxt->attallocs[j] != 0) && (atts[i] != NULL))
9015 xmlFree((xmlChar *) atts[i]);
9026 if ((ctxt->attallocs[j] != 0) && (atts[i] != NULL))
9027 xmlFree((xmlChar *) atts[i]);