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()
851 zval *code = NULL, *details = NULL, *headerfault = NULL; in PHP_METHOD() local
857 &details, &name, &name_len, &headerfault) == FAILURE) { in PHP_METHOD()
892 …set_soap_fault(this_ptr, fault_code_ns, fault_code, fault_string, fault_actor, details, name TSRML… in PHP_METHOD()
1057 new_enc->details.type = enc->details.type; in soap_create_typemap()
1058 new_enc->details.ns = estrdup(enc->details.ns); in soap_create_typemap()
1059 new_enc->details.type_str = estrdup(enc->details.type_str); in soap_create_typemap()
1060 new_enc->details.sdl_type = enc->details.sdl_type; in soap_create_typemap()
1063 new_enc->details.type = enc->details.type; in soap_create_typemap()
1065 new_enc->details.ns = estrdup(type_ns); in soap_create_typemap()
1067 new_enc->details.type_str = estrdup(type_name); in soap_create_typemap()
1071 new_enc->details.map = emalloc(sizeof(soapMapping)); in soap_create_typemap()
1072 memset(new_enc->details.map, 0, sizeof(soapMapping)); in soap_create_typemap()
1075 new_enc->details.map->to_xml = to_xml; in soap_create_typemap()
1077 } else if (enc->details.map && enc->details.map->to_xml) { in soap_create_typemap()
1078 zval_add_ref(&enc->details.map->to_xml); in soap_create_typemap()
1079 new_enc->details.map->to_xml = enc->details.map->to_xml; in soap_create_typemap()
1083 new_enc->details.map->to_zval = to_zval; in soap_create_typemap()
1085 } else if (enc->details.map && enc->details.map->to_zval) { in soap_create_typemap()
1086 zval_add_ref(&enc->details.map->to_zval); in soap_create_typemap()
1087 new_enc->details.map->to_zval = enc->details.map->to_zval; in soap_create_typemap()
2010 zval* details = NULL; local
2020 &code, &code_len, &string, &string_len, &actor, &actor_len, &details,
2025 soap_server_fault(code, string, actor, details, name TSRMLS_CC);
2113 static void soap_server_fault(char* code, char* string, char *actor, zval* details, char* name TSRM… argument
2119 set_soap_fault(&ret, NULL, code, string, actor, details, name TSRMLS_CC);
3996 fault->details &&
3997 zend_hash_num_elements(fault->details) == 1) {
4000 zend_hash_internal_pointer_reset(fault->details);
4001 zend_hash_get_current_data(fault->details, (void**)&sparam);
4059 if (fault && fault->details && zend_hash_num_elements(fault->details) == 1) {
4072 zend_hash_internal_pointer_reset(fault->details);
4073 zend_hash_get_current_data(fault->details, (void**)&sparam);
4616 if ((*param)->encode && (*param)->encode->details.type_str) {
4617 …smart_str_appendl(buf, (*param)->encode->details.type_str, strlen((*param)->encode->details.type_s…
4630 if ((*param)->encode && (*param)->encode->details.type_str) {
4631 …smart_str_appendl(buf, (*param)->encode->details.type_str, strlen((*param)->encode->details.type_s…
4656 if ((*param)->encode && (*param)->encode->details.type_str) {
4657 …smart_str_appendl(buf, (*param)->encode->details.type_str, strlen((*param)->encode->details.type_s…
4719 smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4764 (type->encode->details.type == IS_ARRAY ||
4765 type->encode->details.type == SOAP_ENC_ARRAY)) {
4807 elementType->encode && elementType->encode->details.type_str) {
4808 smart_str_appends(buf, elementType->encode->details.type_str);
4835 while (enc && enc->details.sdl_type &&
4836 enc != enc->details.sdl_type->encode &&
4837 enc->details.sdl_type->kind != XSD_TYPEKIND_SIMPLE &&
4838 enc->details.sdl_type->kind != XSD_TYPEKIND_LIST &&
4839 enc->details.sdl_type->kind != XSD_TYPEKIND_UNION) {
4840 enc = enc->details.sdl_type->encode;
4845 … smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4859 if ((*attr)->encode && (*attr)->encode->details.type_str) {
4860 smart_str_appends(buf, (*attr)->encode->details.type_str);