Lines Matching refs:href

545 					smart_str_appends(&nscat, (char*)nsptr->href);  in master_to_zval_int()
2464 enc = get_encoder(SOAP_GLOBAL(sdl), (char*)nsptr->href, type); in to_zval_array()
2478 enc = get_encoder(SOAP_GLOBAL(sdl), (char*)nsptr->href, type); in to_zval_array()
2824 add_property_string(&soapvar, "enc_ns", (char*)nsptr->href); in guess_zval_convert()
3068 if (data->ns && data->ns->href) { in to_zval_any()
3069 smart_str_appends(&nscat, (char*)data->ns->href); in to_zval_any()
3270 xmlAttrPtr href; in check_and_resolve_href() local
3272 href = data->properties; in check_and_resolve_href()
3274 href = get_attribute(href, "href"); in check_and_resolve_href()
3275 if (href == NULL || href->ns == NULL) {break;} in check_and_resolve_href()
3276 href = href->next; in check_and_resolve_href()
3278 if (href) { in check_and_resolve_href()
3280 if (href->children->content[0] == '#') { in check_and_resolve_href()
3281 …et_node_with_attribute_recursive(data->doc->children, NULL, "id", (char*)&href->children->content[… in check_and_resolve_href()
3283 soap_error1(E_ERROR, "Encoding: Unresolved reference '%s'", href->children->content); in check_and_resolve_href()
3288 soap_error1(E_ERROR, "Encoding: External reference '%s'", href->children->content); in check_and_resolve_href()
3292 href = get_attribute_ex(data->properties, "ref", SOAP_1_2_ENC_NAMESPACE); in check_and_resolve_href()
3293 if (href) { in check_and_resolve_href()
3297 if (href->children->content[0] == '#') { in check_and_resolve_href()
3298 id = href->children->content+1; in check_and_resolve_href()
3300 id = href->children->content; in check_and_resolve_href()
3304 soap_error1(E_ERROR, "Encoding: Unresolved reference '%s'", href->children->content); in check_and_resolve_href()
3306 …soap_error1(E_ERROR, "Encoding: Violation of id and ref information items '%s'", href->children->c… in check_and_resolve_href()
3327 static xmlNsPtr xmlSearchNsPrefixByHref(xmlDocPtr doc, xmlNodePtr node, const xmlChar * href) in xmlSearchNsPrefixByHref() argument
3341 if (cur->prefix && cur->href && xmlStrEqual(cur->href, href)) { in xmlSearchNsPrefixByHref()
3351 if (cur->prefix && cur->href && xmlStrEqual(cur->href, href)) { in xmlSearchNsPrefixByHref()