Lines Matching refs:doc
69 xmlDocPtr doc = NULL ; in main() local
113 doc = xmlParseFile( argv[1] ) ; in main()
114 if( doc == NULL || xmlDocGetRootElement( doc ) == NULL ) { in main()
120 tplNode = xmlSecFindNode( xmlDocGetRootElement( doc ), xmlSecNodeSignature, xmlSecDSigNs ) ; in main()
128 …tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", ( xmlChar* )"http:/… in main()
130 tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", NULL ) ; in main()
146 idValue = xmlNodeListGetString( tarNode->doc, idAttr->children, 1 ) ; in main()
152 if( xmlAddID( NULL, doc, idValue, idAttr ) == NULL ) { in main()
174 uriValue = xmlNodeListGetString( tarNode->doc, uriAttr->children, 1 ) ; in main()
336 xmlDocDump( dstFile, doc ) ; in main()
345 if( doc != NULL ) in main()
346 xmlFreeDoc( doc ) ; in main()