Lines Matching refs:attr

3447 	xmlAttrPtr attr;  local
3458 attr = env->properties;
3459 while (attr != NULL) {
3460 if (attr->ns == NULL) {
3462 } else if (attr_is_equal_ex(attr,"encodingStyle",SOAP_1_2_ENV_NAMESPACE)) {
3465 } else if (strcmp((char*)attr->children->content,SOAP_1_1_ENC_NAMESPACE) != 0) {
3469 attr = attr->next;
3498 attr = body->properties;
3499 while (attr != NULL) {
3500 if (attr->ns == NULL) {
3504 } else if (attr_is_equal_ex(attr,"encodingStyle",SOAP_1_2_ENV_NAMESPACE)) {
3507 } else if (strcmp((char*)attr->children->content,SOAP_1_1_ENC_NAMESPACE) != 0) {
3511 attr = attr->next;
3541 attr = get_attribute_ex(func->properties,"encodingStyle",SOAP_1_1_ENV_NAMESPACE);
3542 if (attr && strcmp((char*)attr->children->content,SOAP_1_1_ENC_NAMESPACE) != 0) {
3546 attr = get_attribute_ex(func->properties,"encodingStyle",SOAP_1_2_ENV_NAMESPACE);
3547 if (attr && strcmp((char*)attr->children->content,SOAP_1_2_ENC_NAMESPACE) != 0) {
3565 attr = head->properties;
3566 while (attr != NULL) {
3567 if (attr->ns == NULL) {
3569 } else if (attr_is_equal_ex(attr,"encodingStyle",SOAP_1_2_ENV_NAMESPACE)) {
3572 } else if (strcmp((char*)attr->children->content,SOAP_1_1_ENC_NAMESPACE) != 0) {
3576 attr = attr->next;
3585 attr = get_attribute_ex(hdr_func->properties,"encodingStyle",SOAP_1_1_ENV_NAMESPACE);
3586 if (attr && strcmp((char*)attr->children->content,SOAP_1_1_ENC_NAMESPACE) != 0) {
3589 attr = get_attribute_ex(hdr_func->properties,"actor",envelope_ns);
3590 if (attr != NULL) {
3591 if (strcmp((char*)attr->children->content,SOAP_1_1_ACTOR_NEXT) != 0 &&
3592 (actor == NULL || strcmp((char*)attr->children->content,actor) != 0)) {
3597 attr = get_attribute_ex(hdr_func->properties,"encodingStyle",SOAP_1_2_ENV_NAMESPACE);
3598 if (attr && strcmp((char*)attr->children->content,SOAP_1_2_ENC_NAMESPACE) != 0) {
3601 attr = get_attribute_ex(hdr_func->properties,"role",envelope_ns);
3602 if (attr != NULL) {
3603 if (strcmp((char*)attr->children->content,SOAP_1_2_ACTOR_UNLIMATERECEIVER) != 0 &&
3604 strcmp((char*)attr->children->content,SOAP_1_2_ACTOR_NEXT) != 0 &&
3605 (actor == NULL || strcmp((char*)attr->children->content,actor) != 0)) {
3610 attr = get_attribute_ex(hdr_func->properties,"mustUnderstand",envelope_ns);
3611 if (attr) {
3612 if (strcmp((char*)attr->children->content,"1") == 0 ||
3613 strcmp((char*)attr->children->content,"true") == 0) {
3615 } else if (strcmp((char*)attr->children->content,"0") == 0 ||
3616 strcmp((char*)attr->children->content,"false") == 0) {
4732 sdlAttributePtr attr; local
4736 (attr = zend_hash_str_find_ptr(type->attributes, SOAP_1_1_ENC_NAMESPACE":arrayType",
4738 attr->extraAttributes &&
4739 …(ext = zend_hash_str_find_ptr(attr->extraAttributes, WSDL_NAMESPACE":arrayType", sizeof(WSDL_NAMES…
4760 (attr = zend_hash_str_find_ptr(type->attributes, SOAP_1_2_ENC_NAMESPACE":itemType",
4762 attr->extraAttributes &&
4763 …(ext = zend_hash_str_find_ptr(attr->extraAttributes, WSDL_NAMESPACE":itemType", sizeof(WSDL_NAMESP…
4778 (attr = zend_hash_str_find_ptr(type->attributes, SOAP_1_2_ENC_NAMESPACE":arraySize",
4780 attr->extraAttributes &&
4781 …(ext = zend_hash_str_find_ptr(attr->extraAttributes, WSDL_NAMESPACE":itemType", sizeof(WSDL_NAMESP…
4817 sdlAttributePtr attr; local
4819 ZEND_HASH_FOREACH_PTR(type->attributes, attr) {
4824 if (attr->encode && attr->encode->details.type_str) {
4825 smart_str_appends(buf, attr->encode->details.type_str);
4830 smart_str_appends(buf, attr->name);