Home
last modified time | relevance | path

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

/PHP-7.3/main/
H A Dfastcgi.c901 req->out_pos = req->out_buf; in fcgi_init_request()
1056 req->out_pos = req->out_buf; in fcgi_read_request()
1098 if (req->keep && req->tcp && !req->nodelay) { in fcgi_read_request()
1254 if (safe_read(req, buf, req->in_pad) != req->in_pad) { in fcgi_read()
1397 req->fd = req->listen_socket;
1506req->out_pos += fcgi_make_header(req->out_hdr, (fcgi_request_type)req->out_hdr->type, req->id, len…
1533 req->out_pos = req->out_buf;
1537 req->out_pos = req->out_buf;
1556 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf);
1566 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf);
[all …]
H A Dfastcgi.h91 int fcgi_is_closed(fcgi_request *req);
92 void fcgi_close(fcgi_request *req, int force, int destroy);
97 void fcgi_destroy_request(fcgi_request *req);
99 int fcgi_accept_request(fcgi_request *req);
100 int fcgi_finish_request(fcgi_request *req, int force_close);
103 void fcgi_request_set_keep(fcgi_request *req, int new_value);
110 int fcgi_has_env(fcgi_request *req);
111 char* fcgi_getenv(fcgi_request *req, const char* var, int var_len);
117 int fcgi_read(fcgi_request *req, char *str, int len);
120 int fcgi_flush(fcgi_request *req, int end);
[all …]
/PHP-7.3/ext/mysqli/tests/
H A Dbug71863.phpt16 $req = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket);
19 mysqli_query($req, "DROP TABLE IF EXISTS test_bug_71863") or die(mysqli_error($req));
20 mysqli_query($req, "CREATE TABLE test_bug_71863 (id INT UNSIGNED NOT NULL DEFAULT 0)") or die(mysql…
23 …i_query($req, "EXPLAIN SELECT `id` FROM `test_bug_71863` WHERE `owner_id` = '2' AND `object_id` = …
/PHP-7.3/ext/recode/
H A Drecode.c147 char *req, *str; in PHP_FUNCTION() local
149 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss", &req, &req_len, &str, &str_len) == FAILURE) { in PHP_FUNCTION()
160 if (!recode_scan_request(request, req)) { in PHP_FUNCTION()
161 php_error_docref(NULL, E_WARNING, "Illegal recode request '%s'", req); in PHP_FUNCTION()
186 char *req; in PHP_FUNCTION() local
192 if (zend_parse_parameters(ZEND_NUM_ARGS(), "srr", &req, &req_len, &input, &output) == FAILURE) { in PHP_FUNCTION()
213 if (!recode_scan_request(request, req)) { in PHP_FUNCTION()
214 php_error_docref(NULL, E_WARNING, "Illegal recode request '%s'", req); in PHP_FUNCTION()
/PHP-7.3/ext/openssl/
H A Dopenssl.c1071 #define PHP_SSL_REQ_INIT(req) memset(req, 0, sizeof(*req)) argument
1072 #define PHP_SSL_REQ_DISPOSE(req) php_openssl_dispose_config(req) argument
1073 #define PHP_SSL_REQ_PARSE(req, zval) php_openssl_parse_config(req, zval) argument
1076 req->config_filename, req->var, req->req_config) == FAILURE) return FAILURE
1127 req->req_config = CONF_load(NULL, req->config_filename, NULL); in php_openssl_parse_config()
1149 CONF_get_string(req->req_config, req->section_name, "default_md")); in php_openssl_parse_config()
1155 CONF_get_number(req->req_config, req->section_name, "default_bits")); in php_openssl_parse_config()
1194 req->digest_name = CONF_get_string(req->req_config, req->section_name, "default_md"); in php_openssl_parse_config()
1197 req->digest = req->md_alg = EVP_get_digestbyname(req->digest_name); in php_openssl_parse_config()
1202 req->md_alg = req->digest = EVP_sha1(); in php_openssl_parse_config()
[all …]
H A DREADME238 openssl req -new -key /tmp/test.key -out /tmp/test.crt -days 365 -x509
/PHP-7.3/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.3/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.3/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.3/ext/openssl/tests/
H A Dbug73711.cnf1 [ req ]
H A Dopenssl.cnf8 [ req ]
/PHP-7.3/sapi/cli/
H A Dphp_cli_server.c1314 req->vpath = NULL; in php_cli_server_request_ctor()
1315 req->vpath_len = 0; in php_cli_server_request_ctor()
1318 req->path_info = NULL; in php_cli_server_request_ctor()
1319 req->path_info_len = 0; in php_cli_server_request_ctor()
1324 req->content = NULL; in php_cli_server_request_ctor()
1325 req->content_len = 0; in php_cli_server_request_ctor()
1326 req->ext = NULL; in php_cli_server_request_ctor()
1327 req->ext_len = 0; in php_cli_server_request_ctor()
1336 if (req->vpath) { in php_cli_server_request_dtor()
1342 if (req->path_info) { in php_cli_server_request_dtor()
[all …]
/PHP-7.3/ext/phar/tests/files/
H A Dopenssl.cnf1 [ req ]
/PHP-7.3/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc.c744 XMLRPC_REQUEST req = XMLRPC_REQUEST_FromXML(in_buf, len, in_options); in XMLRPC_VALUE_FromXML() local
746 if(req) { in XMLRPC_VALUE_FromXML()
747 xResponse = req->io; in XMLRPC_VALUE_FromXML()
748 XMLRPC_RequestFree(req, 0); in XMLRPC_VALUE_FromXML()
/PHP-7.3/ext/ldap/tests/
H A DREADME80 $ openssl req -newkey rsa:1024 -x509 -nodes -out server.pem -keyout server.pem -days 3650
/PHP-7.3/sapi/fpm/fpm/
H A Dfpm_main.c1357 fcgi_request *req = fcgi_init_request(listen_fd, in fpm_init_request() local
1361 return req; in fpm_init_request()
/PHP-7.3/sapi/phpdbg/
H A Dxml.md21 req section
/PHP-7.3/ext/ldap/
H A Dldap.c3786 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.3/ext/fileinfo/tests/
H A Dmagic25306 0 search/1 package\ req
25307 >0 regex \^package[\ \t]+req Tcl script
25310 >0 regex \^package[\ \t]+req Tcl script
H A Dmagic私はガラスを食べられます25306 0 search/1 package\ req
25307 >0 regex \^package[\ \t]+req Tcl script
25310 >0 regex \^package[\ \t]+req Tcl script

Completed in 287 milliseconds