Lines Matching refs:ctxt

57 …path_proxy_factory(xmlNodePtr node, zval *child, dom_object *intern, xmlXPathParserContextPtr ctxt)  in dom_xpath_proxy_factory()  argument
59 ZEND_IGNORE_VALUE(ctxt); in dom_xpath_proxy_factory()
66 static dom_xpath_object *dom_xpath_ext_fetch_intern(xmlXPathParserContextPtr ctxt) in dom_xpath_ext_fetch_intern() argument
74 dom_xpath_object *intern = (dom_xpath_object *) ctxt->context->userData; in dom_xpath_ext_fetch_intern()
84 static void dom_xpath_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, php_dom_xpath_node… in dom_xpath_ext_function_php() argument
86 dom_xpath_object *intern = dom_xpath_ext_fetch_intern(ctxt); in dom_xpath_ext_function_php()
88 php_dom_xpath_callbacks_clean_argument_stack(ctxt, nargs); in dom_xpath_ext_function_php()
90 …php_dom_xpath_callbacks_call_php_ns(&intern->xpath_callbacks, ctxt, nargs, evaluation_mode, &inter… in dom_xpath_ext_function_php()
95 static void dom_xpath_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in dom_xpath_ext_function_string_php() argument
97 dom_xpath_ext_function_php(ctxt, nargs, PHP_DOM_XPATH_EVALUATE_NODESET_TO_STRING); in dom_xpath_ext_function_string_php()
101 static void dom_xpath_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in dom_xpath_ext_function_object_php() argument
103 dom_xpath_ext_function_php(ctxt, nargs, PHP_DOM_XPATH_EVALUATE_NODESET_TO_NODESET); in dom_xpath_ext_function_object_php()
107 static void dom_xpath_ext_function_trampoline(xmlXPathParserContextPtr ctxt, int nargs) in dom_xpath_ext_function_trampoline() argument
109 dom_xpath_object *intern = dom_xpath_ext_fetch_intern(ctxt); in dom_xpath_ext_function_trampoline()
111 php_dom_xpath_callbacks_clean_argument_stack(ctxt, nargs); in dom_xpath_ext_function_trampoline()
113 …php_dom_xpath_callbacks_call_custom_ns(&intern->xpath_callbacks, ctxt, nargs, PHP_DOM_XPATH_EVALUA… in dom_xpath_ext_function_trampoline()
450 static void dom_xpath_register_func_in_ctx(void *ctxt, const zend_string *ns, const zend_string *na… in dom_xpath_register_func_in_ctx() argument
452 …xmlXPathRegisterFuncNS((xmlXPathContextPtr) ctxt, (const xmlChar *) ZSTR_VAL(name), (const xmlChar… in dom_xpath_register_func_in_ctx()