Searched refs:post_data (Results 1 - 9 of 9) sorted by relevance
| /PHP_5_4/ext/mbstring/ |
| H A D | mb_gpc.c | 379 detected = _php_mb_encoding_handler_ex(&info, arg, SG(request_info).post_data TSRMLS_CC);
|
| /PHP_5_4/main/ |
| H A D | SAPI.c | 183 if (SG(request_info).post_data) { 184 efree(SG(request_info).post_data); 185 SG(request_info).post_data = NULL; 263 SG(request_info).post_data = emalloc(allocated_bytes); 266 read_bytes = sapi_module.read_post(SG(request_info).post_data+SG(read_post_bytes), SAPI_POST_BLOCK_SIZE TSRMLS_CC); 280 SG(request_info).post_data = erealloc(SG(request_info).post_data, allocated_bytes); 283 SG(request_info).post_data[SG(read_post_bytes)] = 0; /* terminating NULL */ 390 SG(request_info).post_data = NULL; 436 SG(request_info).post_data [all...] |
| H A D | SAPI.h | 82 char *post_data, *raw_post_data; member in struct:__anon272
|
| H A D | php_content_types.c | 52 if ((PG(always_populate_raw_post_data) || NULL == SG(request_info).post_entry) && SG(request_info).post_data) { 54 data = estrndup(SG(request_info).post_data, length); 60 some post handlers modify the content of request_info.post_data 63 request_info.post_data for memory preservation reasons 65 if (SG(request_info).post_data) { 66 SG(request_info).raw_post_data = estrndup(SG(request_info).post_data, SG(request_info).post_data_length);
|
| H A D | php_variables.c | 238 if (SG(request_info).post_data == NULL) { 242 s = SG(request_info).post_data;
|
| /PHP_5_4/sapi/apache2filter/ |
| H A D | php_apache.h | 39 /* Length of post_data buffer */ 46 char *post_data; member in struct:php_struct
|
| H A D | sapi_apache2.c | 166 memcpy(buf, ctx->post_data + ctx->post_idx, n); 169 if (ctx->post_data) free(ctx->post_data); 170 ctx->post_data = NULL; 390 ctx->post_data = realloc(ctx->post_data, ctx->post_len + 1); 391 memcpy(ctx->post_data + old_index, str, n); 416 SG(request_info).post_data = ctx->post_data;
|
| /PHP_5_4/sapi/cli/ |
| H A D | php_cli_server.c | 1703 request_info->post_data = client->request.content;
|
| /PHP_5_4/ext/soap/ |
| H A D | soap.c | 1558 char *post_data = SG(request_info).raw_post_data; local 1577 ZVAL_STRINGL(params[0], post_data+10, post_data_length-10, 0); 1583 ZVAL_STRINGL(params[0], post_data, post_data_length, 0); 1598 doc_request = soap_xmlParseMemory(post_data, post_data_length);
|
Completed in 29 milliseconds