Lines Matching refs:doc
80 xmlDocPtr doc = NULL ; in main() local
118 doc = xmlParseFile( argv[2] ) ; in main()
119 if( doc == NULL || xmlDocGetRootElement( doc ) == NULL ) { in main()
125 tplNode = xmlSecFindNode( xmlDocGetRootElement( doc ), xmlSecNodeSignature, xmlSecDSigNs ) ; in main()
132 …tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", ( xmlChar* )"http:/… in main()
134 tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", NULL ) ; in main()
150 idValue = xmlNodeListGetString( tarNode->doc, idAttr->children, 1 ) ; in main()
156 if( xmlAddID( NULL, doc, idValue, idAttr ) == NULL ) { in main()
178 uriValue = xmlNodeListGetString( tarNode->doc, uriAttr->children, 1 ) ; in main()
319 if( doc != NULL ) in main()
320 xmlFreeDoc( doc ) ; in main()