Lines Matching refs:prefix

304 			smart_str prefix = {0};  in soap_check_zval_ref()  local
321 smart_str_appendc(&prefix, '#'); in soap_check_zval_ref()
322 smart_str_appends(&prefix, id); in soap_check_zval_ref()
323 smart_str_0(&prefix); in soap_check_zval_ref()
324 id = prefix.c; in soap_check_zval_ref()
327 smart_str_appendl(&prefix, "#ref", 4); in soap_check_zval_ref()
328 smart_str_append_long(&prefix, SOAP_GLOBAL(cur_uniq_ref)); in soap_check_zval_ref()
329 smart_str_0(&prefix); in soap_check_zval_ref()
330 id = prefix.c; in soap_check_zval_ref()
338 smart_str_appendc(&prefix, '#'); in soap_check_zval_ref()
339 smart_str_appends(&prefix, id); in soap_check_zval_ref()
340 smart_str_0(&prefix); in soap_check_zval_ref()
341 id = prefix.c; in soap_check_zval_ref()
344 smart_str_appendl(&prefix, "#ref", 4); in soap_check_zval_ref()
345 smart_str_append_long(&prefix, SOAP_GLOBAL(cur_uniq_ref)); in soap_check_zval_ref()
346 smart_str_0(&prefix); in soap_check_zval_ref()
347 id = prefix.c; in soap_check_zval_ref()
352 smart_str_free(&prefix); in soap_check_zval_ref()
3489 if (cur->prefix && cur->href && xmlStrEqual(cur->href, href)) { in xmlSearchNsPrefixByHref()
3490 if (xmlSearchNs(doc, node, cur->prefix) == cur) { in xmlSearchNsPrefixByHref()
3499 if (cur->prefix && cur->href && xmlStrEqual(cur->href, href)) { in xmlSearchNsPrefixByHref()
3500 if (xmlSearchNs(doc, node, cur->prefix) == cur) { in xmlSearchNsPrefixByHref()
3521 if (xmlns != NULL && xmlns->prefix == NULL) { in encode_add_ns()
3525 xmlChar* prefix; in encode_add_ns() local
3528 …if (zend_hash_find(&SOAP_GLOBAL(defEncNs), (char*)ns, strlen(ns) + 1, (void **)&prefix) == SUCCESS… in encode_add_ns()
3529 xmlns = xmlNewNs(node->doc->children, BAD_CAST(ns), prefix); in encode_add_ns()
3531 smart_str prefix = {0}; in encode_add_ns() local
3535 smart_str_appendl(&prefix, "ns", 2); in encode_add_ns()
3536 smart_str_append_long(&prefix, num); in encode_add_ns()
3537 smart_str_0(&prefix); in encode_add_ns()
3538 if (xmlSearchNs(node->doc, node, BAD_CAST(prefix.c)) == NULL) { in encode_add_ns()
3541 smart_str_free(&prefix); in encode_add_ns()
3542 prefix.c = NULL; in encode_add_ns()
3543 prefix.len = 0; in encode_add_ns()
3547 xmlns = xmlNewNs(node->doc->children, BAD_CAST(ns), BAD_CAST(prefix.c)); in encode_add_ns()
3548 smart_str_free(&prefix); in encode_add_ns()
3709 smart_str_appends(type, (char*)ns->prefix); in get_array_type()
3744 smart_str_appends(ret, (char*)xmlns->prefix); in get_type_str()