Lines Matching refs:tmp

114 				zend_vm_stack tmp = EG(vm_stack)->prev; \
116 EG(vm_stack) = tmp; \
117 EG(vm_stack_end) = tmp->end; \
140 #define FIND_SDL_PROPERTY(ss,tmp) (tmp = zend_hash_str_find(Z_OBJPROP_P(ss), "sdl", sizeof("sdl")-1… argument
141 #define FETCH_SDL_RES(ss,tmp) ss = (sdlPtr) zend_fetch_resource_ex(tmp, "sdl", le_sdl) argument
143 #define FIND_TYPEMAP_PROPERTY(ss,tmp) (tmp = zend_hash_str_find(Z_OBJPROP_P(ss), "typemap", sizeof(… argument
144 #define FETCH_TYPEMAP_RES(ss,tmp) ss = (HashTable*) zend_fetch_resource_ex(tmp, "typemap", le_typem… argument
148 zval *tmp; \
149 if ((tmp = zend_hash_str_find(Z_OBJPROP_P(getThis()),"service", sizeof("service")-1)) != NULL) { \
150 ss = (soapServicePtr)zend_fetch_resource_ex(tmp, "service", le_service); \
1005 zval *tmp; in soap_create_typemap() local
1009 ZEND_HASH_FOREACH_VAL(ht, tmp) { in soap_create_typemap()
1017 if (Z_TYPE_P(tmp) != IS_ARRAY) { in soap_create_typemap()
1021 ht2 = Z_ARRVAL_P(tmp); in soap_create_typemap()
1023 ZEND_HASH_FOREACH_STR_KEY_VAL(ht2, name, tmp) { in soap_create_typemap()
1027 if (Z_TYPE_P(tmp) == IS_STRING) { in soap_create_typemap()
1028 type_name = Z_STRVAL_P(tmp); in soap_create_typemap()
1029 } else if (Z_TYPE_P(tmp) != IS_NULL) { in soap_create_typemap()
1033 if (Z_TYPE_P(tmp) == IS_STRING) { in soap_create_typemap()
1034 type_ns = Z_STRVAL_P(tmp); in soap_create_typemap()
1035 } else if (Z_TYPE_P(tmp) != IS_NULL) { in soap_create_typemap()
1039 to_xml = tmp; in soap_create_typemap()
1042 to_zval = tmp; in soap_create_typemap()
1136 zval *tmp; in PHP_METHOD() local
1138 if ((tmp = zend_hash_str_find(ht, "soap_version", sizeof("soap_version")-1)) != NULL) { in PHP_METHOD()
1139 if (Z_TYPE_P(tmp) == IS_LONG && in PHP_METHOD()
1140 (Z_LVAL_P(tmp) == SOAP_1_1 || Z_LVAL_P(tmp) == SOAP_1_2)) { in PHP_METHOD()
1141 version = Z_LVAL_P(tmp); in PHP_METHOD()
1147 if ((tmp = zend_hash_str_find(ht, "uri", sizeof("uri")-1)) != NULL && in PHP_METHOD()
1148 Z_TYPE_P(tmp) == IS_STRING) { in PHP_METHOD()
1149 service->uri = estrndup(Z_STRVAL_P(tmp), Z_STRLEN_P(tmp)); in PHP_METHOD()
1154 if ((tmp = zend_hash_str_find(ht, "actor", sizeof("actor")-1)) != NULL && in PHP_METHOD()
1155 Z_TYPE_P(tmp) == IS_STRING) { in PHP_METHOD()
1156 service->actor = estrndup(Z_STRVAL_P(tmp), Z_STRLEN_P(tmp)); in PHP_METHOD()
1159 if ((tmp = zend_hash_str_find(ht, "encoding", sizeof("encoding")-1)) != NULL && in PHP_METHOD()
1160 Z_TYPE_P(tmp) == IS_STRING) { in PHP_METHOD()
1163 encoding = xmlFindCharEncodingHandler(Z_STRVAL_P(tmp)); in PHP_METHOD()
1165 php_error_docref(NULL, E_ERROR, "Invalid 'encoding' option - '%s'", Z_STRVAL_P(tmp)); in PHP_METHOD()
1171 if ((tmp = zend_hash_str_find(ht, "classmap", sizeof("classmap")-1)) != NULL && in PHP_METHOD()
1172 Z_TYPE_P(tmp) == IS_ARRAY) { in PHP_METHOD()
1173 service->class_map = zend_array_dup(Z_ARRVAL_P(tmp)); in PHP_METHOD()
1176 if ((tmp = zend_hash_str_find(ht, "typemap", sizeof("typemap")-1)) != NULL && in PHP_METHOD()
1177 Z_TYPE_P(tmp) == IS_ARRAY && in PHP_METHOD()
1178 zend_hash_num_elements(Z_ARRVAL_P(tmp)) > 0) { in PHP_METHOD()
1179 typemap_ht = Z_ARRVAL_P(tmp); in PHP_METHOD()
1182 if ((tmp = zend_hash_str_find(ht, "features", sizeof("features")-1)) != NULL && in PHP_METHOD()
1183 Z_TYPE_P(tmp) == IS_LONG) { in PHP_METHOD()
1184 service->features = Z_LVAL_P(tmp); in PHP_METHOD()
1187 if ((tmp = zend_hash_str_find(ht, "cache_wsdl", sizeof("cache_wsdl")-1)) != NULL && in PHP_METHOD()
1188 Z_TYPE_P(tmp) == IS_LONG) { in PHP_METHOD()
1189 cache_wsdl = Z_LVAL_P(tmp); in PHP_METHOD()
1192 if ((tmp = zend_hash_str_find(ht, "send_errors", sizeof("send_errors")-1)) != NULL) { in PHP_METHOD()
1193 if (Z_TYPE_P(tmp) == IS_FALSE) { in PHP_METHOD()
1195 } else if (Z_TYPE_P(tmp) == IS_TRUE) { in PHP_METHOD()
1197 } else if (Z_TYPE_P(tmp) == IS_LONG) { in PHP_METHOD()
1198 service->send_errors = Z_LVAL_P(tmp); in PHP_METHOD()
1797 zval *tmp; local
1799 …if ((tmp = zend_hash_str_find(Z_OBJPROP(h->retval), "headerfault", sizeof("headerfault")-1)) != NU…
1800 Z_TYPE_P(tmp) != IS_NULL) {
2115 zval *tmp; local
2118 …if ((tmp = zend_hash_str_find(Z_OBJPROP(SOAP_GLOBAL(error_object)), "_exceptions", sizeof("_except…
2119 Z_TYPE_P(tmp) != IS_FALSE) {
2172 zval *tmp; local
2181 …(tmp = zend_hash_str_find(Z_OBJPROP(SOAP_GLOBAL(error_object)), "service", sizeof("service")-1)) !…
2182 (service = (soapServicePtr)zend_fetch_resource_ex(tmp, "service", le_service)) &&
2288 zval *tmp, tmp2; local
2292 if ((tmp = zend_hash_str_find(ht, "uri", sizeof("uri")-1)) != NULL &&
2293 Z_TYPE_P(tmp) == IS_STRING) {
2294 add_property_str(this_ptr, "uri", zend_string_copy(Z_STR_P(tmp)));
2299 if ((tmp = zend_hash_str_find(ht, "style", sizeof("style")-1)) != NULL &&
2300 Z_TYPE_P(tmp) == IS_LONG &&
2301 (Z_LVAL_P(tmp) == SOAP_RPC || Z_LVAL_P(tmp) == SOAP_DOCUMENT)) {
2302 add_property_long(this_ptr, "style", Z_LVAL_P(tmp));
2305 if ((tmp = zend_hash_str_find(ht, "use", sizeof("use")-1)) != NULL &&
2306 Z_TYPE_P(tmp) == IS_LONG &&
2307 (Z_LVAL_P(tmp) == SOAP_LITERAL || Z_LVAL_P(tmp) == SOAP_ENCODED)) {
2308 add_property_long(this_ptr, "use", Z_LVAL_P(tmp));
2312 if ((tmp = zend_hash_str_find(ht, "stream_context", sizeof("stream_context")-1)) != NULL &&
2313 Z_TYPE_P(tmp) == IS_RESOURCE) {
2314 context = php_stream_context_from_zval(tmp, 1);
2315 Z_ADDREF_P(tmp);
2320 if ((tmp = zend_hash_str_find(ht, "location", sizeof("location")-1)) != NULL &&
2321 Z_TYPE_P(tmp) == IS_STRING) {
2322 add_property_str(this_ptr, "location", zend_string_copy(Z_STR_P(tmp)));
2327 if ((tmp = zend_hash_str_find(ht, "soap_version", sizeof("soap_version")-1)) != NULL) {
2328 if (Z_TYPE_P(tmp) == IS_LONG &&
2329 (Z_LVAL_P(tmp) == SOAP_1_1 || Z_LVAL_P(tmp) == SOAP_1_2)) {
2330 soap_version = Z_LVAL_P(tmp);
2333 if ((tmp = zend_hash_str_find(ht, "login", sizeof("login")-1)) != NULL &&
2334 Z_TYPE_P(tmp) == IS_STRING) {
2335 add_property_str(this_ptr, "_login", zend_string_copy(Z_STR_P(tmp)));
2336 if ((tmp = zend_hash_str_find(ht, "password", sizeof("password")-1)) != NULL &&
2337 Z_TYPE_P(tmp) == IS_STRING) {
2338 add_property_str(this_ptr, "_password", zend_string_copy(Z_STR_P(tmp)));
2340 if ((tmp = zend_hash_str_find(ht, "authentication", sizeof("authentication")-1)) != NULL &&
2341 Z_TYPE_P(tmp) == IS_LONG &&
2342 Z_LVAL_P(tmp) == SOAP_AUTHENTICATION_DIGEST) {
2346 if ((tmp = zend_hash_str_find(ht, "proxy_host", sizeof("proxy_host")-1)) != NULL &&
2347 Z_TYPE_P(tmp) == IS_STRING) {
2348 add_property_str(this_ptr, "_proxy_host", zend_string_copy(Z_STR_P(tmp)));
2349 if ((tmp = zend_hash_str_find(ht, "proxy_port", sizeof("proxy_port")-1)) != NULL) {
2350 if (Z_TYPE_P(tmp) != IS_LONG) {
2351 ZVAL_LONG(&tmp2, zval_get_long(tmp));
2352 tmp = &tmp2;
2354 add_property_long(this_ptr, "_proxy_port", Z_LVAL_P(tmp));
2356 if ((tmp = zend_hash_str_find(ht, "proxy_login", sizeof("proxy_login")-1)) != NULL &&
2357 Z_TYPE_P(tmp) == IS_STRING) {
2358 add_property_str(this_ptr, "_proxy_login", zend_string_copy(Z_STR_P(tmp)));
2359 if ((tmp = zend_hash_str_find(ht, "proxy_password", sizeof("proxy_password")-1)) != NULL &&
2360 Z_TYPE_P(tmp) == IS_STRING) {
2361 add_property_str(this_ptr, "_proxy_password", zend_string_copy(Z_STR_P(tmp)));
2365 if ((tmp = zend_hash_str_find(ht, "local_cert", sizeof("local_cert")-1)) != NULL &&
2366 Z_TYPE_P(tmp) == IS_STRING) {
2370 php_stream_context_set_option(context, "ssl", "local_cert", tmp);
2371 if ((tmp = zend_hash_str_find(ht, "passphrase", sizeof("passphrase")-1)) != NULL &&
2372 Z_TYPE_P(tmp) == IS_STRING) {
2373 php_stream_context_set_option(context, "ssl", "passphrase", tmp);
2376 if ((tmp = zend_hash_str_find(ht, "trace", sizeof("trace")-1)) != NULL &&
2377 (Z_TYPE_P(tmp) == IS_TRUE ||
2378 (Z_TYPE_P(tmp) == IS_LONG && Z_LVAL_P(tmp) == 1))) {
2382 if ((tmp = zend_hash_str_find(ht, "exceptions", sizeof("exceptions")-1)) != NULL &&
2383 (Z_TYPE_P(tmp) == IS_FALSE ||
2384 (Z_TYPE_P(tmp) == IS_LONG && Z_LVAL_P(tmp) == 0))) {
2388 if ((tmp = zend_hash_str_find(ht, "compression", sizeof("compression")-1)) != NULL &&
2389 Z_TYPE_P(tmp) == IS_LONG &&
2395 add_property_long(this_ptr, "compression", Z_LVAL_P(tmp));
2397 if ((tmp = zend_hash_str_find(ht, "encoding", sizeof("encoding")-1)) != NULL &&
2398 Z_TYPE_P(tmp) == IS_STRING) {
2401 encoding = xmlFindCharEncodingHandler(Z_STRVAL_P(tmp));
2403 php_error_docref(NULL, E_ERROR, "Invalid 'encoding' option - '%s'", Z_STRVAL_P(tmp));
2406 add_property_str(this_ptr, "_encoding", zend_string_copy(Z_STR_P(tmp)));
2409 if ((tmp = zend_hash_str_find(ht, "classmap", sizeof("classmap")-1)) != NULL &&
2410 Z_TYPE_P(tmp) == IS_ARRAY) {
2411 add_property_zval(this_ptr, "_classmap", tmp);
2414 if ((tmp = zend_hash_str_find(ht, "typemap", sizeof("typemap")-1)) != NULL &&
2415 Z_TYPE_P(tmp) == IS_ARRAY &&
2416 zend_hash_num_elements(Z_ARRVAL_P(tmp)) > 0) {
2417 typemap_ht = Z_ARRVAL_P(tmp);
2420 if ((tmp = zend_hash_str_find(ht, "features", sizeof("features")-1)) != NULL &&
2421 Z_TYPE_P(tmp) == IS_LONG) {
2422 add_property_long(this_ptr, "_features", Z_LVAL_P(tmp));
2425 …if ((tmp = zend_hash_str_find(ht, "connection_timeout", sizeof("connection_timeout")-1)) != NULL) {
2426 if (Z_TYPE_P(tmp) != IS_LONG) {
2427 ZVAL_LONG(&tmp2, zval_get_long(tmp));
2428 tmp = &tmp2;
2430 if (Z_LVAL_P(tmp) > 0) {
2431 add_property_long(this_ptr, "_connection_timeout", Z_LVAL_P(tmp));
2439 if ((tmp = zend_hash_str_find(ht, "cache_wsdl", sizeof("cache_wsdl")-1)) != NULL &&
2440 Z_TYPE_P(tmp) == IS_LONG) {
2441 cache_wsdl = Z_LVAL_P(tmp);
2444 if ((tmp = zend_hash_str_find(ht, "user_agent", sizeof("user_agent")-1)) != NULL &&
2445 Z_TYPE_P(tmp) == IS_STRING) {
2446 add_property_str(this_ptr, "_user_agent", zend_string_copy(Z_STR_P(tmp)));
2449 if ((tmp = zend_hash_str_find(ht, "keep_alive", sizeof("keep_alive")-1)) != NULL &&
2450 (Z_TYPE_P(tmp) == IS_FALSE ||
2451 (Z_TYPE_P(tmp) == IS_LONG && Z_LVAL_P(tmp) == 0))) {
2455 if ((tmp = zend_hash_str_find(ht, "ssl_method", sizeof("ssl_method")-1)) != NULL &&
2456 Z_TYPE_P(tmp) == IS_LONG) {
2457 add_property_long(this_ptr, "_ssl_method", Z_LVAL_P(tmp));
2588 zval *tmp; local
2610 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_soap_version", sizeof("_soap_version")-1)) …
2611 Z_TYPE_P(tmp) == IS_LONG && Z_LVAL_P(tmp) == SOAP_1_2) {
2618 if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "location", sizeof("location")-1)) != NULL &&
2619 Z_TYPE_P(tmp) == IS_STRING) {
2620 location = Z_STRVAL_P(tmp);
2624 if (FIND_SDL_PROPERTY(this_ptr,tmp) != NULL) {
2625 FETCH_SDL_RES(sdl,tmp);
2627 if (FIND_TYPEMAP_PROPERTY(this_ptr,tmp) != NULL) {
2628 FETCH_TYPEMAP_RES(typemap,tmp);
2637 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_encoding", sizeof("_encoding")-1)) != NULL …
2638 Z_TYPE_P(tmp) == IS_STRING) {
2639 SOAP_GLOBAL(encoding) = xmlFindCharEncodingHandler(Z_STRVAL_P(tmp));
2644 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_classmap", sizeof("_classmap")-1)) != NULL …
2645 Z_TYPE_P(tmp) == IS_ARRAY) {
2646 SOAP_GLOBAL(class_map) = Z_ARRVAL_P(tmp);
2653 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_features", sizeof("_features")-1)) != NULL …
2654 Z_TYPE_P(tmp) == IS_LONG) {
2655 SOAP_GLOBAL(features) = Z_LVAL_P(tmp);
2761 …((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_exceptions", sizeof("_exceptions")-1)) == NULL…
2762 Z_TYPE_P(tmp) != IS_FALSE)) {
2794 zval *tmp; local
2796 ZEND_HASH_FOREACH_VAL(ht, tmp) {
2797 if (Z_TYPE_P(tmp) != IS_OBJECT ||
2798 !instanceof_function(Z_OBJCE_P(tmp), soap_header_class_entry)) {
2820 zval *tmp; local
2831 if ((tmp = zend_hash_str_find(hto, "location", sizeof("location")-1)) != NULL &&
2832 Z_TYPE_P(tmp) == IS_STRING) {
2833 location = Z_STRVAL_P(tmp);
2836 if ((tmp = zend_hash_str_find(hto, "soapaction", sizeof("soapaction")-1)) != NULL &&
2837 Z_TYPE_P(tmp) == IS_STRING) {
2838 soap_action = Z_STRVAL_P(tmp);
2841 if ((tmp = zend_hash_str_find(hto, "uri", sizeof("uri")-1)) != NULL &&
2842 Z_TYPE_P(tmp) == IS_STRING) {
2843 uri = Z_STRVAL_P(tmp);
2865 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "__default_headers", sizeof("__default_header…
2866 HashTable *default_headers = Z_ARRVAL_P(tmp);
2872 ZEND_HASH_FOREACH_VAL(default_headers, tmp) {
2873 if(Z_TYPE_P(tmp) == IS_OBJECT) {
2874 Z_ADDREF_P(tmp);
2875 zend_hash_next_index_insert(soap_headers, tmp);
2879 soap_headers = Z_ARRVAL_P(tmp);
2972 zval *tmp; local
2978 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(getThis()), "__last_request", sizeof("__last_request")-1…
2979 Z_TYPE_P(tmp) == IS_STRING) {
2980 RETURN_STR_COPY(Z_STR_P(tmp));
2991 zval *tmp; local
2997 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(getThis()), "__last_response", sizeof("__last_response")…
2998 Z_TYPE_P(tmp) == IS_STRING) {
2999 RETURN_STR_COPY(Z_STR_P(tmp));
3010 zval *tmp; local
3016 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(getThis()), "__last_request_headers", sizeof("__last_req…
3017 Z_TYPE_P(tmp) == IS_STRING) {
3018 RETURN_STR_COPY(Z_STR_P(tmp));
3029 zval *tmp; local
3035 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(getThis()), "__last_response_headers", sizeof("__last_re…
3036 Z_TYPE_P(tmp) == IS_STRING) {
3037 RETURN_STR_COPY(Z_STR_P(tmp));
3180 zval *tmp; local
3187 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "location", sizeof("location")-1)) != NULL &&…
3188 RETVAL_STR_COPY(Z_STR_P(tmp));
3665 zval *tmp; local
3667 if ((tmp = zend_hash_str_find(ht, "mustUnderstand", sizeof("mustUnderstand")-1)) != NULL &&
3668 Z_TYPE_P(tmp) == IS_TRUE) {
3675 if ((tmp = zend_hash_str_find(ht, "actor", sizeof("actor")-1)) != NULL) {
3676 if (Z_TYPE_P(tmp) == IS_STRING) {
3678 xmlSetProp(h, BAD_CAST(SOAP_1_1_ENV_NS_PREFIX":actor"), BAD_CAST(Z_STRVAL_P(tmp)));
3680 xmlSetProp(h, BAD_CAST(SOAP_1_2_ENV_NS_PREFIX":role"), BAD_CAST(Z_STRVAL_P(tmp)));
3682 } else if (Z_TYPE_P(tmp) == IS_LONG) {
3684 if (Z_LVAL_P(tmp) == SOAP_ACTOR_NEXT) {
3688 if (Z_LVAL_P(tmp) == SOAP_ACTOR_NEXT) {
3690 } else if (Z_LVAL_P(tmp) == SOAP_ACTOR_NONE) {
3692 } else if (Z_LVAL_P(tmp) == SOAP_ACTOR_UNLIMATERECEIVER) {
3834 zval *tmp; local
3841 (tmp = zend_hash_str_find(prop, "headerfault", sizeof("headerfault")-1)) != NULL) {
3844 zval *hdr_ret = tmp;
3855 if ((tmp = zend_hash_str_find(ht, "namespace", sizeof("namespace")-1)) != NULL &&
3856 Z_TYPE_P(tmp) == IS_STRING) {
3857 smart_str_appendl(&key, Z_STRVAL_P(tmp), Z_STRLEN_P(tmp));
3859 hdr_ns = Z_STRVAL_P(tmp);
3861 if ((tmp = zend_hash_str_find(ht, "name", sizeof("name")-1)) != NULL &&
3862 Z_TYPE_P(tmp) == IS_STRING) {
3863 smart_str_appendl(&key, Z_STRVAL_P(tmp), Z_STRLEN_P(tmp));
3864 hdr_name = Z_STRVAL_P(tmp);
3873 if ((tmp = zend_hash_str_find(ht, "data", sizeof("data")-1)) != NULL) {
3874 hdr_ret = tmp;
3899 …if ((tmp = zend_hash_str_find(prop, "faultcodens", sizeof("faultcodens")-1)) != NULL && Z_TYPE_P(t…
3900 fault_ns = Z_STRVAL_P(tmp);
3903 …if ((tmp = zend_hash_str_find(prop, "_name", sizeof("_name")-1)) != NULL && Z_TYPE_P(tmp) == IS_ST…
3906 (tmp_fault = zend_hash_find_ptr(function->faults, Z_STR_P(tmp))) != NULL) {
3948 if ((tmp = zend_hash_str_find(prop, "faultcode", sizeof("faultcode")-1)) != NULL &&
3949 Z_TYPE_P(tmp) == IS_STRING) {
3951 …zend_string *str = php_escape_html_entities((unsigned char*)Z_STRVAL_P(tmp), Z_STRLEN_P(tmp), 0, 0…
3963 if ((tmp = zend_hash_str_find(prop, "faultstring", sizeof("faultstring")-1)) != NULL) {
3964 xmlNodePtr node = master_to_xml(get_conversion(IS_STRING), tmp, SOAP_LITERAL, param);
3967 if ((tmp = zend_hash_str_find(prop, "faultactor", sizeof("faultactor")-1)) != NULL) {
3968 xmlNodePtr node = master_to_xml(get_conversion(IS_STRING), tmp, SOAP_LITERAL, param);
3973 if ((tmp = zend_hash_str_find(prop, "faultcode", sizeof("faultcode")-1)) != NULL &&
3974 Z_TYPE_P(tmp) == IS_STRING) {
3976 …zend_string *str = php_escape_html_entities((unsigned char*)Z_STRVAL_P(tmp), Z_STRLEN_P(tmp), 0, 0…
3988 if ((tmp = zend_hash_str_find(prop, "faultstring", sizeof("faultstring")-1)) != NULL) {
3990 node = master_to_xml(get_conversion(IS_STRING), tmp, SOAP_LITERAL, node);
4002 if ((tmp = zend_hash_str_find(prop, "detail", sizeof("detail")-1)) != NULL &&
4003 Z_TYPE_P(tmp) != IS_NULL) {
4004 detail = tmp;
4016 …(tmp = zend_hash_str_find(Z_OBJPROP_P(detail), sparam->element->name, strlen(sparam->element->name…
4017 detail = tmp;
4046 } else if ((tmp = zend_hash_str_find(prop, "detail", sizeof("detail")-1)) != NULL &&
4047 Z_TYPE_P(tmp) != IS_NULL) {
4048 serialize_zval(tmp, NULL, detail_name, use, param);
4068 zval *tmp; local
4073 if ((tmp = zend_hash_str_find(ht, "namespace", sizeof("namespace")-1)) != NULL &&
4074 Z_TYPE_P(tmp) == IS_STRING) {
4075 smart_str_appendl(&key, Z_STRVAL_P(tmp), Z_STRLEN_P(tmp));
4077 hdr_ns = Z_STRVAL_P(tmp);
4079 if ((tmp = zend_hash_str_find(ht, "name", sizeof("name")-1)) != NULL &&
4080 Z_TYPE_P(tmp) == IS_STRING) {
4081 smart_str_appendl(&key, Z_STRVAL_P(tmp), Z_STRLEN_P(tmp));
4082 hdr_name = Z_STRVAL_P(tmp);
4095 if ((tmp = zend_hash_str_find(ht, "data", sizeof("data")-1)) != NULL) {
4096 hdr_ret = tmp;
4291 zval *name, *ns, *tmp; local
4325 if ((tmp = zend_hash_str_find(ht, "data", sizeof("data")-1)) != NULL) {
4326 h = master_to_xml(enc, tmp, hdr_use, head);
4429 sdlParamPtr tmp; local
4447 if ((tmp = zend_hash_str_find_ptr(ht, param_name, strlen(param_name))) != NULL) {
4448 return tmp;
4450 ZEND_HASH_FOREACH_PTR(ht, tmp) {
4451 if (tmp->paramName && strcmp(param_name, tmp->paramName) == 0) {
4452 return tmp;
4457 if ((tmp = zend_hash_index_find_ptr(ht, index)) != NULL) {
4458 return tmp;
4467 sdlFunctionPtr tmp; local
4473 if ((tmp = zend_hash_str_find_ptr(&sdl->functions, str, len)) != NULL) {
4475 return tmp;
4476 …} else if (sdl->requests != NULL && (tmp = zend_hash_str_find_ptr(sdl->requests, str, len)) != NUL…
4478 return tmp;
4489 sdlFunctionPtr tmp; local
4492 ZEND_HASH_FOREACH_PTR(&sdl->functions, tmp) {
4493 if (tmp->binding && tmp->binding->bindingType == BINDING_SOAP) {
4494 sdlSoapBindingFunctionPtr fnb = (sdlSoapBindingFunctionPtr)tmp->bindingAttributes;
4497 if (tmp->requestParameters == NULL ||
4498 zend_hash_num_elements(tmp->requestParameters) == 0) {
4499 return tmp;
4501 } else if (tmp->requestParameters != NULL &&
4502 zend_hash_num_elements(tmp->requestParameters) > 0) {
4506 ZEND_HASH_FOREACH_PTR(tmp->requestParameters, param) {
4528 return tmp;
4619 sdlContentModelPtr tmp; local
4621 ZEND_HASH_FOREACH_PTR(model->u.content, tmp) {
4622 model_to_string(tmp, buf, level);