Home
last modified time | relevance | path

Searched refs:req (Results 1 – 23 of 23) sorted by relevance

/PHP-7.0/main/
H A Dfastcgi.c903 req->out_pos = req->out_buf; in fcgi_init_request()
1058 req->out_pos = req->out_buf; in fcgi_read_request()
1097 if (req->keep && req->tcp && !req->nodelay) { in fcgi_read_request()
1253 if (safe_read(req, buf, req->in_pad) != req->in_pad) { in fcgi_read()
1394 req->fd = req->listen_socket;
1505req->out_pos += fcgi_make_header(req->out_hdr, (fcgi_request_type)req->out_hdr->type, req->id, len…
1532 req->out_pos = req->out_buf;
1536 req->out_pos = req->out_buf;
1555 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf);
1565 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf);
[all …]
H A Dfastcgi.h93 int fcgi_is_closed(fcgi_request *req);
94 void fcgi_close(fcgi_request *req, int force, int destroy);
99 void fcgi_destroy_request(fcgi_request *req);
101 int fcgi_accept_request(fcgi_request *req);
102 int fcgi_finish_request(fcgi_request *req, int force_close);
105 void fcgi_request_set_keep(fcgi_request *req, int new_value);
112 int fcgi_has_env(fcgi_request *req);
113 char* fcgi_getenv(fcgi_request *req, const char* var, int var_len);
119 int fcgi_read(fcgi_request *req, char *str, int len);
122 int fcgi_flush(fcgi_request *req, int end);
[all …]
/PHP-7.0/ext/recode/
H A Drecode.c150 char *req, *str; in PHP_FUNCTION() local
152 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss", &req, &req_len, &str, &str_len) == FAILURE) { in PHP_FUNCTION()
163 if (!recode_scan_request(request, req)) { in PHP_FUNCTION()
164 php_error_docref(NULL, E_WARNING, "Illegal recode request '%s'", req); in PHP_FUNCTION()
189 char *req; in PHP_FUNCTION() local
195 if (zend_parse_parameters(ZEND_NUM_ARGS(), "srr", &req, &req_len, &input, &output) == FAILURE) { in PHP_FUNCTION()
216 if (!recode_scan_request(request, req)) { in PHP_FUNCTION()
217 php_error_docref(NULL, E_WARNING, "Illegal recode request '%s'", req); in PHP_FUNCTION()
/PHP-7.0/ext/openssl/
H A Dopenssl.c1028 #define PHP_SSL_REQ_INIT(req) memset(req, 0, sizeof(*req)) argument
1029 #define PHP_SSL_REQ_DISPOSE(req) php_openssl_dispose_config(req) argument
1030 #define PHP_SSL_REQ_PARSE(req, zval) php_openssl_parse_config(req, zval) argument
1033 req->config_filename, req->var, req->req_config) == FAILURE) return FAILURE
1076 req->req_config = CONF_load(NULL, req->config_filename, NULL); in php_openssl_parse_config()
1095 CONF_get_string(req->req_config, req->section_name, "default_md")); in php_openssl_parse_config()
1101 CONF_get_number(req->req_config, req->section_name, "default_bits")); in php_openssl_parse_config()
1137 req->digest_name = CONF_get_string(req->req_config, req->section_name, "default_md"); in php_openssl_parse_config()
1140 req->digest = req->md_alg = EVP_get_digestbyname(req->digest_name); in php_openssl_parse_config()
1143 req->md_alg = req->digest = EVP_sha1(); in php_openssl_parse_config()
[all …]
H A DREADME240 openssl req -new -key /tmp/test.key -out /tmp/test.crt -days 365 -x509
/PHP-7.0/ext/xmlrpc/tests/
H A Dbug51288.phpt8 $req = '<?xml version="1.0"?><methodCall></methodCall>';
9 var_dump(xmlrpc_decode_request($req, $method));
H A Dbug47818.phpt23 function call($req) {
24 return xmlrpc_server_call_method($this->s, $req, null);
H A Dbug50761.phpt7 $req = '<?xml version="1.0"?>
30 $res = xmlrpc_server_call_method($server, $req, null);
/PHP-7.0/ext/soap/tests/schema/
H A Dtest_schema.inc65 $req = $x->__getlastrequest();
67 $HTTP_RAW_POST_DATA = $req;
71 echo $req;
74 echo $req;
/PHP-7.0/ext/soap/tests/bugs/
H A Dbug42183.phpt10 $req = <<<EOF
23 $server->handle($req);
H A Dbug44882.phpt11 public function __doRequest($req, $loc, $act, $ver, $one_way = 0)
/PHP-7.0/ext/openssl/tests/
H A Dbug73711.cnf1 [ req ]
H A Dopenssl.cnf8 [ req ]
/PHP-7.0/sapi/fpm/tests/
H A D017.phpt38 $req = run_request('127.0.0.1', $port, $srcfile);
39 echo strstr($req, "Test Start");
H A D022-cve-2016-5385.phpt47 $req = run_request('127.0.0.1', $port, $srcfile, '', $headers);
48 echo strstr($req, "Test Start");
/PHP-7.0/sapi/cli/
H A Dphp_cli_server.c1310 req->vpath = NULL; in php_cli_server_request_ctor()
1311 req->vpath_len = 0; in php_cli_server_request_ctor()
1314 req->path_info = NULL; in php_cli_server_request_ctor()
1315 req->path_info_len = 0; in php_cli_server_request_ctor()
1320 req->content = NULL; in php_cli_server_request_ctor()
1321 req->content_len = 0; in php_cli_server_request_ctor()
1322 req->ext = NULL; in php_cli_server_request_ctor()
1323 req->ext_len = 0; in php_cli_server_request_ctor()
1332 if (req->vpath) { in php_cli_server_request_dtor()
1338 if (req->path_info) { in php_cli_server_request_dtor()
[all …]
/PHP-7.0/ext/phar/tests/files/
H A Dopenssl.cnf1 [ req ]
/PHP-7.0/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc.c747 XMLRPC_REQUEST req = XMLRPC_REQUEST_FromXML(in_buf, len, in_options); in XMLRPC_VALUE_FromXML() local
749 if(req) { in XMLRPC_VALUE_FromXML()
750 xResponse = req->io; in XMLRPC_VALUE_FromXML()
751 XMLRPC_RequestFree(req, 0); in XMLRPC_VALUE_FromXML()
/PHP-7.0/ext/ldap/tests/
H A DREADME80 $ openssl req -newkey rsa:1024 -x509 -nodes -out server.pem -keyout server.pem -days 3650
/PHP-7.0/sapi/fpm/fpm/
H A Dfpm_main.c1418 fcgi_request *req = fcgi_init_request(listen_fd, local
1422 return req;
/PHP-7.0/sapi/phpdbg/
H A Dxml.md21 req section
/PHP-7.0/ext/ldap/
H A Dldap.c2644 int _ldap_rebind_proc(LDAP *ldap, const char *url, ber_tag_t req, ber_int_t msgid, void *params) in _ldap_rebind_proc() argument
/PHP-7.0/ext/fileinfo/tests/
H A Dmagic19801 0 search/1 package\ req
19802 >0 regex \^package[\ \t]+req Tcl script
19805 >0 regex \^package[\ \t]+req Tcl script

Completed in 147 milliseconds