Lines Matching refs:prefix

296 			smart_str prefix = {0};  in soap_check_zval_ref()  local
311 smart_str_appendc(&prefix, '#'); in soap_check_zval_ref()
312 smart_str_appends(&prefix, id); in soap_check_zval_ref()
313 smart_str_0(&prefix); in soap_check_zval_ref()
314 id = ZSTR_VAL(prefix.s); in soap_check_zval_ref()
317 smart_str_appendl(&prefix, "#ref", 4); in soap_check_zval_ref()
318 smart_str_append_long(&prefix, SOAP_GLOBAL(cur_uniq_ref)); in soap_check_zval_ref()
319 smart_str_0(&prefix); in soap_check_zval_ref()
320 id = ZSTR_VAL(prefix.s); in soap_check_zval_ref()
328 smart_str_appendc(&prefix, '#'); in soap_check_zval_ref()
329 smart_str_appends(&prefix, id); in soap_check_zval_ref()
330 smart_str_0(&prefix); in soap_check_zval_ref()
331 id = ZSTR_VAL(prefix.s); in soap_check_zval_ref()
334 smart_str_appendl(&prefix, "#ref", 4); in soap_check_zval_ref()
335 smart_str_append_long(&prefix, SOAP_GLOBAL(cur_uniq_ref)); in soap_check_zval_ref()
336 smart_str_0(&prefix); in soap_check_zval_ref()
337 id = ZSTR_VAL(prefix.s); in soap_check_zval_ref()
342 smart_str_free(&prefix); in soap_check_zval_ref()
3372 if (cur->prefix && cur->href && xmlStrEqual(cur->href, href)) { in xmlSearchNsPrefixByHref()
3373 if (xmlSearchNs(doc, node, cur->prefix) == cur) { in xmlSearchNsPrefixByHref()
3382 if (cur->prefix && cur->href && xmlStrEqual(cur->href, href)) { in xmlSearchNsPrefixByHref()
3383 if (xmlSearchNs(doc, node, cur->prefix) == cur) { in xmlSearchNsPrefixByHref()
3404 if (xmlns != NULL && xmlns->prefix == NULL) { in encode_add_ns()
3408 xmlChar* prefix; in encode_add_ns() local
3410 if ((prefix = zend_hash_str_find_ptr(&SOAP_GLOBAL(defEncNs), (char*)ns, strlen(ns))) != NULL) { in encode_add_ns()
3411 xmlns = xmlNewNs(node->doc->children, BAD_CAST(ns), prefix); in encode_add_ns()
3413 smart_str prefix = {0}; in encode_add_ns() local
3417 smart_str_appendl(&prefix, "ns", 2); in encode_add_ns()
3418 smart_str_append_long(&prefix, num); in encode_add_ns()
3419 smart_str_0(&prefix); in encode_add_ns()
3420 if (xmlSearchNs(node->doc, node, BAD_CAST(ZSTR_VAL(prefix.s))) == NULL) { in encode_add_ns()
3423 smart_str_free(&prefix); in encode_add_ns()
3424 prefix.s = NULL; in encode_add_ns()
3428 … xmlns = xmlNewNs(node->doc->children, BAD_CAST(ns), BAD_CAST(prefix.s ? ZSTR_VAL(prefix.s) : "")); in encode_add_ns()
3429 smart_str_free(&prefix); in encode_add_ns()
3586 smart_str_appends(type, (char*)ns->prefix); in get_array_type()
3621 smart_str_appends(ret, (char*)xmlns->prefix); in get_type_str()