Lines Matching refs:prefix

292 			smart_str prefix = {0};  in soap_check_zval_ref()  local
307 smart_str_appendc(&prefix, '#'); in soap_check_zval_ref()
308 smart_str_appends(&prefix, id); in soap_check_zval_ref()
309 smart_str_0(&prefix); in soap_check_zval_ref()
310 id = ZSTR_VAL(prefix.s); in soap_check_zval_ref()
313 smart_str_appendl(&prefix, "#ref", 4); in soap_check_zval_ref()
314 smart_str_append_long(&prefix, SOAP_GLOBAL(cur_uniq_ref)); in soap_check_zval_ref()
315 smart_str_0(&prefix); in soap_check_zval_ref()
316 id = ZSTR_VAL(prefix.s); in soap_check_zval_ref()
324 smart_str_appendc(&prefix, '#'); in soap_check_zval_ref()
325 smart_str_appends(&prefix, id); in soap_check_zval_ref()
326 smart_str_0(&prefix); in soap_check_zval_ref()
327 id = ZSTR_VAL(prefix.s); in soap_check_zval_ref()
330 smart_str_appendl(&prefix, "#ref", 4); in soap_check_zval_ref()
331 smart_str_append_long(&prefix, SOAP_GLOBAL(cur_uniq_ref)); in soap_check_zval_ref()
332 smart_str_0(&prefix); in soap_check_zval_ref()
333 id = ZSTR_VAL(prefix.s); in soap_check_zval_ref()
338 smart_str_free(&prefix); in soap_check_zval_ref()
3338 if (cur->prefix && cur->href && xmlStrEqual(cur->href, href)) { in xmlSearchNsPrefixByHref()
3339 if (xmlSearchNs(doc, node, cur->prefix) == cur) { in xmlSearchNsPrefixByHref()
3348 if (cur->prefix && cur->href && xmlStrEqual(cur->href, href)) { in xmlSearchNsPrefixByHref()
3349 if (xmlSearchNs(doc, node, cur->prefix) == cur) { in xmlSearchNsPrefixByHref()
3370 if (xmlns != NULL && xmlns->prefix == NULL) { in encode_add_ns()
3374 xmlChar* prefix; in encode_add_ns() local
3376 if ((prefix = zend_hash_str_find_ptr(&SOAP_GLOBAL(defEncNs), (char*)ns, strlen(ns))) != NULL) { in encode_add_ns()
3377 xmlns = xmlNewNs(node->doc->children, BAD_CAST(ns), prefix); in encode_add_ns()
3379 smart_str prefix = {0}; in encode_add_ns() local
3384 smart_str_appendl(&prefix, "ns", 2); in encode_add_ns()
3385 smart_str_append_long(&prefix, num); in encode_add_ns()
3386 smart_str_0(&prefix); in encode_add_ns()
3387 if (xmlSearchNs(node->doc, node, BAD_CAST(ZSTR_VAL(prefix.s))) == NULL) { in encode_add_ns()
3390 smart_str_free(&prefix); in encode_add_ns()
3391 prefix.s = NULL; in encode_add_ns()
3396 xmlns = xmlNewNs(node->doc->children, enc_ns, BAD_CAST(prefix.s ? ZSTR_VAL(prefix.s) : "")); in encode_add_ns()
3398 smart_str_free(&prefix); in encode_add_ns()
3553 smart_str_appends(type, (char*)ns->prefix); in get_array_type()
3588 smart_str_appends(ret, (char*)xmlns->prefix); in get_type_str()