Lines Matching refs:ctype

453 	char *ctype;  in wsdl_soap_binding_header()  local
461 ctype = strrchr((char*)tmp->children->content,':'); in wsdl_soap_binding_header()
462 if (ctype == NULL) { in wsdl_soap_binding_header()
463 ctype = (char*)tmp->children->content; in wsdl_soap_binding_header()
465 ++ctype; in wsdl_soap_binding_header()
467 if (zend_hash_find(&ctx->messages, ctype, strlen(ctype)+1, (void**)&message) != SUCCESS) { in wsdl_soap_binding_header()
668 char *ctype; in wsdl_message() local
670 ctype = strrchr((char*)message_name,':'); in wsdl_message()
671 if (ctype == NULL) { in wsdl_message()
672 ctype = (char*)message_name; in wsdl_message()
674 ++ctype; in wsdl_message()
676 if (zend_hash_find(&ctx->messages, ctype, strlen(ctype)+1, (void**)&tmp) != SUCCESS) { in wsdl_message()
767 char *ctype; in load_wsdl() local
837 ctype = strrchr((char*)bindingAttr->children->content,':'); in load_wsdl()
838 if (ctype == NULL) { in load_wsdl()
839 ctype = (char*)bindingAttr->children->content; in load_wsdl()
841 ++ctype; in load_wsdl()
843 if (zend_hash_find(&ctx.bindings, ctype, strlen(ctype)+1, (void*)&tmp) != SUCCESS) { in load_wsdl()
844 soap_error1(E_ERROR, "Parsing WSDL: No <binding> element with name '%s'", ctype); in load_wsdl()
892 ctype = strrchr((char*)type->children->content,':'); in load_wsdl()
893 if (ctype == NULL) { in load_wsdl()
894 ctype = (char*)type->children->content; in load_wsdl()
896 ++ctype; in load_wsdl()
898 if (zend_hash_find(&ctx.portTypes, ctype, strlen(ctype)+1, (void**)&tmp) != SUCCESS) { in load_wsdl()