Lines Matching refs:prefix

293 			smart_str prefix = {0};  in soap_check_zval_ref()  local
308 smart_str_appendc(&prefix, '#'); in soap_check_zval_ref()
309 smart_str_appends(&prefix, id); in soap_check_zval_ref()
310 smart_str_0(&prefix); in soap_check_zval_ref()
311 id = ZSTR_VAL(prefix.s); in soap_check_zval_ref()
314 smart_str_appendl(&prefix, "#ref", 4); in soap_check_zval_ref()
315 smart_str_append_long(&prefix, SOAP_GLOBAL(cur_uniq_ref)); in soap_check_zval_ref()
316 smart_str_0(&prefix); in soap_check_zval_ref()
317 id = ZSTR_VAL(prefix.s); in soap_check_zval_ref()
325 smart_str_appendc(&prefix, '#'); in soap_check_zval_ref()
326 smart_str_appends(&prefix, id); in soap_check_zval_ref()
327 smart_str_0(&prefix); in soap_check_zval_ref()
328 id = ZSTR_VAL(prefix.s); in soap_check_zval_ref()
331 smart_str_appendl(&prefix, "#ref", 4); in soap_check_zval_ref()
332 smart_str_append_long(&prefix, SOAP_GLOBAL(cur_uniq_ref)); in soap_check_zval_ref()
333 smart_str_0(&prefix); in soap_check_zval_ref()
334 id = ZSTR_VAL(prefix.s); in soap_check_zval_ref()
339 smart_str_free(&prefix); in soap_check_zval_ref()
3378 if (cur->prefix && cur->href && xmlStrEqual(cur->href, href)) { in xmlSearchNsPrefixByHref()
3379 if (xmlSearchNs(doc, node, cur->prefix) == cur) { in xmlSearchNsPrefixByHref()
3388 if (cur->prefix && cur->href && xmlStrEqual(cur->href, href)) { in xmlSearchNsPrefixByHref()
3389 if (xmlSearchNs(doc, node, cur->prefix) == cur) { in xmlSearchNsPrefixByHref()
3410 if (xmlns != NULL && xmlns->prefix == NULL) { in encode_add_ns()
3414 xmlChar* prefix; in encode_add_ns() local
3416 if ((prefix = zend_hash_str_find_ptr(&SOAP_GLOBAL(defEncNs), (char*)ns, strlen(ns))) != NULL) { in encode_add_ns()
3417 xmlns = xmlNewNs(node->doc->children, BAD_CAST(ns), prefix); in encode_add_ns()
3419 smart_str prefix = {0}; in encode_add_ns() local
3423 smart_str_appendl(&prefix, "ns", 2); in encode_add_ns()
3424 smart_str_append_long(&prefix, num); in encode_add_ns()
3425 smart_str_0(&prefix); in encode_add_ns()
3426 if (xmlSearchNs(node->doc, node, BAD_CAST(ZSTR_VAL(prefix.s))) == NULL) { in encode_add_ns()
3429 smart_str_free(&prefix); in encode_add_ns()
3430 prefix.s = NULL; in encode_add_ns()
3438 xmlns = xmlNewNs(node->doc->children, enc_ns, BAD_CAST(prefix.s ? ZSTR_VAL(prefix.s) : "")); in encode_add_ns()
3441 … xmlns = xmlNewNs(node->doc->children, BAD_CAST(ns), BAD_CAST(prefix.s ? ZSTR_VAL(prefix.s) : "")); in encode_add_ns()
3443 smart_str_free(&prefix); in encode_add_ns()
3598 smart_str_appends(type, (char*)ns->prefix); in get_array_type()
3633 smart_str_appends(ret, (char*)xmlns->prefix); in get_type_str()