Lines Matching refs:details
54 static void soap_server_fault(char* code, char* string, char *actor, zval* details, char *name TSRM…
286 ZEND_ARG_INFO(0, details)
546 if (defaultEncoding[i].details.type_str) { in php_soap_prepare_globals()
547 if (defaultEncoding[i].details.ns != NULL) { in php_soap_prepare_globals()
549 …spprintf(&ns_type, 0, "%s:%s", defaultEncoding[i].details.ns, defaultEncoding[i].details.type_str); in php_soap_prepare_globals()
553 …zend_hash_add(&defEnc, defaultEncoding[i].details.type_str, strlen(defaultEncoding[i].details.type… in php_soap_prepare_globals()
557 if (!zend_hash_index_exists(&defEncIndex, defaultEncoding[i].details.type)) { in php_soap_prepare_globals()
558 …zend_hash_index_update(&defEncIndex, defaultEncoding[i].details.type, &enc, sizeof(encodePtr), NUL… in php_soap_prepare_globals()
561 } while (defaultEncoding[i].details.type != END_KNOWN_TYPES); in php_soap_prepare_globals()
845 zval *code = NULL, *details = NULL, *headerfault = NULL; in PHP_METHOD() local
851 &details, &name, &name_len, &headerfault) == FAILURE) { in PHP_METHOD()
886 …set_soap_fault(this_ptr, fault_code_ns, fault_code, fault_string, fault_actor, details, name TSRML… in PHP_METHOD()
1051 new_enc->details.type = enc->details.type; in soap_create_typemap()
1052 new_enc->details.ns = estrdup(enc->details.ns); in soap_create_typemap()
1053 new_enc->details.type_str = estrdup(enc->details.type_str); in soap_create_typemap()
1054 new_enc->details.sdl_type = enc->details.sdl_type; in soap_create_typemap()
1057 new_enc->details.type = enc->details.type; in soap_create_typemap()
1059 new_enc->details.ns = estrdup(type_ns); in soap_create_typemap()
1061 new_enc->details.type_str = estrdup(type_name); in soap_create_typemap()
1065 new_enc->details.map = emalloc(sizeof(soapMapping)); in soap_create_typemap()
1066 memset(new_enc->details.map, 0, sizeof(soapMapping)); in soap_create_typemap()
1069 new_enc->details.map->to_xml = to_xml; in soap_create_typemap()
1071 } else if (enc->details.map && enc->details.map->to_xml) { in soap_create_typemap()
1072 zval_add_ref(&enc->details.map->to_xml); in soap_create_typemap()
1073 new_enc->details.map->to_xml = enc->details.map->to_xml; in soap_create_typemap()
1077 new_enc->details.map->to_zval = to_zval; in soap_create_typemap()
1079 } else if (enc->details.map && enc->details.map->to_zval) { in soap_create_typemap()
1080 zval_add_ref(&enc->details.map->to_zval); in soap_create_typemap()
1081 new_enc->details.map->to_zval = enc->details.map->to_zval; in soap_create_typemap()
2004 zval* details = NULL; local
2014 &code, &code_len, &string, &string_len, &actor, &actor_len, &details,
2019 soap_server_fault(code, string, actor, details, name TSRMLS_CC);
2108 static void soap_server_fault(char* code, char* string, char *actor, zval* details, char* name TSRM… argument
2114 set_soap_fault(&ret, NULL, code, string, actor, details, name TSRMLS_CC);
3977 fault->details &&
3978 zend_hash_num_elements(fault->details) == 1) {
3981 zend_hash_internal_pointer_reset(fault->details);
3982 zend_hash_get_current_data(fault->details, (void**)&sparam);
4040 if (fault && fault->details && zend_hash_num_elements(fault->details) == 1) {
4053 zend_hash_internal_pointer_reset(fault->details);
4054 zend_hash_get_current_data(fault->details, (void**)&sparam);
4597 if ((*param)->encode && (*param)->encode->details.type_str) {
4598 …smart_str_appendl(buf, (*param)->encode->details.type_str, strlen((*param)->encode->details.type_s…
4611 if ((*param)->encode && (*param)->encode->details.type_str) {
4612 …smart_str_appendl(buf, (*param)->encode->details.type_str, strlen((*param)->encode->details.type_s…
4637 if ((*param)->encode && (*param)->encode->details.type_str) {
4638 …smart_str_appendl(buf, (*param)->encode->details.type_str, strlen((*param)->encode->details.type_s…
4700 smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4745 (type->encode->details.type == IS_ARRAY ||
4746 type->encode->details.type == SOAP_ENC_ARRAY)) {
4786 elementType->encode && elementType->encode->details.type_str) {
4787 smart_str_appends(buf, elementType->encode->details.type_str);
4813 while (enc && enc->details.sdl_type &&
4814 enc != enc->details.sdl_type->encode &&
4815 enc->details.sdl_type->kind != XSD_TYPEKIND_SIMPLE &&
4816 enc->details.sdl_type->kind != XSD_TYPEKIND_LIST &&
4817 enc->details.sdl_type->kind != XSD_TYPEKIND_UNION) {
4818 enc = enc->details.sdl_type->encode;
4823 … smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4837 if ((*attr)->encode && (*attr)->encode->details.type_str) {
4838 smart_str_appends(buf, (*attr)->encode->details.type_str);