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(ZEND_THIS),"service", sizeof("service")-1)) != NULL) { \
150 ss = (soapServicePtr)zend_fetch_resource_ex(tmp, "service", le_service); \
1003 zval *tmp; in soap_create_typemap() local
1007 ZEND_HASH_FOREACH_VAL(ht, tmp) { in soap_create_typemap()
1015 if (Z_TYPE_P(tmp) != IS_ARRAY) { in soap_create_typemap()
1019 ht2 = Z_ARRVAL_P(tmp); in soap_create_typemap()
1021 ZEND_HASH_FOREACH_STR_KEY_VAL(ht2, name, tmp) { in soap_create_typemap()
1025 if (Z_TYPE_P(tmp) == IS_STRING) { in soap_create_typemap()
1026 type_name = Z_STRVAL_P(tmp); in soap_create_typemap()
1027 } else if (Z_TYPE_P(tmp) != IS_NULL) { in soap_create_typemap()
1031 if (Z_TYPE_P(tmp) == IS_STRING) { in soap_create_typemap()
1032 type_ns = Z_STRVAL_P(tmp); in soap_create_typemap()
1033 } else if (Z_TYPE_P(tmp) != IS_NULL) { in soap_create_typemap()
1037 to_xml = tmp; in soap_create_typemap()
1040 to_zval = tmp; in soap_create_typemap()
1134 zval *tmp; in PHP_METHOD() local
1136 if ((tmp = zend_hash_str_find(ht, "soap_version", sizeof("soap_version")-1)) != NULL) { in PHP_METHOD()
1137 if (Z_TYPE_P(tmp) == IS_LONG && in PHP_METHOD()
1138 (Z_LVAL_P(tmp) == SOAP_1_1 || Z_LVAL_P(tmp) == SOAP_1_2)) { in PHP_METHOD()
1139 version = Z_LVAL_P(tmp); in PHP_METHOD()
1145 if ((tmp = zend_hash_str_find(ht, "uri", sizeof("uri")-1)) != NULL && in PHP_METHOD()
1146 Z_TYPE_P(tmp) == IS_STRING) { in PHP_METHOD()
1147 service->uri = estrndup(Z_STRVAL_P(tmp), Z_STRLEN_P(tmp)); in PHP_METHOD()
1152 if ((tmp = zend_hash_str_find(ht, "actor", sizeof("actor")-1)) != NULL && in PHP_METHOD()
1153 Z_TYPE_P(tmp) == IS_STRING) { in PHP_METHOD()
1154 service->actor = estrndup(Z_STRVAL_P(tmp), Z_STRLEN_P(tmp)); in PHP_METHOD()
1157 if ((tmp = zend_hash_str_find(ht, "encoding", sizeof("encoding")-1)) != NULL && in PHP_METHOD()
1158 Z_TYPE_P(tmp) == IS_STRING) { in PHP_METHOD()
1161 encoding = xmlFindCharEncodingHandler(Z_STRVAL_P(tmp)); in PHP_METHOD()
1163 php_error_docref(NULL, E_ERROR, "Invalid 'encoding' option - '%s'", Z_STRVAL_P(tmp)); in PHP_METHOD()
1169 if ((tmp = zend_hash_str_find(ht, "classmap", sizeof("classmap")-1)) != NULL && in PHP_METHOD()
1170 Z_TYPE_P(tmp) == IS_ARRAY) { in PHP_METHOD()
1171 service->class_map = zend_array_dup(Z_ARRVAL_P(tmp)); in PHP_METHOD()
1174 if ((tmp = zend_hash_str_find(ht, "typemap", sizeof("typemap")-1)) != NULL && in PHP_METHOD()
1175 Z_TYPE_P(tmp) == IS_ARRAY && in PHP_METHOD()
1176 zend_hash_num_elements(Z_ARRVAL_P(tmp)) > 0) { in PHP_METHOD()
1177 typemap_ht = Z_ARRVAL_P(tmp); in PHP_METHOD()
1180 if ((tmp = zend_hash_str_find(ht, "features", sizeof("features")-1)) != NULL && in PHP_METHOD()
1181 Z_TYPE_P(tmp) == IS_LONG) { in PHP_METHOD()
1182 service->features = Z_LVAL_P(tmp); in PHP_METHOD()
1185 if ((tmp = zend_hash_str_find(ht, "cache_wsdl", sizeof("cache_wsdl")-1)) != NULL && in PHP_METHOD()
1186 Z_TYPE_P(tmp) == IS_LONG) { in PHP_METHOD()
1187 cache_wsdl = Z_LVAL_P(tmp); in PHP_METHOD()
1190 if ((tmp = zend_hash_str_find(ht, "send_errors", sizeof("send_errors")-1)) != NULL) { in PHP_METHOD()
1191 if (Z_TYPE_P(tmp) == IS_FALSE) { in PHP_METHOD()
1193 } else if (Z_TYPE_P(tmp) == IS_TRUE) { in PHP_METHOD()
1195 } else if (Z_TYPE_P(tmp) == IS_LONG) { in PHP_METHOD()
1196 service->send_errors = Z_LVAL_P(tmp); in PHP_METHOD()
1802 zval *tmp; local
1804 …if ((tmp = zend_hash_str_find(Z_OBJPROP(h->retval), "headerfault", sizeof("headerfault")-1)) != NU…
1805 Z_TYPE_P(tmp) != IS_NULL) {
2118 zval *tmp; local
2121 …if ((tmp = zend_hash_str_find(Z_OBJPROP(SOAP_GLOBAL(error_object)), "_exceptions", sizeof("_except…
2122 Z_TYPE_P(tmp) != IS_FALSE) {
2175 zval *tmp; local
2184 …(tmp = zend_hash_str_find(Z_OBJPROP(SOAP_GLOBAL(error_object)), "service", sizeof("service")-1)) !…
2185 (service = (soapServicePtr)zend_fetch_resource_ex(tmp, "service", le_service)) &&
2301 zval *tmp, tmp2; local
2305 if ((tmp = zend_hash_str_find(ht, "uri", sizeof("uri")-1)) != NULL &&
2306 Z_TYPE_P(tmp) == IS_STRING) {
2307 add_property_str(this_ptr, "uri", zend_string_copy(Z_STR_P(tmp)));
2312 if ((tmp = zend_hash_str_find(ht, "style", sizeof("style")-1)) != NULL &&
2313 Z_TYPE_P(tmp) == IS_LONG &&
2314 (Z_LVAL_P(tmp) == SOAP_RPC || Z_LVAL_P(tmp) == SOAP_DOCUMENT)) {
2315 add_property_long(this_ptr, "style", Z_LVAL_P(tmp));
2318 if ((tmp = zend_hash_str_find(ht, "use", sizeof("use")-1)) != NULL &&
2319 Z_TYPE_P(tmp) == IS_LONG &&
2320 (Z_LVAL_P(tmp) == SOAP_LITERAL || Z_LVAL_P(tmp) == SOAP_ENCODED)) {
2321 add_property_long(this_ptr, "use", Z_LVAL_P(tmp));
2325 if ((tmp = zend_hash_str_find(ht, "stream_context", sizeof("stream_context")-1)) != NULL &&
2326 Z_TYPE_P(tmp) == IS_RESOURCE) {
2327 context = php_stream_context_from_zval(tmp, 1);
2328 Z_ADDREF_P(tmp);
2333 if ((tmp = zend_hash_str_find(ht, "location", sizeof("location")-1)) != NULL &&
2334 Z_TYPE_P(tmp) == IS_STRING) {
2335 add_property_str(this_ptr, "location", zend_string_copy(Z_STR_P(tmp)));
2340 if ((tmp = zend_hash_str_find(ht, "soap_version", sizeof("soap_version")-1)) != NULL) {
2341 if (Z_TYPE_P(tmp) == IS_LONG &&
2342 (Z_LVAL_P(tmp) == SOAP_1_1 || Z_LVAL_P(tmp) == SOAP_1_2)) {
2343 soap_version = Z_LVAL_P(tmp);
2346 if ((tmp = zend_hash_str_find(ht, "login", sizeof("login")-1)) != NULL &&
2347 Z_TYPE_P(tmp) == IS_STRING) {
2348 add_property_str(this_ptr, "_login", zend_string_copy(Z_STR_P(tmp)));
2349 if ((tmp = zend_hash_str_find(ht, "password", sizeof("password")-1)) != NULL &&
2350 Z_TYPE_P(tmp) == IS_STRING) {
2351 add_property_str(this_ptr, "_password", zend_string_copy(Z_STR_P(tmp)));
2353 if ((tmp = zend_hash_str_find(ht, "authentication", sizeof("authentication")-1)) != NULL &&
2354 Z_TYPE_P(tmp) == IS_LONG &&
2355 Z_LVAL_P(tmp) == SOAP_AUTHENTICATION_DIGEST) {
2359 if ((tmp = zend_hash_str_find(ht, "proxy_host", sizeof("proxy_host")-1)) != NULL &&
2360 Z_TYPE_P(tmp) == IS_STRING) {
2361 add_property_str(this_ptr, "_proxy_host", zend_string_copy(Z_STR_P(tmp)));
2362 if ((tmp = zend_hash_str_find(ht, "proxy_port", sizeof("proxy_port")-1)) != NULL) {
2363 if (Z_TYPE_P(tmp) != IS_LONG) {
2364 ZVAL_LONG(&tmp2, zval_get_long(tmp));
2365 tmp = &tmp2;
2367 add_property_long(this_ptr, "_proxy_port", Z_LVAL_P(tmp));
2369 if ((tmp = zend_hash_str_find(ht, "proxy_login", sizeof("proxy_login")-1)) != NULL &&
2370 Z_TYPE_P(tmp) == IS_STRING) {
2371 add_property_str(this_ptr, "_proxy_login", zend_string_copy(Z_STR_P(tmp)));
2372 if ((tmp = zend_hash_str_find(ht, "proxy_password", sizeof("proxy_password")-1)) != NULL &&
2373 Z_TYPE_P(tmp) == IS_STRING) {
2374 add_property_str(this_ptr, "_proxy_password", zend_string_copy(Z_STR_P(tmp)));
2378 if ((tmp = zend_hash_str_find(ht, "local_cert", sizeof("local_cert")-1)) != NULL &&
2379 Z_TYPE_P(tmp) == IS_STRING) {
2383 php_stream_context_set_option(context, "ssl", "local_cert", tmp);
2384 if ((tmp = zend_hash_str_find(ht, "passphrase", sizeof("passphrase")-1)) != NULL &&
2385 Z_TYPE_P(tmp) == IS_STRING) {
2386 php_stream_context_set_option(context, "ssl", "passphrase", tmp);
2389 if ((tmp = zend_hash_str_find(ht, "trace", sizeof("trace")-1)) != NULL &&
2390 (Z_TYPE_P(tmp) == IS_TRUE ||
2391 (Z_TYPE_P(tmp) == IS_LONG && Z_LVAL_P(tmp) == 1))) {
2395 if ((tmp = zend_hash_str_find(ht, "exceptions", sizeof("exceptions")-1)) != NULL &&
2396 (Z_TYPE_P(tmp) == IS_FALSE ||
2397 (Z_TYPE_P(tmp) == IS_LONG && Z_LVAL_P(tmp) == 0))) {
2401 if ((tmp = zend_hash_str_find(ht, "compression", sizeof("compression")-1)) != NULL &&
2402 Z_TYPE_P(tmp) == IS_LONG &&
2408 add_property_long(this_ptr, "compression", Z_LVAL_P(tmp));
2410 if ((tmp = zend_hash_str_find(ht, "encoding", sizeof("encoding")-1)) != NULL &&
2411 Z_TYPE_P(tmp) == IS_STRING) {
2414 encoding = xmlFindCharEncodingHandler(Z_STRVAL_P(tmp));
2416 php_error_docref(NULL, E_ERROR, "Invalid 'encoding' option - '%s'", Z_STRVAL_P(tmp));
2419 add_property_str(this_ptr, "_encoding", zend_string_copy(Z_STR_P(tmp)));
2422 if ((tmp = zend_hash_str_find(ht, "classmap", sizeof("classmap")-1)) != NULL &&
2423 Z_TYPE_P(tmp) == IS_ARRAY) {
2424 add_property_zval(this_ptr, "_classmap", tmp);
2427 if ((tmp = zend_hash_str_find(ht, "typemap", sizeof("typemap")-1)) != NULL &&
2428 Z_TYPE_P(tmp) == IS_ARRAY &&
2429 zend_hash_num_elements(Z_ARRVAL_P(tmp)) > 0) {
2430 typemap_ht = Z_ARRVAL_P(tmp);
2433 if ((tmp = zend_hash_str_find(ht, "features", sizeof("features")-1)) != NULL &&
2434 Z_TYPE_P(tmp) == IS_LONG) {
2435 add_property_long(this_ptr, "_features", Z_LVAL_P(tmp));
2438 …if ((tmp = zend_hash_str_find(ht, "connection_timeout", sizeof("connection_timeout")-1)) != NULL) {
2439 if (Z_TYPE_P(tmp) != IS_LONG) {
2440 ZVAL_LONG(&tmp2, zval_get_long(tmp));
2441 tmp = &tmp2;
2443 if (Z_LVAL_P(tmp) > 0) {
2444 add_property_long(this_ptr, "_connection_timeout", Z_LVAL_P(tmp));
2452 if ((tmp = zend_hash_str_find(ht, "cache_wsdl", sizeof("cache_wsdl")-1)) != NULL &&
2453 Z_TYPE_P(tmp) == IS_LONG) {
2454 cache_wsdl = Z_LVAL_P(tmp);
2457 if ((tmp = zend_hash_str_find(ht, "user_agent", sizeof("user_agent")-1)) != NULL &&
2458 Z_TYPE_P(tmp) == IS_STRING) {
2459 add_property_str(this_ptr, "_user_agent", zend_string_copy(Z_STR_P(tmp)));
2462 if ((tmp = zend_hash_str_find(ht, "keep_alive", sizeof("keep_alive")-1)) != NULL &&
2463 (Z_TYPE_P(tmp) == IS_FALSE ||
2464 (Z_TYPE_P(tmp) == IS_LONG && Z_LVAL_P(tmp) == 0))) {
2468 if ((tmp = zend_hash_str_find(ht, "ssl_method", sizeof("ssl_method")-1)) != NULL &&
2469 Z_TYPE_P(tmp) == IS_LONG) {
2470 add_property_long(this_ptr, "_ssl_method", Z_LVAL_P(tmp));
2601 zval *tmp; local
2624 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_soap_version", sizeof("_soap_version")-1)) …
2625 Z_TYPE_P(tmp) == IS_LONG && Z_LVAL_P(tmp) == SOAP_1_2) {
2632 if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "location", sizeof("location")-1)) != NULL &&
2633 Z_TYPE_P(tmp) == IS_STRING) {
2634 location = Z_STRVAL_P(tmp);
2638 if (FIND_SDL_PROPERTY(this_ptr,tmp) != NULL) {
2639 FETCH_SDL_RES(sdl,tmp);
2641 if (FIND_TYPEMAP_PROPERTY(this_ptr,tmp) != NULL) {
2642 FETCH_TYPEMAP_RES(typemap,tmp);
2651 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_encoding", sizeof("_encoding")-1)) != NULL …
2652 Z_TYPE_P(tmp) == IS_STRING) {
2653 SOAP_GLOBAL(encoding) = xmlFindCharEncodingHandler(Z_STRVAL_P(tmp));
2658 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_classmap", sizeof("_classmap")-1)) != NULL …
2659 Z_TYPE_P(tmp) == IS_ARRAY) {
2660 SOAP_GLOBAL(class_map) = Z_ARRVAL_P(tmp);
2667 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_features", sizeof("_features")-1)) != NULL …
2668 Z_TYPE_P(tmp) == IS_LONG) {
2669 SOAP_GLOBAL(features) = Z_LVAL_P(tmp);
2775 …((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_exceptions", sizeof("_exceptions")-1)) == NULL…
2776 Z_TYPE_P(tmp) != IS_FALSE)) {
2807 zval *tmp; local
2809 ZEND_HASH_FOREACH_VAL(ht, tmp) {
2810 if (Z_TYPE_P(tmp) != IS_OBJECT ||
2811 !instanceof_function(Z_OBJCE_P(tmp), soap_header_class_entry)) {
2833 zval *tmp; local
2844 if ((tmp = zend_hash_str_find(hto, "location", sizeof("location")-1)) != NULL &&
2845 Z_TYPE_P(tmp) == IS_STRING) {
2846 location = Z_STRVAL_P(tmp);
2849 if ((tmp = zend_hash_str_find(hto, "soapaction", sizeof("soapaction")-1)) != NULL &&
2850 Z_TYPE_P(tmp) == IS_STRING) {
2851 soap_action = Z_STRVAL_P(tmp);
2854 if ((tmp = zend_hash_str_find(hto, "uri", sizeof("uri")-1)) != NULL &&
2855 Z_TYPE_P(tmp) == IS_STRING) {
2856 uri = Z_STRVAL_P(tmp);
2878 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "__default_headers", sizeof("__default_header…
2879 HashTable *default_headers = Z_ARRVAL_P(tmp);
2885 ZEND_HASH_FOREACH_VAL(default_headers, tmp) {
2886 if(Z_TYPE_P(tmp) == IS_OBJECT) {
2887 Z_ADDREF_P(tmp);
2888 zend_hash_next_index_insert(soap_headers, tmp);
2892 soap_headers = Z_ARRVAL_P(tmp);
2989 zval *tmp; local
2995 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(ZEND_THIS), "__last_request", sizeof("__last_request")-1…
2996 Z_TYPE_P(tmp) == IS_STRING) {
2997 RETURN_STR_COPY(Z_STR_P(tmp));
3008 zval *tmp; local
3014 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(ZEND_THIS), "__last_response", sizeof("__last_response")…
3015 Z_TYPE_P(tmp) == IS_STRING) {
3016 RETURN_STR_COPY(Z_STR_P(tmp));
3027 zval *tmp; local
3033 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(ZEND_THIS), "__last_request_headers", sizeof("__last_req…
3034 Z_TYPE_P(tmp) == IS_STRING) {
3035 RETURN_STR_COPY(Z_STR_P(tmp));
3046 zval *tmp; local
3052 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(ZEND_THIS), "__last_response_headers", sizeof("__last_re…
3053 Z_TYPE_P(tmp) == IS_STRING) {
3054 RETURN_STR_COPY(Z_STR_P(tmp));
3197 zval *tmp; local
3204 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "location", sizeof("location")-1)) != NULL &&…
3205 RETVAL_STR_COPY(Z_STR_P(tmp));
3688 zval *tmp; local
3690 if ((tmp = zend_hash_str_find(ht, "mustUnderstand", sizeof("mustUnderstand")-1)) != NULL &&
3691 Z_TYPE_P(tmp) == IS_TRUE) {
3698 if ((tmp = zend_hash_str_find(ht, "actor", sizeof("actor")-1)) != NULL) {
3699 if (Z_TYPE_P(tmp) == IS_STRING) {
3701 xmlSetProp(h, BAD_CAST(SOAP_1_1_ENV_NS_PREFIX":actor"), BAD_CAST(Z_STRVAL_P(tmp)));
3703 xmlSetProp(h, BAD_CAST(SOAP_1_2_ENV_NS_PREFIX":role"), BAD_CAST(Z_STRVAL_P(tmp)));
3705 } else if (Z_TYPE_P(tmp) == IS_LONG) {
3707 if (Z_LVAL_P(tmp) == SOAP_ACTOR_NEXT) {
3711 if (Z_LVAL_P(tmp) == SOAP_ACTOR_NEXT) {
3713 } else if (Z_LVAL_P(tmp) == SOAP_ACTOR_NONE) {
3715 } else if (Z_LVAL_P(tmp) == SOAP_ACTOR_UNLIMATERECEIVER) {
3859 zval *tmp; local
3866 (tmp = zend_hash_str_find(prop, "headerfault", sizeof("headerfault")-1)) != NULL) {
3869 zval *hdr_ret = tmp;
3880 if ((tmp = zend_hash_str_find(ht, "namespace", sizeof("namespace")-1)) != NULL &&
3881 Z_TYPE_P(tmp) == IS_STRING) {
3882 smart_str_appendl(&key, Z_STRVAL_P(tmp), Z_STRLEN_P(tmp));
3884 hdr_ns = Z_STRVAL_P(tmp);
3886 if ((tmp = zend_hash_str_find(ht, "name", sizeof("name")-1)) != NULL &&
3887 Z_TYPE_P(tmp) == IS_STRING) {
3888 smart_str_appendl(&key, Z_STRVAL_P(tmp), Z_STRLEN_P(tmp));
3889 hdr_name = Z_STRVAL_P(tmp);
3898 if ((tmp = zend_hash_str_find(ht, "data", sizeof("data")-1)) != NULL) {
3899 hdr_ret = tmp;
3924 …if ((tmp = zend_hash_str_find(prop, "faultcodens", sizeof("faultcodens")-1)) != NULL && Z_TYPE_P(t…
3925 fault_ns = Z_STRVAL_P(tmp);
3928 …if ((tmp = zend_hash_str_find(prop, "_name", sizeof("_name")-1)) != NULL && Z_TYPE_P(tmp) == IS_ST…
3931 (tmp_fault = zend_hash_find_ptr(function->faults, Z_STR_P(tmp))) != NULL) {
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) {
3989 xmlNodePtr node = master_to_xml(get_conversion(IS_STRING), tmp, SOAP_LITERAL, param);
3992 if ((tmp = zend_hash_str_find(prop, "faultactor", sizeof("faultactor")-1)) != NULL) {
3993 xmlNodePtr node = master_to_xml(get_conversion(IS_STRING), tmp, SOAP_LITERAL, param);
3998 if ((tmp = zend_hash_str_find(prop, "faultcode", sizeof("faultcode")-1)) != NULL &&
3999 Z_TYPE_P(tmp) == IS_STRING) {
4001 …zend_string *str = php_escape_html_entities((unsigned char*)Z_STRVAL_P(tmp), Z_STRLEN_P(tmp), 0, 0…
4013 if ((tmp = zend_hash_str_find(prop, "faultstring", sizeof("faultstring")-1)) != NULL) {
4015 node = master_to_xml(get_conversion(IS_STRING), tmp, SOAP_LITERAL, node);
4027 if ((tmp = zend_hash_str_find(prop, "detail", sizeof("detail")-1)) != NULL &&
4028 Z_TYPE_P(tmp) != IS_NULL) {
4029 detail = tmp;
4041 …(tmp = zend_hash_str_find(Z_OBJPROP_P(detail), sparam->element->name, strlen(sparam->element->name…
4042 detail = tmp;
4071 } else if ((tmp = zend_hash_str_find(prop, "detail", sizeof("detail")-1)) != NULL &&
4072 Z_TYPE_P(tmp) != IS_NULL) {
4073 serialize_zval(tmp, NULL, detail_name, use, param);
4094 zval *tmp; local
4099 if ((tmp = zend_hash_str_find(ht, "namespace", sizeof("namespace")-1)) != NULL &&
4100 Z_TYPE_P(tmp) == IS_STRING) {
4101 smart_str_appendl(&key, Z_STRVAL_P(tmp), Z_STRLEN_P(tmp));
4103 hdr_ns = Z_STRVAL_P(tmp);
4105 if ((tmp = zend_hash_str_find(ht, "name", sizeof("name")-1)) != NULL &&
4106 Z_TYPE_P(tmp) == IS_STRING) {
4107 smart_str_appendl(&key, Z_STRVAL_P(tmp), Z_STRLEN_P(tmp));
4108 hdr_name = Z_STRVAL_P(tmp);
4121 if ((tmp = zend_hash_str_find(ht, "data", sizeof("data")-1)) != NULL) {
4122 hdr_ret = tmp;
4325 zval *name, *ns, *tmp; local
4359 if ((tmp = zend_hash_str_find(ht, "data", sizeof("data")-1)) != NULL) {
4360 h = master_to_xml(enc, tmp, hdr_use, head);
4469 sdlParamPtr tmp; local
4487 if ((tmp = zend_hash_str_find_ptr(ht, param_name, strlen(param_name))) != NULL) {
4488 return tmp;
4490 ZEND_HASH_FOREACH_PTR(ht, tmp) {
4491 if (tmp->paramName && strcmp(param_name, tmp->paramName) == 0) {
4492 return tmp;
4497 if ((tmp = zend_hash_index_find_ptr(ht, index)) != NULL) {
4498 return tmp;
4507 sdlFunctionPtr tmp; local
4513 if ((tmp = zend_hash_str_find_ptr(&sdl->functions, str, len)) != NULL) {
4515 return tmp;
4516 …} else if (sdl->requests != NULL && (tmp = zend_hash_str_find_ptr(sdl->requests, str, len)) != NUL…
4518 return tmp;
4529 sdlFunctionPtr tmp; local
4532 ZEND_HASH_FOREACH_PTR(&sdl->functions, tmp) {
4533 if (tmp->binding && tmp->binding->bindingType == BINDING_SOAP) {
4534 sdlSoapBindingFunctionPtr fnb = (sdlSoapBindingFunctionPtr)tmp->bindingAttributes;
4537 if (tmp->requestParameters == NULL ||
4538 zend_hash_num_elements(tmp->requestParameters) == 0) {
4539 return tmp;
4541 } else if (tmp->requestParameters != NULL &&
4542 zend_hash_num_elements(tmp->requestParameters) > 0) {
4546 ZEND_HASH_FOREACH_PTR(tmp->requestParameters, param) {
4568 return tmp;
4659 sdlContentModelPtr tmp; local
4661 ZEND_HASH_FOREACH_PTR(model->u.content, tmp) {
4662 model_to_string(tmp, buf, level);