Home
last modified time | relevance | path

Searched refs:proxy (Results 1 – 14 of 14) sorted by relevance

/PHP-7.4/ext/com_dotnet/
H A Dcom_saproxy.c55 php_com_saproxy *proxy; member
117 res = php_com_do_invoke(proxy->obj, Z_STRVAL(proxy->indices[0]), in saproxy_read_dimension()
234 if (SUCCESS == php_com_do_invoke(proxy->obj, Z_STRVAL(proxy->indices[0]), in saproxy_write_dimension()
367 SafeArrayGetLBound(V_ARRAY(&proxy->obj->v), proxy->dimensions, &lbound); in saproxy_count_elements()
368 SafeArrayGetUBound(V_ARRAY(&proxy->obj->v), proxy->dimensions, &ubound); in saproxy_count_elements()
402 clone_indices(cloneproxy, proxy, proxy->dimensions); in saproxy_clone()
437 proxy = ecalloc(1, sizeof(*proxy)); in php_com_saproxy_create()
451 proxy->indices = safe_emalloc(proxy->dimensions, sizeof(zval), 0); in php_com_saproxy_create()
457 ZVAL_DUP(&proxy->indices[proxy->dimensions-1], index); in php_com_saproxy_create()
560 I->proxy = proxy; in php_com_saproxy_iter_get()
[all …]
/PHP-7.4/ext/curl/tests/
H A Dcurl_basic_010.phpt2 Test curl_error() & curl_errno() function with problematic proxy
29 …tring(%d) "%r(Couldn't resolve proxy|Could not resolve proxy:|Could not resolve host:|Could not re…
/PHP-7.4/Zend/tests/
H A Dbug50394.phpt16 $proxy = new Proxy;
17 call_user_func_array( array( $proxy, 'bar' ), $args );
18 call_user_func_array( array( $proxy, 'bar' ), array(&$arg) );
/PHP-7.4/ext/openssl/tests/
H A Dbug77390.phpt18 phpt_notify('proxy');
20 phpt_wait('proxy');
31 phpt_notify('proxy');
51 phpt_notify('proxy');
120 'proxy' => $proxyCode,
/PHP-7.4/Zend/tests/closures/
H A Dbug80929.phpt36 $proxy = new SubscriberProxy(
43 $proxy->dispatch(null, 'defaultEvent');
/PHP-7.4/ext/soap/tests/
H A Dbug69137.phpt2 SOAP Bug #69137 - Peer verification fails when using a proxy with SoapClient
7 if (!getenv('http_proxy')) { die("skip test unless an HTTP/HTTPS proxy server is specified in http_…
H A Dbug46760.phpt2 Bug #46760 (SoapClient doRequest fails when proxy is used)
/PHP-7.4/Zend/tests/anon/
H A D004.phpt13 /* create a proxy object implementing array access */
H A D005.phpt31 $proxy = $outer->getArrayAccess();
/PHP-7.4/ext/mysqli/
H A Dmysqli_nonapi.c805 zval proxy, *elem, *dest_elem; local
808 array_init(&proxy);
815 dest_elem = zend_hash_next_index_insert(Z_ARRVAL(proxy), elem);
827 ZVAL_COPY_VALUE(out_array, &proxy);
/PHP-7.4/
H A Drun-tests.php1116 if ($proxy = getenv('http_proxy')) {
1117 $proxy = parse_url($proxy);
1119 $host = $proxy['host'];
1120 if (empty($proxy['port'])) {
1121 $proxy['port'] = 80;
1123 $port = $proxy['port'];
H A Dphp.ini-development686 ; to proxy requests or to process the POST data in a memory efficient fashion.
H A Dphp.ini-production686 ; to proxy requests or to process the POST data in a memory efficient fashion.
/PHP-7.4/ext/soap/
H A Dphp_sdl.c3264 smart_str proxy = {0}; in get_sdl() local
3265 smart_str_appends(&proxy,"tcp://"); in get_sdl()
3266 smart_str_appends(&proxy,Z_STRVAL_P(proxy_host)); in get_sdl()
3267 smart_str_appends(&proxy,":"); in get_sdl()
3268 smart_str_append_long(&proxy,Z_LVAL_P(proxy_port)); in get_sdl()
3269 smart_str_0(&proxy); in get_sdl()
3270 ZVAL_NEW_STR(&str_proxy, proxy.s); in get_sdl()

Completed in 55 milliseconds