Lines Matching refs:details

55 static void soap_server_fault(char* code, char* string, char *actor, zval* details, char *name);
287 ZEND_ARG_INFO(0, details)
550 if (defaultEncoding[i].details.type_str) { in php_soap_prepare_globals()
551 if (defaultEncoding[i].details.ns != NULL) { in php_soap_prepare_globals()
553 …spprintf(&ns_type, 0, "%s:%s", defaultEncoding[i].details.ns, defaultEncoding[i].details.type_str); in php_soap_prepare_globals()
557 …zend_hash_str_add_ptr(&defEnc, defaultEncoding[i].details.type_str, strlen(defaultEncoding[i].deta… in php_soap_prepare_globals()
561 if (!zend_hash_index_exists(&defEncIndex, defaultEncoding[i].details.type)) { in php_soap_prepare_globals()
562 zend_hash_index_update_ptr(&defEncIndex, defaultEncoding[i].details.type, enc); in php_soap_prepare_globals()
565 } while (defaultEncoding[i].details.type != END_KNOWN_TYPES); in php_soap_prepare_globals()
886 zval *code = NULL, *details = NULL, *headerfault = NULL, *this_ptr; in PHP_METHOD() local
892 &details, &name, &name_len, &headerfault) == FAILURE) { in PHP_METHOD()
928 set_soap_fault(this_ptr, fault_code_ns, fault_code, fault_string, fault_actor, details, name); in PHP_METHOD()
1088 new_enc->details.type = enc->details.type; in soap_create_typemap()
1089 new_enc->details.ns = estrdup(enc->details.ns); in soap_create_typemap()
1090 new_enc->details.type_str = estrdup(enc->details.type_str); in soap_create_typemap()
1091 new_enc->details.sdl_type = enc->details.sdl_type; in soap_create_typemap()
1094 new_enc->details.type = enc->details.type; in soap_create_typemap()
1096 new_enc->details.ns = estrdup(type_ns); in soap_create_typemap()
1098 new_enc->details.type_str = estrdup(type_name); in soap_create_typemap()
1102 new_enc->details.map = emalloc(sizeof(soapMapping)); in soap_create_typemap()
1103 memset(new_enc->details.map, 0, sizeof(soapMapping)); in soap_create_typemap()
1105 ZVAL_COPY(&new_enc->details.map->to_xml, to_xml); in soap_create_typemap()
1107 } else if (enc->details.map && Z_TYPE(enc->details.map->to_xml) != IS_UNDEF) { in soap_create_typemap()
1108 ZVAL_COPY(&new_enc->details.map->to_xml, &enc->details.map->to_xml); in soap_create_typemap()
1111 ZVAL_COPY(&new_enc->details.map->to_zval, to_zval); in soap_create_typemap()
1113 } else if (enc->details.map && Z_TYPE(enc->details.map->to_zval) != IS_UNDEF) { in soap_create_typemap()
1114 ZVAL_COPY(&new_enc->details.map->to_zval, &enc->details.map->to_zval); in soap_create_typemap()
2013 zval* details = NULL; local
2023 &code, &code_len, &string, &string_len, &actor, &actor_len, &details,
2028 soap_server_fault(code, string, actor, details, name);
2116 static void soap_server_fault(char* code, char* string, char *actor, zval* details, char* name) argument
2121 set_soap_fault(&ret, NULL, code, string, actor, details, name);
3965 fault->details &&
3966 zend_hash_num_elements(fault->details) == 1) {
3969 zend_hash_internal_pointer_reset(fault->details);
3970 sparam = zend_hash_get_current_data_ptr(fault->details);
4025 if (fault && fault->details && zend_hash_num_elements(fault->details) == 1) {
4038 zend_hash_internal_pointer_reset(fault->details);
4039 sparam = zend_hash_get_current_data_ptr(fault->details);
4571 if (param->encode && param->encode->details.type_str) {
4572 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4584 if (param->encode && param->encode->details.type_str) {
4585 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4608 if (param->encode && param->encode->details.type_str) {
4609 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4668 smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4710 (type->encode->details.type == IS_ARRAY ||
4711 type->encode->details.type == SOAP_ENC_ARRAY)) {
4750 elementType->encode && elementType->encode->details.type_str) {
4751 smart_str_appends(buf, elementType->encode->details.type_str);
4777 while (enc && enc->details.sdl_type &&
4778 enc != enc->details.sdl_type->encode &&
4779 enc->details.sdl_type->kind != XSD_TYPEKIND_SIMPLE &&
4780 enc->details.sdl_type->kind != XSD_TYPEKIND_LIST &&
4781 enc->details.sdl_type->kind != XSD_TYPEKIND_UNION) {
4782 enc = enc->details.sdl_type->encode;
4789 … smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4804 if (attr->encode && attr->encode->details.type_str) {
4805 smart_str_appends(buf, attr->encode->details.type_str);