• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asus-wl-520gu-7.0.1.45/src/router/rc.orig/

Lines Matching refs:ILibXMLNode

731 /*! \fn ILibDestructXMLNodeList(struct ILibXMLNode *node)
736 void ILibDestructXMLNodeList(struct ILibXMLNode *node)
738 struct ILibXMLNode *temp;
770 /*! \fn ILibProcessXMLNodeList(struct ILibXMLNode *nodeList)
779 int ILibProcessXMLNodeList(struct ILibXMLNode *nodeList)
782 struct ILibXMLNode *current = nodeList;
783 struct ILibXMLNode *temp;
799 current = (struct ILibXMLNode*)ILibPeekStack(&TagStack);
822 temp = (struct ILibXMLNode*)ILibPopStack(&TagStack);
875 /*! \fn ILibXML_LookupNamespace(struct ILibXMLNode *currentLocation, char *prefix, int prefixLength)
883 char* ILibXML_LookupNamespace(struct ILibXMLNode *currentLocation, char *prefix, int prefixLength)
885 struct ILibXMLNode *temp = currentLocation;
926 /*! \fn ILibXML_BuildNamespaceLookupTable(struct ILibXMLNode *node)
931 void ILibXML_BuildNamespaceLookupTable(struct ILibXMLNode *node)
934 struct ILibXMLNode *current = node;
978 /*! \fn ILibReadInnerXML(struct ILibXMLNode *node, char **RetVal)
979 \brief Reads the data segment from an ILibXMLNode
986 int ILibReadInnerXML(struct ILibXMLNode *node, char **RetVal)
988 struct ILibXMLNode *x = node;
1021 /*! \fn ILibGetXMLAttributes(struct ILibXMLNode *node)
1027 struct ILibXMLAttribute *ILibGetXMLAttributes(struct ILibXMLNode *node)
1210 struct ILibXMLNode *ILibParseXML(char *buffer, int offset, int length)
1223 struct ILibXMLNode *RetVal = NULL;
1224 struct ILibXMLNode *current = NULL;
1225 struct ILibXMLNode *x = NULL;
1243 RetVal = (struct ILibXMLNode*)malloc(sizeof(struct ILibXMLNode));
1244 memset(RetVal,0,sizeof(struct ILibXMLNode));
1351 // Instantiate a new ILibXMLNode for this element
1353 x = (struct ILibXMLNode*)malloc(sizeof(struct ILibXMLNode));
1354 memset(x,0,sizeof(struct ILibXMLNode));
1396 x = (struct ILibXMLNode*)malloc(sizeof(struct ILibXMLNode));
1397 memset(x,0,sizeof(struct ILibXMLNode));