Lines Matching refs:details

55 static void soap_server_fault(char* code, char* string, char *actor, zval* details, char *name);
280 ZEND_ARG_INFO(0, details)
543 if (defaultEncoding[i].details.type_str) { in php_soap_prepare_globals()
544 if (defaultEncoding[i].details.ns != NULL) { in php_soap_prepare_globals()
546 …spprintf(&ns_type, 0, "%s:%s", defaultEncoding[i].details.ns, defaultEncoding[i].details.type_str); in php_soap_prepare_globals()
550 …zend_hash_str_add_ptr(&defEnc, defaultEncoding[i].details.type_str, strlen(defaultEncoding[i].deta… in php_soap_prepare_globals()
554 if (!zend_hash_index_exists(&defEncIndex, defaultEncoding[i].details.type)) { in php_soap_prepare_globals()
555 zend_hash_index_update_ptr(&defEncIndex, defaultEncoding[i].details.type, enc); in php_soap_prepare_globals()
558 } while (defaultEncoding[i].details.type != END_KNOWN_TYPES); in php_soap_prepare_globals()
879 zval *code = NULL, *details = NULL, *headerfault = NULL, *this_ptr; in PHP_METHOD() local
885 &details, &name, &name_len, &headerfault) == FAILURE) { in PHP_METHOD()
917 set_soap_fault(this_ptr, fault_code_ns, fault_code, fault_string, fault_actor, details, name); in PHP_METHOD()
1077 new_enc->details.type = enc->details.type; in soap_create_typemap()
1078 new_enc->details.ns = estrdup(enc->details.ns); in soap_create_typemap()
1079 new_enc->details.type_str = estrdup(enc->details.type_str); in soap_create_typemap()
1080 new_enc->details.sdl_type = enc->details.sdl_type; in soap_create_typemap()
1083 new_enc->details.type = enc->details.type; in soap_create_typemap()
1085 new_enc->details.ns = estrdup(type_ns); in soap_create_typemap()
1087 new_enc->details.type_str = estrdup(type_name); in soap_create_typemap()
1091 new_enc->details.map = emalloc(sizeof(soapMapping)); in soap_create_typemap()
1092 memset(new_enc->details.map, 0, sizeof(soapMapping)); in soap_create_typemap()
1094 ZVAL_COPY(&new_enc->details.map->to_xml, to_xml); in soap_create_typemap()
1096 } else if (enc->details.map && Z_TYPE(enc->details.map->to_xml) != IS_UNDEF) { in soap_create_typemap()
1097 ZVAL_COPY(&new_enc->details.map->to_xml, &enc->details.map->to_xml); in soap_create_typemap()
1100 ZVAL_COPY(&new_enc->details.map->to_zval, to_zval); in soap_create_typemap()
1102 } else if (enc->details.map && Z_TYPE(enc->details.map->to_zval) != IS_UNDEF) { in soap_create_typemap()
1103 ZVAL_COPY(&new_enc->details.map->to_zval, &enc->details.map->to_zval); in soap_create_typemap()
2002 zval* details = NULL; local
2012 &code, &code_len, &string, &string_len, &actor, &actor_len, &details,
2017 soap_server_fault(code, string, actor, details, name);
2105 static void soap_server_fault(char* code, char* string, char *actor, zval* details, char* name) argument
2110 set_soap_fault(&ret, NULL, code, string, actor, details, name);
3945 fault->details &&
3946 zend_hash_num_elements(fault->details) == 1) {
3949 zend_hash_internal_pointer_reset(fault->details);
3950 sparam = zend_hash_get_current_data_ptr(fault->details);
4005 if (fault && fault->details && zend_hash_num_elements(fault->details) == 1) {
4018 zend_hash_internal_pointer_reset(fault->details);
4019 sparam = zend_hash_get_current_data_ptr(fault->details);
4551 if (param->encode && param->encode->details.type_str) {
4552 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4564 if (param->encode && param->encode->details.type_str) {
4565 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4588 if (param->encode && param->encode->details.type_str) {
4589 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4648 smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4690 (type->encode->details.type == IS_ARRAY ||
4691 type->encode->details.type == SOAP_ENC_ARRAY)) {
4730 elementType->encode && elementType->encode->details.type_str) {
4731 smart_str_appends(buf, elementType->encode->details.type_str);
4757 while (enc && enc->details.sdl_type &&
4758 enc != enc->details.sdl_type->encode &&
4759 enc->details.sdl_type->kind != XSD_TYPEKIND_SIMPLE &&
4760 enc->details.sdl_type->kind != XSD_TYPEKIND_LIST &&
4761 enc->details.sdl_type->kind != XSD_TYPEKIND_UNION) {
4762 enc = enc->details.sdl_type->encode;
4769 … smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4784 if (attr->encode && attr->encode->details.type_str) {
4785 smart_str_appends(buf, attr->encode->details.type_str);