Lines Matching refs:details

54 static ZEND_NORETURN void soap_server_fault(char* code, char* string, char *actor, zval* details, c…
271 if (defaultEncoding[i].details.type_str) { in php_soap_prepare_globals()
272 if (defaultEncoding[i].details.ns != NULL) { in php_soap_prepare_globals()
274 …spprintf(&ns_type, 0, "%s:%s", defaultEncoding[i].details.ns, defaultEncoding[i].details.type_str); in php_soap_prepare_globals()
278 …zend_hash_str_add_ptr(&defEnc, defaultEncoding[i].details.type_str, strlen(defaultEncoding[i].deta… in php_soap_prepare_globals()
282 zend_hash_index_add_ptr(&defEncIndex, defaultEncoding[i].details.type, (void*)enc); in php_soap_prepare_globals()
284 } while (defaultEncoding[i].details.type != END_KNOWN_TYPES); in php_soap_prepare_globals()
602 zval *details = NULL, *headerfault = NULL, *this_ptr; in PHP_METHOD() local
611 Z_PARAM_ZVAL_OR_NULL(details) in PHP_METHOD()
639 set_soap_fault(this_ptr, fault_code_ns, fault_code, fault_string, fault_actor, details, name); in PHP_METHOD()
788 new_enc->details.type = enc->details.type; in soap_create_typemap()
789 new_enc->details.ns = estrdup(enc->details.ns); in soap_create_typemap()
790 new_enc->details.type_str = estrdup(enc->details.type_str); in soap_create_typemap()
791 new_enc->details.sdl_type = enc->details.sdl_type; in soap_create_typemap()
794 new_enc->details.type = enc->details.type; in soap_create_typemap()
796 new_enc->details.ns = estrdup(type_ns); in soap_create_typemap()
798 new_enc->details.type_str = estrdup(type_name); in soap_create_typemap()
802 new_enc->details.map = emalloc(sizeof(soapMapping)); in soap_create_typemap()
803 memset(new_enc->details.map, 0, sizeof(soapMapping)); in soap_create_typemap()
805 ZVAL_COPY(&new_enc->details.map->to_xml, to_xml); in soap_create_typemap()
807 } else if (enc->details.map && Z_TYPE(enc->details.map->to_xml) != IS_UNDEF) { in soap_create_typemap()
808 ZVAL_COPY(&new_enc->details.map->to_xml, &enc->details.map->to_xml); in soap_create_typemap()
811 ZVAL_COPY(&new_enc->details.map->to_zval, to_zval); in soap_create_typemap()
813 } else if (enc->details.map && Z_TYPE(enc->details.map->to_zval) != IS_UNDEF) { in soap_create_typemap()
814 ZVAL_COPY(&new_enc->details.map->to_zval, &enc->details.map->to_zval); in soap_create_typemap()
1707 zval* details = NULL; local
1712 &code, &code_len, &string, &string_len, &actor, &actor_len, &details,
1722 soap_server_fault(code, string, actor, details, name);
1812 static ZEND_NORETURN void soap_server_fault(char* code, char* string, char *actor, zval* details, c… argument
1817 set_soap_fault(&ret, NULL, code, string, actor, details, name);
3647 fault->details &&
3648 zend_hash_num_elements(fault->details) == 1) {
3651 zend_hash_internal_pointer_reset(fault->details);
3652 sparam = zend_hash_get_current_data_ptr(fault->details);
3707 if (fault && fault->details && zend_hash_num_elements(fault->details) == 1) {
3720 zend_hash_internal_pointer_reset(fault->details);
3721 sparam = zend_hash_get_current_data_ptr(fault->details);
4275 if (param->encode && param->encode->details.type_str) {
4276 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4288 if (param->encode && param->encode->details.type_str) {
4289 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4312 if (param->encode && param->encode->details.type_str) {
4313 … smart_str_appendl(buf, param->encode->details.type_str, strlen(param->encode->details.type_str));
4374 smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4416 (type->encode->details.type == IS_ARRAY ||
4417 type->encode->details.type == SOAP_ENC_ARRAY)) {
4456 elementType->encode && elementType->encode->details.type_str) {
4457 smart_str_appends(buf, elementType->encode->details.type_str);
4483 while (enc && enc->details.sdl_type &&
4484 enc != enc->details.sdl_type->encode &&
4485 enc->details.sdl_type->kind != XSD_TYPEKIND_SIMPLE &&
4486 enc->details.sdl_type->kind != XSD_TYPEKIND_LIST &&
4487 enc->details.sdl_type->kind != XSD_TYPEKIND_UNION) {
4488 enc = enc->details.sdl_type->encode;
4495 … smart_str_appendl(buf, type->encode->details.type_str, strlen(type->encode->details.type_str));
4510 if (attr->encode && attr->encode->details.type_str) {
4511 smart_str_appends(buf, attr->encode->details.type_str);