Home
last modified time | relevance | path

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

/PHP-5.3/main/
H A DSAPI.c198 int allocated_bytes=SAPI_POST_BLOCK_SIZE+1; in SAPI_POST_READER_FUNC() local
205 SG(request_info).post_data = emalloc(allocated_bytes); in SAPI_POST_READER_FUNC()
220 if (SG(read_post_bytes)+SAPI_POST_BLOCK_SIZE >= allocated_bytes) { in SAPI_POST_READER_FUNC()
221 allocated_bytes = SG(read_post_bytes)+SAPI_POST_BLOCK_SIZE+1; in SAPI_POST_READER_FUNC()
222 SG(request_info).post_data = erealloc(SG(request_info).post_data, allocated_bytes); in SAPI_POST_READER_FUNC()

Completed in 6 milliseconds