Lines Matching refs:href

573 					smart_str_appends(&nscat, (char*)nsptr->href);  in master_to_zval_int()
2598 enc = get_encoder(SOAP_GLOBAL(sdl), (char*)nsptr->href, type); in to_zval_array()
2612 enc = get_encoder(SOAP_GLOBAL(sdl), (char*)nsptr->href, type); in to_zval_array()
2971 add_property_string(soapvar, "enc_ns", (char*)nsptr->href, 1); in guess_zval_convert()
3206 if (data->ns && data->ns->href) { in to_zval_any()
3207 smart_str_appends(&nscat, (char*)data->ns->href); in to_zval_any()
3418 xmlAttrPtr href; in check_and_resolve_href() local
3420 href = data->properties; in check_and_resolve_href()
3422 href = get_attribute(href, "href"); in check_and_resolve_href()
3423 if (href == NULL || href->ns == NULL) {break;} in check_and_resolve_href()
3424 href = href->next; in check_and_resolve_href()
3426 if (href) { in check_and_resolve_href()
3428 if (href->children->content[0] == '#') { in check_and_resolve_href()
3429 …et_node_with_attribute_recursive(data->doc->children, NULL, "id", (char*)&href->children->content[… in check_and_resolve_href()
3431 soap_error1(E_ERROR, "Encoding: Unresolved reference '%s'", href->children->content); in check_and_resolve_href()
3436 soap_error1(E_ERROR, "Encoding: External reference '%s'", href->children->content); in check_and_resolve_href()
3440 href = get_attribute_ex(data->properties, "ref", SOAP_1_2_ENC_NAMESPACE); in check_and_resolve_href()
3441 if (href) { in check_and_resolve_href()
3445 if (href->children->content[0] == '#') { in check_and_resolve_href()
3446 id = href->children->content+1; in check_and_resolve_href()
3448 id = href->children->content; in check_and_resolve_href()
3452 soap_error1(E_ERROR, "Encoding: Unresolved reference '%s'", href->children->content); in check_and_resolve_href()
3454 …soap_error1(E_ERROR, "Encoding: Violation of id and ref information items '%s'", href->children->c… in check_and_resolve_href()
3475 static xmlNsPtr xmlSearchNsPrefixByHref(xmlDocPtr doc, xmlNodePtr node, const xmlChar * href) in xmlSearchNsPrefixByHref() argument
3489 if (cur->prefix && cur->href && xmlStrEqual(cur->href, href)) { in xmlSearchNsPrefixByHref()
3499 if (cur->prefix && cur->href && xmlStrEqual(cur->href, href)) { in xmlSearchNsPrefixByHref()