Home
last modified time | relevance | path

Searched refs:post_data (Results 1 – 10 of 10) sorted by relevance

/PHP-5.5/main/
H A Dphp_content_types.c52 …ys_populate_raw_post_data) || NULL == SG(request_info).post_entry) && SG(request_info).post_data) { in SAPI_POST_READER_FUNC()
54 data = estrndup(SG(request_info).post_data, length); in SAPI_POST_READER_FUNC()
65 if (SG(request_info).post_data) { in SAPI_POST_READER_FUNC()
66 …SG(request_info).raw_post_data = estrndup(SG(request_info).post_data, SG(request_info).post_data_l… in SAPI_POST_READER_FUNC()
H A DSAPI.c190 if (SG(request_info).post_data) { in sapi_handle_post()
191 efree(SG(request_info).post_data); in sapi_handle_post()
192 SG(request_info).post_data = NULL; in sapi_handle_post()
270 SG(request_info).post_data = emalloc(allocated_bytes); in SAPI_POST_READER_FUNC()
273 …read_bytes = sapi_module.read_post(SG(request_info).post_data+SG(read_post_bytes), SAPI_POST_BLOCK… in SAPI_POST_READER_FUNC()
287 SG(request_info).post_data = erealloc(SG(request_info).post_data, allocated_bytes); in SAPI_POST_READER_FUNC()
290 SG(request_info).post_data[SG(read_post_bytes)] = 0; /* terminating NULL */ in SAPI_POST_READER_FUNC()
397 SG(request_info).post_data = NULL; in sapi_activate_headers_only()
443 SG(request_info).post_data = NULL; in sapi_activate()
504 if (SG(request_info).post_data) { in sapi_deactivate()
[all …]
H A DSAPI.h82 char *post_data, *raw_post_data; member
H A Dphp_variables.c237 if (SG(request_info).post_data == NULL) { in SAPI_POST_HANDLER_FUNC()
241 s = SG(request_info).post_data; in SAPI_POST_HANDLER_FUNC()
/PHP-5.5/sapi/cli/tests/
H A Dphp_cli_server_005.phpt20 $post_data = <<<POST
32 $post_len = strlen($post_data);
41 {$post_data}
/PHP-5.5/sapi/apache2filter/
H A Dsapi_apache2.c166 memcpy(buf, ctx->post_data + ctx->post_idx, n); in php_apache_sapi_read_post()
169 if (ctx->post_data) free(ctx->post_data); in php_apache_sapi_read_post()
170 ctx->post_data = NULL; in php_apache_sapi_read_post()
390 ctx->post_data = realloc(ctx->post_data, ctx->post_len + 1); in php_input_filter()
391 memcpy(ctx->post_data + old_index, str, n); in php_input_filter()
416 SG(request_info).post_data = ctx->post_data; in php_apache_request_ctor()
H A Dphp_apache.h46 char *post_data; member
/PHP-5.5/ext/mbstring/
H A Dmb_gpc.c379 detected = _php_mb_encoding_handler_ex(&info, arg, SG(request_info).post_data TSRMLS_CC); in SAPI_POST_HANDLER_FUNC()
/PHP-5.5/ext/soap/
H A Dsoap.c1575 char *post_data = SG(request_info).raw_post_data; local
1594 ZVAL_STRINGL(params[0], post_data+10, post_data_length-10, 0);
1600 ZVAL_STRINGL(params[0], post_data, post_data_length, 0);
1615 doc_request = soap_xmlParseMemory(post_data, post_data_length);
/PHP-5.5/sapi/cli/
H A Dphp_cli_server.c1856 request_info->post_data = client->request.content; in php_cli_server_client_populate_request_info()

Completed in 37 milliseconds