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()
3498 if (cur->prefix && cur->href && xmlStrEqual(cur->href, href)) { in xmlSearchNsPrefixByHref()
3499 if (xmlSearchNs(doc, node, cur->prefix) == cur) { in xmlSearchNsPrefixByHref()
3508 if (cur->prefix && cur->href && xmlStrEqual(cur->href, href)) { in xmlSearchNsPrefixByHref()
3509 if (xmlSearchNs(doc, node, cur->prefix) == cur) { in xmlSearchNsPrefixByHref()
3530 if (xmlns != NULL && xmlns->prefix == NULL) { in encode_add_ns()
3534 xmlChar* prefix; in encode_add_ns() local
3537 …if (zend_hash_find(&SOAP_GLOBAL(defEncNs), (char*)ns, strlen(ns) + 1, (void **)&prefix) == SUCCESS… in encode_add_ns()
3538 xmlns = xmlNewNs(node->doc->children, BAD_CAST(ns), prefix); in encode_add_ns()
3540 smart_str prefix = {0}; in encode_add_ns() local
3544 smart_str_appendl(&prefix, "ns", 2); in encode_add_ns()
3545 smart_str_append_long(&prefix, num); in encode_add_ns()
3546 smart_str_0(&prefix); in encode_add_ns()
3547 if (xmlSearchNs(node->doc, node, BAD_CAST(prefix.c)) == NULL) { in encode_add_ns()
3550 smart_str_free(&prefix); in encode_add_ns()
3551 prefix.c = NULL; in encode_add_ns()
3552 prefix.len = 0; in encode_add_ns()
3556 xmlns = xmlNewNs(node->doc->children, BAD_CAST(ns), BAD_CAST(prefix.c)); in encode_add_ns()
3557 smart_str_free(&prefix); in encode_add_ns()
3718 smart_str_appends(type, (char*)ns->prefix); in get_array_type()
3753 smart_str_appends(ret, (char*)xmlns->prefix); in get_type_str()