Home
last modified time | relevance | path

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

/PHP-5.5/main/
H A DSAPI.c263 int allocated_bytes=SAPI_POST_BLOCK_SIZE+1; in SAPI_POST_READER_FUNC() local
270 SG(request_info).post_data = emalloc(allocated_bytes); in SAPI_POST_READER_FUNC()
285 if (SG(read_post_bytes)+SAPI_POST_BLOCK_SIZE >= allocated_bytes) { in SAPI_POST_READER_FUNC()
286 allocated_bytes = SG(read_post_bytes)+SAPI_POST_BLOCK_SIZE+1; in SAPI_POST_READER_FUNC()
287 SG(request_info).post_data = erealloc(SG(request_info).post_data, allocated_bytes); in SAPI_POST_READER_FUNC()

Completed in 17 milliseconds