Lines Matching defs:ctext

111  * ctext: context ptr for the original doc
116 get_op_id_from_doc(xmlXPathContextPtr ctext)
126 xpath_obj = xmlXPathEvalExpression(expr, ctext);
150 * ctext: context ptr for the original doc to parse request info.
156 process_get_request_from_doc(xmlXPathContextPtr ctext, request_t *req)
169 xpath_obj = xmlXPathEvalExpression(expr, ctext);
196 xpath_obj = xmlXPathEvalExpression(expr, ctext);
224 xpath_obj = xmlXPathEvalExpression(expr, ctext);
277 * ctext: context ptr for the original doc to parse request info.
283 process_enumerate_request_from_doc(xmlXPathContextPtr ctext, request_t *req)
294 xpath_obj = xmlXPathEvalExpression(expr, ctext);
338 * ctext: context ptr for the original doc to parse request info.
344 process_getAssociated_request_from_doc(xmlXPathContextPtr ctext, request_t *req)
355 xpath_obj = xmlXPathEvalExpression(expr, ctext);
388 xpath_obj = xmlXPathEvalExpression(expr, ctext);
399 xpath_obj = xmlXPathEvalExpression(expr, ctext);
414 xpath_obj = xmlXPathEvalExpression(expr, ctext);
425 xpath_obj = xmlXPathEvalExpression(expr, ctext);
476 * ctext: context ptr for the original doc to parse request info.
482 process_delete_request_from_doc(xmlXPathContextPtr ctext, request_t *req)
498 xpath_obj = xmlXPathEvalExpression(expr, ctext);
666 * ctext: context ptr for the original doc to parse request info.
672 process_createModify_request_from_doc(xmlXPathContextPtr ctext, request_t *req)
688 xpath_obj = xmlXPathEvalExpression(expr, ctext);
914 xmlXPathContextPtr ctext = NULL;
923 ctext = xmlXPathNewContext(x_doc);
924 if (ctext == NULL) {
929 op = get_op_id_from_doc(ctext);
931 if (ctext) xmlXPathFreeContext(ctext);
938 if (ctext) xmlXPathFreeContext(ctext);
945 if (ctext) xmlXPathFreeContext(ctext);
958 ret = process_get_request_from_doc(ctext, req);
961 ret = process_getAssociated_request_from_doc(ctext, req);
964 ret = process_enumerate_request_from_doc(ctext, req);
967 ret = process_delete_request_from_doc(ctext, req);
970 ret = process_createModify_request_from_doc(ctext, req);
976 if (ctext) xmlXPathFreeContext(ctext);
997 xmlXPathContextPtr ctext = NULL;
1105 ctext = xmlXPathNewContext(doc);
1106 if (ctext != NULL) {
1109 xpath_obj = xmlXPathEvalExpression(expr, ctext);
1131 if (ctext) xmlXPathFreeContext(ctext);