restrictions 657 ext/soap/php_schema.c if (cur_type->restrictions == NULL) { restrictions 658 ext/soap/php_schema.c cur_type->restrictions = emalloc(sizeof(sdlRestrictions)); restrictions 659 ext/soap/php_schema.c memset(cur_type->restrictions, 0, sizeof(sdlRestrictions)); restrictions 673 ext/soap/php_schema.c schema_restriction_var_int(trav, &cur_type->restrictions->minExclusive); restrictions 675 ext/soap/php_schema.c schema_restriction_var_int(trav, &cur_type->restrictions->minInclusive); restrictions 677 ext/soap/php_schema.c schema_restriction_var_int(trav, &cur_type->restrictions->maxExclusive); restrictions 679 ext/soap/php_schema.c schema_restriction_var_int(trav, &cur_type->restrictions->maxInclusive); restrictions 681 ext/soap/php_schema.c schema_restriction_var_int(trav, &cur_type->restrictions->totalDigits); restrictions 683 ext/soap/php_schema.c schema_restriction_var_int(trav, &cur_type->restrictions->fractionDigits); restrictions 685 ext/soap/php_schema.c schema_restriction_var_int(trav, &cur_type->restrictions->length); restrictions 687 ext/soap/php_schema.c schema_restriction_var_int(trav, &cur_type->restrictions->minLength); restrictions 689 ext/soap/php_schema.c schema_restriction_var_int(trav, &cur_type->restrictions->maxLength); restrictions 691 ext/soap/php_schema.c schema_restriction_var_char(trav, &cur_type->restrictions->whiteSpace); restrictions 693 ext/soap/php_schema.c schema_restriction_var_char(trav, &cur_type->restrictions->pattern); restrictions 698 ext/soap/php_schema.c if (cur_type->restrictions->enumeration == NULL) { restrictions 699 ext/soap/php_schema.c cur_type->restrictions->enumeration = emalloc(sizeof(HashTable)); restrictions 700 ext/soap/php_schema.c zend_hash_init(cur_type->restrictions->enumeration, 0, NULL, delete_restriction_var_char, 0); restrictions 702 ext/soap/php_schema.c if (zend_hash_add(cur_type->restrictions->enumeration, enumval->value, strlen(enumval->value)+1, &enumval, sizeof(sdlRestrictionCharPtr), NULL) == FAILURE) { restrictions 2411 ext/soap/php_schema.c if (type->restrictions) { restrictions 2412 ext/soap/php_schema.c delete_restriction_var_int(&type->restrictions->minExclusive); restrictions 2413 ext/soap/php_schema.c delete_restriction_var_int(&type->restrictions->minInclusive); restrictions 2414 ext/soap/php_schema.c delete_restriction_var_int(&type->restrictions->maxExclusive); restrictions 2415 ext/soap/php_schema.c delete_restriction_var_int(&type->restrictions->maxInclusive); restrictions 2416 ext/soap/php_schema.c delete_restriction_var_int(&type->restrictions->totalDigits); restrictions 2417 ext/soap/php_schema.c delete_restriction_var_int(&type->restrictions->fractionDigits); restrictions 2418 ext/soap/php_schema.c delete_restriction_var_int(&type->restrictions->length); restrictions 2419 ext/soap/php_schema.c delete_restriction_var_int(&type->restrictions->minLength); restrictions 2420 ext/soap/php_schema.c delete_restriction_var_int(&type->restrictions->maxLength); restrictions 2421 ext/soap/php_schema.c delete_restriction_var_char(&type->restrictions->whiteSpace); restrictions 2422 ext/soap/php_schema.c delete_restriction_var_char(&type->restrictions->pattern); restrictions 2423 ext/soap/php_schema.c if (type->restrictions->enumeration) { restrictions 2424 ext/soap/php_schema.c zend_hash_destroy(type->restrictions->enumeration); restrictions 2425 ext/soap/php_schema.c efree(type->restrictions->enumeration); restrictions 2427 ext/soap/php_schema.c efree(type->restrictions); restrictions 2458 ext/soap/php_schema.c if (type->restrictions) { restrictions 2459 ext/soap/php_schema.c delete_restriction_var_int_persistent(&type->restrictions->minExclusive); restrictions 2460 ext/soap/php_schema.c delete_restriction_var_int_persistent(&type->restrictions->minInclusive); restrictions 2461 ext/soap/php_schema.c delete_restriction_var_int_persistent(&type->restrictions->maxExclusive); restrictions 2462 ext/soap/php_schema.c delete_restriction_var_int_persistent(&type->restrictions->maxInclusive); restrictions 2463 ext/soap/php_schema.c delete_restriction_var_int_persistent(&type->restrictions->totalDigits); restrictions 2464 ext/soap/php_schema.c delete_restriction_var_int_persistent(&type->restrictions->fractionDigits); restrictions 2465 ext/soap/php_schema.c delete_restriction_var_int_persistent(&type->restrictions->length); restrictions 2466 ext/soap/php_schema.c delete_restriction_var_int_persistent(&type->restrictions->minLength); restrictions 2467 ext/soap/php_schema.c delete_restriction_var_int_persistent(&type->restrictions->maxLength); restrictions 2468 ext/soap/php_schema.c delete_restriction_var_char_persistent(&type->restrictions->whiteSpace); restrictions 2469 ext/soap/php_schema.c delete_restriction_var_char_persistent(&type->restrictions->pattern); restrictions 2470 ext/soap/php_schema.c if (type->restrictions->enumeration) { restrictions 2471 ext/soap/php_schema.c zend_hash_destroy(type->restrictions->enumeration); restrictions 2472 ext/soap/php_schema.c free(type->restrictions->enumeration); restrictions 2474 ext/soap/php_schema.c free(type->restrictions); restrictions 1341 ext/soap/php_sdl.c type->restrictions = emalloc(sizeof(sdlRestrictions)); restrictions 1343 ext/soap/php_sdl.c type->restrictions->minExclusive = sdl_deserialize_resriction_int(in); restrictions 1344 ext/soap/php_sdl.c type->restrictions->minInclusive = sdl_deserialize_resriction_int(in); restrictions 1345 ext/soap/php_sdl.c type->restrictions->maxExclusive = sdl_deserialize_resriction_int(in); restrictions 1346 ext/soap/php_sdl.c type->restrictions->maxInclusive = sdl_deserialize_resriction_int(in); restrictions 1347 ext/soap/php_sdl.c type->restrictions->totalDigits = sdl_deserialize_resriction_int(in); restrictions 1348 ext/soap/php_sdl.c type->restrictions->fractionDigits = sdl_deserialize_resriction_int(in); restrictions 1349 ext/soap/php_sdl.c type->restrictions->length = sdl_deserialize_resriction_int(in); restrictions 1350 ext/soap/php_sdl.c type->restrictions->minLength = sdl_deserialize_resriction_int(in); restrictions 1351 ext/soap/php_sdl.c type->restrictions->maxLength = sdl_deserialize_resriction_int(in); restrictions 1352 ext/soap/php_sdl.c type->restrictions->whiteSpace = sdl_deserialize_resriction_char(in); restrictions 1353 ext/soap/php_sdl.c type->restrictions->pattern = sdl_deserialize_resriction_char(in); restrictions 1356 ext/soap/php_sdl.c type->restrictions->enumeration = emalloc(sizeof(HashTable)); restrictions 1357 ext/soap/php_sdl.c zend_hash_init(type->restrictions->enumeration, i, NULL, delete_restriction_var_char, 0); restrictions 1360 ext/soap/php_sdl.c sdl_deserialize_key(type->restrictions->enumeration, x, in); restrictions 1364 ext/soap/php_sdl.c type->restrictions->enumeration = NULL; restrictions 1943 ext/soap/php_sdl.c if (type->restrictions) { restrictions 1945 ext/soap/php_sdl.c sdl_serialize_resriction_int(type->restrictions->minExclusive,out); restrictions 1946 ext/soap/php_sdl.c sdl_serialize_resriction_int(type->restrictions->minInclusive,out); restrictions 1947 ext/soap/php_sdl.c sdl_serialize_resriction_int(type->restrictions->maxExclusive,out); restrictions 1948 ext/soap/php_sdl.c sdl_serialize_resriction_int(type->restrictions->maxInclusive,out); restrictions 1949 ext/soap/php_sdl.c sdl_serialize_resriction_int(type->restrictions->totalDigits,out); restrictions 1950 ext/soap/php_sdl.c sdl_serialize_resriction_int(type->restrictions->fractionDigits,out); restrictions 1951 ext/soap/php_sdl.c sdl_serialize_resriction_int(type->restrictions->length,out); restrictions 1952 ext/soap/php_sdl.c sdl_serialize_resriction_int(type->restrictions->minLength,out); restrictions 1953 ext/soap/php_sdl.c sdl_serialize_resriction_int(type->restrictions->maxLength,out); restrictions 1954 ext/soap/php_sdl.c sdl_serialize_resriction_char(type->restrictions->whiteSpace,out); restrictions 1955 ext/soap/php_sdl.c sdl_serialize_resriction_char(type->restrictions->pattern,out); restrictions 1956 ext/soap/php_sdl.c if (type->restrictions->enumeration) { restrictions 1957 ext/soap/php_sdl.c i = zend_hash_num_elements(type->restrictions->enumeration); restrictions 1965 ext/soap/php_sdl.c zend_hash_internal_pointer_reset(type->restrictions->enumeration); restrictions 1966 ext/soap/php_sdl.c while (zend_hash_get_current_data(type->restrictions->enumeration, (void**)&tmp) == SUCCESS) { restrictions 1968 ext/soap/php_sdl.c sdl_serialize_key(type->restrictions->enumeration, out); restrictions 1969 ext/soap/php_sdl.c zend_hash_move_forward(type->restrictions->enumeration); restrictions 2754 ext/soap/php_sdl.c if (ptype->restrictions) { restrictions 2755 ext/soap/php_sdl.c ptype->restrictions = malloc(sizeof(sdlRestrictions)); restrictions 2756 ext/soap/php_sdl.c memset(ptype->restrictions, 0, sizeof(sdlRestrictions)); restrictions 2757 ext/soap/php_sdl.c *ptype->restrictions = *type->restrictions; restrictions 2759 ext/soap/php_sdl.c if (ptype->restrictions->minExclusive) { restrictions 2760 ext/soap/php_sdl.c make_persistent_restriction_int(&ptype->restrictions->minExclusive); restrictions 2762 ext/soap/php_sdl.c if (ptype->restrictions->maxExclusive) { restrictions 2763 ext/soap/php_sdl.c make_persistent_restriction_int(&ptype->restrictions->maxExclusive); restrictions 2765 ext/soap/php_sdl.c if (ptype->restrictions->minInclusive) { restrictions 2766 ext/soap/php_sdl.c make_persistent_restriction_int(&ptype->restrictions->minInclusive); restrictions 2768 ext/soap/php_sdl.c if (ptype->restrictions->maxInclusive) { restrictions 2769 ext/soap/php_sdl.c make_persistent_restriction_int(&ptype->restrictions->maxInclusive); restrictions 2771 ext/soap/php_sdl.c if (ptype->restrictions->totalDigits) { restrictions 2772 ext/soap/php_sdl.c make_persistent_restriction_int(&ptype->restrictions->totalDigits); restrictions 2774 ext/soap/php_sdl.c if (ptype->restrictions->fractionDigits) { restrictions 2775 ext/soap/php_sdl.c make_persistent_restriction_int(&ptype->restrictions->fractionDigits); restrictions 2777 ext/soap/php_sdl.c if (ptype->restrictions->length) { restrictions 2778 ext/soap/php_sdl.c make_persistent_restriction_int(&ptype->restrictions->length); restrictions 2780 ext/soap/php_sdl.c if (ptype->restrictions->minLength) { restrictions 2781 ext/soap/php_sdl.c make_persistent_restriction_int(&ptype->restrictions->minLength); restrictions 2783 ext/soap/php_sdl.c if (ptype->restrictions->maxLength) { restrictions 2784 ext/soap/php_sdl.c make_persistent_restriction_int(&ptype->restrictions->maxLength); restrictions 2786 ext/soap/php_sdl.c if (ptype->restrictions->whiteSpace) { restrictions 2787 ext/soap/php_sdl.c make_persistent_restriction_char(&ptype->restrictions->whiteSpace); restrictions 2789 ext/soap/php_sdl.c if (ptype->restrictions->pattern) { restrictions 2790 ext/soap/php_sdl.c make_persistent_restriction_char(&ptype->restrictions->pattern); restrictions 2793 ext/soap/php_sdl.c if (type->restrictions->enumeration) { restrictions 2796 ext/soap/php_sdl.c ptype->restrictions->enumeration = malloc(sizeof(HashTable)); restrictions 2797 ext/soap/php_sdl.c zend_hash_init(ptype->restrictions->enumeration, zend_hash_num_elements(type->restrictions->enumeration), NULL, delete_restriction_var_char_persistent, 1); restrictions 2798 ext/soap/php_sdl.c zend_hash_copy(ptype->restrictions->enumeration, type->restrictions->enumeration, make_persistent_restriction_char, (void*)&tmp, sizeof(sdlRestrictionCharPtr)); restrictions 206 ext/soap/php_sdl.h sdlRestrictionsPtr restrictions;