Lines Matching refs:details
54 static void soap_server_fault(char* code, char* string, char *actor, zval* details, char *name);
279 ZEND_ARG_INFO(0, details)
542 if (defaultEncoding[i].details.type_str) { in php_soap_prepare_globals()
543 if (defaultEncoding[i].details.ns != NULL) { in php_soap_prepare_globals()
545 …spprintf(&ns_type, 0, "%s:%s", defaultEncoding[i].details.ns, defaultEncoding[i].details.type_str); in php_soap_prepare_globals()
549 …zend_hash_str_add_ptr(&defEnc, defaultEncoding[i].details.type_str, strlen(defaultEncoding[i].deta… in php_soap_prepare_globals()
553 if (!zend_hash_index_exists(&defEncIndex, defaultEncoding[i].details.type)) { in php_soap_prepare_globals()
554 zend_hash_index_update_ptr(&defEncIndex, defaultEncoding[i].details.type, (void*)enc); in php_soap_prepare_globals()
557 } while (defaultEncoding[i].details.type != END_KNOWN_TYPES); in php_soap_prepare_globals()
863 zval *code = NULL, *details = NULL, *headerfault = NULL, *this_ptr; in PHP_METHOD() local
869 &details, &name, &name_len, &headerfault) == FAILURE) { in PHP_METHOD()
901 set_soap_fault(this_ptr, fault_code_ns, fault_code, fault_string, fault_actor, details, name); in PHP_METHOD()
1060 new_enc->details.type = enc->details.type; in soap_create_typemap()
1061 new_enc->details.ns = estrdup(enc->details.ns); in soap_create_typemap()
1062 new_enc->details.type_str = estrdup(enc->details.type_str); in soap_create_typemap()
1063 new_enc->details.sdl_type = enc->details.sdl_type; in soap_create_typemap()
1066 new_enc->details.type = enc->details.type; in soap_create_typemap()
1068 new_enc->details.ns = estrdup(type_ns); in soap_create_typemap()
1070 new_enc->details.type_str = estrdup(type_name); in soap_create_typemap()
1074 new_enc->details.map = emalloc(sizeof(soapMapping)); in soap_create_typemap()
1075 memset(new_enc->details.map, 0, sizeof(soapMapping)); in soap_create_typemap()
1077 ZVAL_COPY(&new_enc->details.map->to_xml, to_xml); in soap_create_typemap()
1079 } else if (enc->details.map && Z_TYPE(enc->details.map->to_xml) != IS_UNDEF) { in soap_create_typemap()
1080 ZVAL_COPY(&new_enc->details.map->to_xml, &enc->details.map->to_xml); in soap_create_typemap()
1083 ZVAL_COPY(&new_enc->details.map->to_zval, to_zval); in soap_create_typemap()
1085 } else if (enc->details.map && Z_TYPE(enc->details.map->to_zval) != IS_UNDEF) { in soap_create_typemap()
1086 ZVAL_COPY(&new_enc->details.map->to_zval, &enc->details.map->to_zval); in soap_create_typemap()
1979 zval* details = NULL; local
1989 &code, &code_len, &string, &string_len, &actor, &actor_len, &details,
1994 soap_server_fault(code, string, actor, details, name);
2084 static void soap_server_fault(char* code, char* string, char *actor, zval* details, char* name) /* … argument
2089 set_soap_fault(&ret, NULL, code, string, actor, details, name);
3936 fault->details &&
3937 zend_hash_num_elements(fault->details) == 1) {
3940 zend_hash_internal_pointer_reset(fault->details);
3941 sparam = zend_hash_get_current_data_ptr(fault->details);
3996 if (fault && fault->details && zend_hash_num_elements(fault->details) == 1) {
4009 zend_hash_internal_pointer_reset(fault->details);
4010 sparam = zend_hash_get_current_data_ptr(fault->details);
4549 if (param->encode && param->encode->details.type_str) {
4550 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4562 if (param->encode && param->encode->details.type_str) {
4563 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4586 if (param->encode && param->encode->details.type_str) {
4587 … 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);