Home | History | Annotate | Download | only in jni

Lines Matching refs:node1

171     xmlNodePtr node1;
184 node1 = xmlDocGetRootElement (doc);
185 if (node1 == NULL)
190 ALOGD ("%s: root=%s", fn, node1->name);
192 node1 = node1->xmlChildrenNode;
193 while (node1) //loop through all elements in <Routes ...
195 if (xmlStrcmp(node1->name, (const xmlChar*) "Route")==0)
197 xmlChar* value = xmlGetProp (node1, (const xmlChar*) "Type");
201 xmlNodePtr node2 = node1->xmlChildrenNode;
214 xmlNodePtr node2 = node1->xmlChildrenNode;
227 node1 = node1->next;