Lines Matching refs:details

54 static void soap_server_fault(char* code, char* string, char *actor, zval* details, char *name TSRM…
288 ZEND_ARG_INFO(0, details)
548 if (defaultEncoding[i].details.type_str) { in php_soap_prepare_globals()
549 if (defaultEncoding[i].details.ns != NULL) { in php_soap_prepare_globals()
551 …spprintf(&ns_type, 0, "%s:%s", defaultEncoding[i].details.ns, defaultEncoding[i].details.type_str); in php_soap_prepare_globals()
555 …zend_hash_add(&defEnc, defaultEncoding[i].details.type_str, strlen(defaultEncoding[i].details.type… in php_soap_prepare_globals()
559 if (!zend_hash_index_exists(&defEncIndex, defaultEncoding[i].details.type)) { in php_soap_prepare_globals()
560 …zend_hash_index_update(&defEncIndex, defaultEncoding[i].details.type, &enc, sizeof(encodePtr), NUL… in php_soap_prepare_globals()
563 } while (defaultEncoding[i].details.type != END_KNOWN_TYPES); in php_soap_prepare_globals()
853 zval *code = NULL, *details = NULL, *headerfault = NULL; in PHP_METHOD() local
859 &details, &name, &name_len, &headerfault) == FAILURE) { in PHP_METHOD()
894 …set_soap_fault(this_ptr, fault_code_ns, fault_code, fault_string, fault_actor, details, name TSRML… in PHP_METHOD()
1080 new_enc->details.type = enc->details.type; in soap_create_typemap()
1081 new_enc->details.ns = estrdup(enc->details.ns); in soap_create_typemap()
1082 new_enc->details.type_str = estrdup(enc->details.type_str); in soap_create_typemap()
1083 new_enc->details.sdl_type = enc->details.sdl_type; in soap_create_typemap()
1086 new_enc->details.type = enc->details.type; in soap_create_typemap()
1088 new_enc->details.ns = estrdup(type_ns); in soap_create_typemap()
1090 new_enc->details.type_str = estrdup(type_name); in soap_create_typemap()
1094 new_enc->details.map = emalloc(sizeof(soapMapping)); in soap_create_typemap()
1095 memset(new_enc->details.map, 0, sizeof(soapMapping)); in soap_create_typemap()
1098 new_enc->details.map->to_xml = to_xml; in soap_create_typemap()
1100 } else if (enc->details.map && enc->details.map->to_xml) { in soap_create_typemap()
1101 zval_add_ref(&enc->details.map->to_xml); in soap_create_typemap()
1102 new_enc->details.map->to_xml = enc->details.map->to_xml; in soap_create_typemap()
1106 new_enc->details.map->to_zval = to_zval; in soap_create_typemap()
1108 } else if (enc->details.map && enc->details.map->to_zval) { in soap_create_typemap()
1109 zval_add_ref(&enc->details.map->to_zval); in soap_create_typemap()
1110 new_enc->details.map->to_zval = enc->details.map->to_zval; in soap_create_typemap()
2030 zval* details = NULL; local
2040 &code, &code_len, &string, &string_len, &actor, &actor_len, &details,
2045 soap_server_fault(code, string, actor, details, name TSRMLS_CC);
2133 static void soap_server_fault(char* code, char* string, char *actor, zval* details, char* name TSRM… argument
2139 set_soap_fault(&ret, NULL, code, string, actor, details, name TSRMLS_CC);
4016 fault->details &&
4017 zend_hash_num_elements(fault->details) == 1) {
4020 zend_hash_internal_pointer_reset(fault->details);
4021 zend_hash_get_current_data(fault->details, (void**)&sparam);
4079 if (fault && fault->details && zend_hash_num_elements(fault->details) == 1) {
4092 zend_hash_internal_pointer_reset(fault->details);
4093 zend_hash_get_current_data(fault->details, (void**)&sparam);
4636 if ((*param)->encode && (*param)->encode->details.type_str) {
4637 …smart_str_appendl(buf, (*param)->encode->details.type_str, strlen((*param)->encode->details.type_s…
4650 if ((*param)->encode && (*param)->encode->details.type_str) {
4651 …smart_str_appendl(buf, (*param)->encode->details.type_str, strlen((*param)->encode->details.type_s…
4676 if ((*param)->encode && (*param)->encode->details.type_str) {
4677 …smart_str_appendl(buf, (*param)->encode->details.type_str, strlen((*param)->encode->details.type_s…
4739 smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4784 (type->encode->details.type == IS_ARRAY ||
4785 type->encode->details.type == SOAP_ENC_ARRAY)) {
4827 elementType->encode && elementType->encode->details.type_str) {
4828 smart_str_appends(buf, elementType->encode->details.type_str);
4855 while (enc && enc->details.sdl_type &&
4856 enc != enc->details.sdl_type->encode &&
4857 enc->details.sdl_type->kind != XSD_TYPEKIND_SIMPLE &&
4858 enc->details.sdl_type->kind != XSD_TYPEKIND_LIST &&
4859 enc->details.sdl_type->kind != XSD_TYPEKIND_UNION) {
4860 enc = enc->details.sdl_type->encode;
4865 … smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4879 if ((*attr)->encode && (*attr)->encode->details.type_str) {
4880 smart_str_appends(buf, (*attr)->encode->details.type_str);