Lines Matching refs:details
53 static ZEND_NORETURN void soap_server_fault(char* code, char* string, char *actor, zval* details, c…
308 if (defaultEncoding[i].details.type_str) { in php_soap_prepare_globals()
309 if (defaultEncoding[i].details.ns != NULL) { in php_soap_prepare_globals()
311 …spprintf(&ns_type, 0, "%s:%s", defaultEncoding[i].details.ns, defaultEncoding[i].details.type_str); in php_soap_prepare_globals()
315 …zend_hash_str_add_ptr(&defEnc, defaultEncoding[i].details.type_str, strlen(defaultEncoding[i].deta… in php_soap_prepare_globals()
319 zend_hash_index_add_ptr(&defEncIndex, defaultEncoding[i].details.type, (void*)enc); in php_soap_prepare_globals()
321 } while (defaultEncoding[i].details.type != END_KNOWN_TYPES); in php_soap_prepare_globals()
547 zval *details = NULL, *headerfault = NULL, *this_ptr; in PHP_METHOD() local
556 Z_PARAM_ZVAL_OR_NULL(details) in PHP_METHOD()
587 set_soap_fault(this_ptr, fault_code_ns, fault_code, fault_string, fault_actor, details, name); in PHP_METHOD()
733 new_enc->details.type = enc->details.type; in soap_create_typemap()
734 new_enc->details.ns = estrdup(enc->details.ns); in soap_create_typemap()
735 new_enc->details.type_str = estrdup(enc->details.type_str); in soap_create_typemap()
736 new_enc->details.sdl_type = enc->details.sdl_type; in soap_create_typemap()
739 new_enc->details.type = enc->details.type; in soap_create_typemap()
741 new_enc->details.ns = estrdup(type_ns); in soap_create_typemap()
743 new_enc->details.type_str = estrdup(type_name); in soap_create_typemap()
747 new_enc->details.map = emalloc(sizeof(soapMapping)); in soap_create_typemap()
748 memset(new_enc->details.map, 0, sizeof(soapMapping)); in soap_create_typemap()
750 ZVAL_COPY(&new_enc->details.map->to_xml, to_xml); in soap_create_typemap()
752 } else if (enc->details.map && Z_TYPE(enc->details.map->to_xml) != IS_UNDEF) { in soap_create_typemap()
753 ZVAL_COPY(&new_enc->details.map->to_xml, &enc->details.map->to_xml); in soap_create_typemap()
756 ZVAL_COPY(&new_enc->details.map->to_zval, to_zval); in soap_create_typemap()
758 } else if (enc->details.map && Z_TYPE(enc->details.map->to_zval) != IS_UNDEF) { in soap_create_typemap()
759 ZVAL_COPY(&new_enc->details.map->to_zval, &enc->details.map->to_zval); in soap_create_typemap()
1614 zval* details = NULL; local
1619 &code, &code_len, &string, &string_len, &actor, &actor_len, &details,
1629 soap_server_fault(code, string, actor, details, name);
1720 static ZEND_NORETURN void soap_server_fault(char* code, char* string, char *actor, zval* details, c… argument
1725 set_soap_fault(&ret, NULL, code, string, actor, details, name);
3486 fault->details &&
3487 zend_hash_num_elements(fault->details) == 1) {
3490 zend_hash_internal_pointer_reset(fault->details);
3491 sparam = zend_hash_get_current_data_ptr(fault->details);
3549 if (fault && fault->details && zend_hash_num_elements(fault->details) == 1) {
3562 zend_hash_internal_pointer_reset(fault->details);
3563 sparam = zend_hash_get_current_data_ptr(fault->details);
4112 if (param->encode && param->encode->details.type_str) {
4113 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4125 if (param->encode && param->encode->details.type_str) {
4126 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4149 if (param->encode && param->encode->details.type_str) {
4150 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4211 smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4253 (type->encode->details.type == IS_ARRAY ||
4254 type->encode->details.type == SOAP_ENC_ARRAY)) {
4293 elementType->encode && elementType->encode->details.type_str) {
4294 smart_str_appends(buf, elementType->encode->details.type_str);
4320 while (enc && enc->details.sdl_type &&
4321 enc != enc->details.sdl_type->encode &&
4322 enc->details.sdl_type->kind != XSD_TYPEKIND_SIMPLE &&
4323 enc->details.sdl_type->kind != XSD_TYPEKIND_LIST &&
4324 enc->details.sdl_type->kind != XSD_TYPEKIND_UNION) {
4325 enc = enc->details.sdl_type->encode;
4332 … smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4347 if (attr->encode && attr->encode->details.type_str) {
4348 smart_str_appends(buf, attr->encode->details.type_str);