Lines Matching refs:to_read
330 size_t to_read; in php_http_parser_execute() local
1434 to_read = MIN(pe - p, (size_t)parser->content_length); in php_http_parser_execute()
1435 if (to_read > 0) { in php_http_parser_execute()
1436 if (settings->on_body) settings->on_body(parser, p, to_read); in php_http_parser_execute()
1437 p += to_read - 1; in php_http_parser_execute()
1438 parser->content_length -= to_read; in php_http_parser_execute()
1448 to_read = pe - p; in php_http_parser_execute()
1449 if (to_read > 0) { in php_http_parser_execute()
1450 if (settings->on_body) settings->on_body(parser, p, to_read); in php_http_parser_execute()
1451 p += to_read - 1; in php_http_parser_execute()
1519 to_read = MIN(pe - p, (size_t)(parser->content_length)); in php_http_parser_execute()
1521 if (to_read > 0) { in php_http_parser_execute()
1522 if (settings->on_body) settings->on_body(parser, p, to_read); in php_http_parser_execute()
1523 p += to_read - 1; in php_http_parser_execute()
1526 if (to_read == parser->content_length) { in php_http_parser_execute()
1530 parser->content_length -= to_read; in php_http_parser_execute()