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()
546 zval *details = NULL, *headerfault = NULL, *this_ptr; in PHP_METHOD() local
555 Z_PARAM_ZVAL_OR_NULL(details) in PHP_METHOD()
586 set_soap_fault(this_ptr, fault_code_ns, fault_code, fault_string, fault_actor, details, name); in PHP_METHOD()
732 new_enc->details.type = enc->details.type; in soap_create_typemap()
733 new_enc->details.ns = estrdup(enc->details.ns); in soap_create_typemap()
734 new_enc->details.type_str = estrdup(enc->details.type_str); in soap_create_typemap()
735 new_enc->details.sdl_type = enc->details.sdl_type; in soap_create_typemap()
738 new_enc->details.type = enc->details.type; in soap_create_typemap()
740 new_enc->details.ns = estrdup(type_ns); in soap_create_typemap()
742 new_enc->details.type_str = estrdup(type_name); in soap_create_typemap()
746 new_enc->details.map = emalloc(sizeof(soapMapping)); in soap_create_typemap()
747 memset(new_enc->details.map, 0, sizeof(soapMapping)); in soap_create_typemap()
749 ZVAL_COPY(&new_enc->details.map->to_xml, to_xml); in soap_create_typemap()
751 } else if (enc->details.map && Z_TYPE(enc->details.map->to_xml) != IS_UNDEF) { in soap_create_typemap()
752 ZVAL_COPY(&new_enc->details.map->to_xml, &enc->details.map->to_xml); in soap_create_typemap()
755 ZVAL_COPY(&new_enc->details.map->to_zval, to_zval); in soap_create_typemap()
757 } else if (enc->details.map && Z_TYPE(enc->details.map->to_zval) != IS_UNDEF) { in soap_create_typemap()
758 ZVAL_COPY(&new_enc->details.map->to_zval, &enc->details.map->to_zval); in soap_create_typemap()
1610 zval* details = NULL; local
1615 &code, &code_len, &string, &string_len, &actor, &actor_len, &details,
1625 soap_server_fault(code, string, actor, details, name);
1716 static ZEND_NORETURN void soap_server_fault(char* code, char* string, char *actor, zval* details, c… argument
1721 set_soap_fault(&ret, NULL, code, string, actor, details, name);
3479 fault->details &&
3480 zend_hash_num_elements(fault->details) == 1) {
3483 zend_hash_internal_pointer_reset(fault->details);
3484 sparam = zend_hash_get_current_data_ptr(fault->details);
3542 if (fault && fault->details && zend_hash_num_elements(fault->details) == 1) {
3555 zend_hash_internal_pointer_reset(fault->details);
3556 sparam = zend_hash_get_current_data_ptr(fault->details);
4105 if (param->encode && param->encode->details.type_str) {
4106 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4118 if (param->encode && param->encode->details.type_str) {
4119 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4142 if (param->encode && param->encode->details.type_str) {
4143 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4204 smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4246 (type->encode->details.type == IS_ARRAY ||
4247 type->encode->details.type == SOAP_ENC_ARRAY)) {
4286 elementType->encode && elementType->encode->details.type_str) {
4287 smart_str_appends(buf, elementType->encode->details.type_str);
4313 while (enc && enc->details.sdl_type &&
4314 enc != enc->details.sdl_type->encode &&
4315 enc->details.sdl_type->kind != XSD_TYPEKIND_SIMPLE &&
4316 enc->details.sdl_type->kind != XSD_TYPEKIND_LIST &&
4317 enc->details.sdl_type->kind != XSD_TYPEKIND_UNION) {
4318 enc = enc->details.sdl_type->encode;
4325 … smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4340 if (attr->encode && attr->encode->details.type_str) {
4341 smart_str_appends(buf, attr->encode->details.type_str);