Lines Matching refs:ht

992 static HashTable* soap_create_typemap(sdlPtr sdl, HashTable *ht TSRMLS_DC)  in soap_create_typemap()
999 zend_hash_internal_pointer_reset_ex(ht, &pos1); in soap_create_typemap()
1000 while (zend_hash_get_current_data_ex(ht, (void**)&tmp, &pos1) == SUCCESS) { in soap_create_typemap()
1103 zend_hash_move_forward_ex(ht, &pos1); in soap_create_typemap()
1137 HashTable *ht = Z_ARRVAL_P(options); in PHP_METHOD() local
1140 if (zend_hash_find(ht, "soap_version", sizeof("soap_version"), (void**)&tmp) == SUCCESS) { in PHP_METHOD()
1149 if (zend_hash_find(ht, "uri", sizeof("uri"), (void**)&tmp) == SUCCESS && in PHP_METHOD()
1156 if (zend_hash_find(ht, "actor", sizeof("actor"), (void**)&tmp) == SUCCESS && in PHP_METHOD()
1161 if (zend_hash_find(ht, "encoding", sizeof("encoding"), (void**)&tmp) == SUCCESS && in PHP_METHOD()
1173 if (zend_hash_find(ht, "classmap", sizeof("classmap"), (void**)&tmp) == SUCCESS && in PHP_METHOD()
1178 …zend_hash_init(service->class_map, zend_hash_num_elements((*tmp)->value.ht), NULL, ZVAL_PTR_DTOR, … in PHP_METHOD()
1179 …zend_hash_copy(service->class_map, (*tmp)->value.ht, (copy_ctor_func_t) zval_add_ref, (void *) &zt… in PHP_METHOD()
1182 if (zend_hash_find(ht, "typemap", sizeof("typemap"), (void**)&tmp) == SUCCESS && in PHP_METHOD()
1188 if (zend_hash_find(ht, "features", sizeof("features"), (void**)&tmp) == SUCCESS && in PHP_METHOD()
1193 if (zend_hash_find(ht, "cache_wsdl", sizeof("cache_wsdl"), (void**)&tmp) == SUCCESS && in PHP_METHOD()
1198 if (zend_hash_find(ht, "send_errors", sizeof("send_errors"), (void**)&tmp) == SUCCESS && in PHP_METHOD()
2081 …zend_hash_find(PG(http_globals)[TRACK_VARS_SERVER]->value.ht, "HTTP_USER_AGENT", sizeof("HTTP_USER…
2352 HashTable *ht = Z_ARRVAL_P(options); local
2357 if (zend_hash_find(ht, "uri", sizeof("uri"), (void**)&tmp) == SUCCESS &&
2364 if (zend_hash_find(ht, "style", sizeof("style"), (void**)&tmp) == SUCCESS &&
2370 if (zend_hash_find(ht, "use", sizeof("use"), (void**)&tmp) == SUCCESS &&
2377 if (zend_hash_find(ht, "stream_context", sizeof("stream_context"), (void**)&tmp) == SUCCESS &&
2383 if (zend_hash_find(ht, "location", sizeof("location"), (void**)&tmp) == SUCCESS &&
2390 if (zend_hash_find(ht, "soap_version", sizeof("soap_version"), (void**)&tmp) == SUCCESS) {
2396 if (zend_hash_find(ht, "login", sizeof("login"), (void**)&tmp) == SUCCESS &&
2399 if (zend_hash_find(ht, "password", sizeof("password"), (void**)&tmp) == SUCCESS &&
2403 if (zend_hash_find(ht, "authentication", sizeof("authentication"), (void**)&tmp) == SUCCESS &&
2409 if (zend_hash_find(ht, "proxy_host", sizeof("proxy_host"), (void**)&tmp) == SUCCESS &&
2412 if (zend_hash_find(ht, "proxy_port", sizeof("proxy_port"), (void**)&tmp) == SUCCESS) {
2416 if (zend_hash_find(ht, "proxy_login", sizeof("proxy_login"), (void**)&tmp) == SUCCESS &&
2419 if (zend_hash_find(ht, "proxy_password", sizeof("proxy_password"), (void**)&tmp) == SUCCESS &&
2425 if (zend_hash_find(ht, "local_cert", sizeof("local_cert"), (void**)&tmp) == SUCCESS &&
2431 if (zend_hash_find(ht, "passphrase", sizeof("passphrase"), (void**)&tmp) == SUCCESS &&
2436 if (zend_hash_find(ht, "trace", sizeof("trace"), (void**)&tmp) == SUCCESS &&
2442 if (zend_hash_find(ht, "exceptions", sizeof("exceptions"), (void**)&tmp) == SUCCESS &&
2448 if (zend_hash_find(ht, "compression", sizeof("compression"), (void**)&tmp) == SUCCESS &&
2457 if (zend_hash_find(ht, "encoding", sizeof("encoding"), (void**)&tmp) == SUCCESS &&
2469 if (zend_hash_find(ht, "classmap", sizeof("classmap"), (void**)&tmp) == SUCCESS &&
2480 if (zend_hash_find(ht, "typemap", sizeof("typemap"), (void**)&tmp) == SUCCESS &&
2486 if (zend_hash_find(ht, "features", sizeof("features"), (void**)&tmp) == SUCCESS &&
2491 …if (zend_hash_find(ht, "connection_timeout", sizeof("connection_timeout"), (void**)&tmp) == SUCCES…
2502 if (zend_hash_find(ht, "cache_wsdl", sizeof("cache_wsdl"), (void**)&tmp) == SUCCESS &&
2507 if (zend_hash_find(ht, "user_agent", sizeof("user_agent"), (void**)&tmp) == SUCCESS &&
2512 if (zend_hash_find(ht, "keep_alive", sizeof("keep_alive"), (void**)&tmp) == SUCCESS &&
2517 if (zend_hash_find(ht, "ssl_method", sizeof("ssl_method"), (void**)&tmp) == SUCCESS &&
2693 SOAP_GLOBAL(class_map) = (*tmp)->value.ht;
2838 static void verify_soap_headers_array(HashTable *ht TSRMLS_DC)
2842 zend_hash_internal_pointer_reset(ht);
2843 while (zend_hash_get_current_data(ht, (void**)&tmp) == SUCCESS) {
2848 zend_hash_move_forward(ht);
3719 static void set_soap_header_attributes(xmlNodePtr h, HashTable *ht, int version) argument
3723 if (zend_hash_find(ht, "mustUnderstand", sizeof("mustUnderstand"), (void**)&tmp) == SUCCESS &&
3731 if (zend_hash_find(ht, "actor", sizeof("actor"), (void**)&tmp) == SUCCESS) {
3910 HashTable* ht = Z_OBJPROP_P(hdr_ret); local
3914 if (zend_hash_find(ht, "namespace", sizeof("namespace"), (void**)&tmp) == SUCCESS &&
3920 if (zend_hash_find(ht, "name", sizeof("name"), (void**)&tmp) == SUCCESS &&
3932 if (zend_hash_find(ht, "data", sizeof("data"), (void**)&tmp) == SUCCESS) {
4128 HashTable *ht = NULL; local
4136 ht = Z_OBJPROP(h->retval);
4137 if (zend_hash_find(ht, "namespace", sizeof("namespace"), (void**)&tmp) == SUCCESS &&
4143 if (zend_hash_find(ht, "name", sizeof("name"), (void**)&tmp) == SUCCESS &&
4159 if (zend_hash_find(ht, "data", sizeof("data"), (void**)&tmp) == SUCCESS) {
4172 if (ht) {
4173 set_soap_header_attributes(xmlHdr, ht, version);
4184 if (ht) {
4185 set_soap_header_attributes(xmlHdr, ht, version);
4356 HashTable *ht; local
4363 ht = Z_OBJPROP_PP(header);
4364 if (zend_hash_find(ht, "name", sizeof("name"), (void**)&name) == SUCCESS &&
4366 zend_hash_find(ht, "namespace", sizeof("namespace"), (void**)&ns) == SUCCESS &&
4391 if (zend_hash_find(ht, "data", sizeof("data"), (void**)&tmp) == SUCCESS) {
4400 set_soap_header_attributes(h, ht, version);
4491 HashTable *ht; local
4498 ht = function->requestParameters;
4500 ht = function->responseParameters;
4503 if (ht == NULL) {
4508 if (zend_hash_find(ht, param_name, strlen(param_name), (void **)&tmp) != FAILURE) {
4513 zend_hash_internal_pointer_reset_ex(ht, &pos);
4514 while (zend_hash_get_current_data_ex(ht, (void **)&tmp, &pos) != FAILURE) {
4518 zend_hash_move_forward_ex(ht, &pos);
4522 if (zend_hash_index_find(ht, index, (void **)&tmp) != FAILURE) {
4932 HashTable *ht = (HashTable*)data; local
4933 zend_hash_destroy(ht);
4934 efree(ht);