Lines Matching refs:details

54 static ZEND_NORETURN void soap_server_fault(char* code, char* string, char *actor, zval* details, c…
283 if (defaultEncoding[i].details.type_str) { in php_soap_prepare_globals()
284 if (defaultEncoding[i].details.ns != NULL) { in php_soap_prepare_globals()
286 …spprintf(&ns_type, 0, "%s:%s", defaultEncoding[i].details.ns, defaultEncoding[i].details.type_str); in php_soap_prepare_globals()
290 …zend_hash_str_add_ptr(&defEnc, defaultEncoding[i].details.type_str, strlen(defaultEncoding[i].deta… in php_soap_prepare_globals()
294 zend_hash_index_add_ptr(&defEncIndex, defaultEncoding[i].details.type, (void*)enc); in php_soap_prepare_globals()
296 } while (defaultEncoding[i].details.type != END_KNOWN_TYPES); in php_soap_prepare_globals()
599 zval *details = NULL, *headerfault = NULL, *this_ptr; in PHP_METHOD() local
608 Z_PARAM_ZVAL_OR_NULL(details) in PHP_METHOD()
636 set_soap_fault(this_ptr, fault_code_ns, fault_code, fault_string, fault_actor, details, name); in PHP_METHOD()
780 new_enc->details.type = enc->details.type; in soap_create_typemap()
781 new_enc->details.ns = estrdup(enc->details.ns); in soap_create_typemap()
782 new_enc->details.type_str = estrdup(enc->details.type_str); in soap_create_typemap()
783 new_enc->details.sdl_type = enc->details.sdl_type; in soap_create_typemap()
786 new_enc->details.type = enc->details.type; in soap_create_typemap()
788 new_enc->details.ns = estrdup(type_ns); in soap_create_typemap()
790 new_enc->details.type_str = estrdup(type_name); in soap_create_typemap()
794 new_enc->details.map = emalloc(sizeof(soapMapping)); in soap_create_typemap()
795 memset(new_enc->details.map, 0, sizeof(soapMapping)); in soap_create_typemap()
797 ZVAL_COPY(&new_enc->details.map->to_xml, to_xml); in soap_create_typemap()
799 } else if (enc->details.map && Z_TYPE(enc->details.map->to_xml) != IS_UNDEF) { in soap_create_typemap()
800 ZVAL_COPY(&new_enc->details.map->to_xml, &enc->details.map->to_xml); in soap_create_typemap()
803 ZVAL_COPY(&new_enc->details.map->to_zval, to_zval); in soap_create_typemap()
805 } else if (enc->details.map && Z_TYPE(enc->details.map->to_zval) != IS_UNDEF) { in soap_create_typemap()
806 ZVAL_COPY(&new_enc->details.map->to_zval, &enc->details.map->to_zval); in soap_create_typemap()
1657 zval* details = NULL; local
1662 &code, &code_len, &string, &string_len, &actor, &actor_len, &details,
1672 soap_server_fault(code, string, actor, details, name);
1762 static ZEND_NORETURN void soap_server_fault(char* code, char* string, char *actor, zval* details, c… argument
1767 set_soap_fault(&ret, NULL, code, string, actor, details, name);
3525 fault->details &&
3526 zend_hash_num_elements(fault->details) == 1) {
3529 zend_hash_internal_pointer_reset(fault->details);
3530 sparam = zend_hash_get_current_data_ptr(fault->details);
3588 if (fault && fault->details && zend_hash_num_elements(fault->details) == 1) {
3601 zend_hash_internal_pointer_reset(fault->details);
3602 sparam = zend_hash_get_current_data_ptr(fault->details);
4151 if (param->encode && param->encode->details.type_str) {
4152 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4164 if (param->encode && param->encode->details.type_str) {
4165 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4188 if (param->encode && param->encode->details.type_str) {
4189 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4250 smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4292 (type->encode->details.type == IS_ARRAY ||
4293 type->encode->details.type == SOAP_ENC_ARRAY)) {
4332 elementType->encode && elementType->encode->details.type_str) {
4333 smart_str_appends(buf, elementType->encode->details.type_str);
4359 while (enc && enc->details.sdl_type &&
4360 enc != enc->details.sdl_type->encode &&
4361 enc->details.sdl_type->kind != XSD_TYPEKIND_SIMPLE &&
4362 enc->details.sdl_type->kind != XSD_TYPEKIND_LIST &&
4363 enc->details.sdl_type->kind != XSD_TYPEKIND_UNION) {
4364 enc = enc->details.sdl_type->encode;
4371 … smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4386 if (attr->encode && attr->encode->details.type_str) {
4387 smart_str_appends(buf, attr->encode->details.type_str);