Lines Matching refs:array_type

2293 	smart_str array_type = {0}, array_size = {0};  in to_xml_array()  local
2406 get_type_str(xmlParam, (*ext)->ns, value, &array_type); in to_xml_array()
2408 smart_str_appends(&array_type, value); in to_xml_array()
2444 get_type_str(xmlParam, (*ext)->ns, (*ext)->val, &array_type); in to_xml_array()
2446 smart_str_appends(&array_type, (*ext)->val); in to_xml_array()
2492 …str(xmlParam, elementType->encode->details.ns, elementType->encode->details.type_str, &array_type); in to_xml_array()
2494 enc = get_array_type(xmlParam, data, &array_type TSRMLS_CC); in to_xml_array()
2505 …str(xmlParam, elementType->encode->details.ns, elementType->encode->details.type_str, &array_type); in to_xml_array()
2513 enc = get_array_type(xmlParam, data, &array_type TSRMLS_CC); in to_xml_array()
2521 smart_str_0(&array_type); in to_xml_array()
2522 if (strcmp(array_type.c,"xsd:anyType") == 0) { in to_xml_array()
2523 smart_str_free(&array_type); in to_xml_array()
2524 smart_str_appendl(&array_type,"xsd:ur-type",sizeof("xsd:ur-type")-1); in to_xml_array()
2526 smart_str_appendc(&array_type, '['); in to_xml_array()
2527 smart_str_append(&array_type, &array_size); in to_xml_array()
2528 smart_str_appendc(&array_type, ']'); in to_xml_array()
2529 smart_str_0(&array_type); in to_xml_array()
2530 set_ns_prop(xmlParam, SOAP_1_1_ENC_NAMESPACE, "arrayType", array_type.c); in to_xml_array()
2537 smart_str_0(&array_type); in to_xml_array()
2539 set_ns_prop(xmlParam, SOAP_1_2_ENC_NAMESPACE, "itemType", array_type.c); in to_xml_array()
2543 smart_str_free(&array_type); in to_xml_array()
3704 smart_str array_type = {0}; in get_array_type() local
3711 smart_str_appends(&array_type, cur_ns); in get_array_type()
3712 smart_str_appendc(&array_type, ':'); in get_array_type()
3716 smart_str_appends(&array_type, cur_stype); in get_array_type()
3717 smart_str_0(&array_type); in get_array_type()
3719 enc = get_encoder_ex(SOAP_GLOBAL(sdl), array_type.c, array_type.len); in get_array_type()
3720 smart_str_free(&array_type); in get_array_type()