Lines Matching refs:to_read
264 size_t to_read; in php_http_parser_execute() local
1385 to_read = MIN((size_t)(pe - p), (size_t)parser->content_length); in php_http_parser_execute()
1386 if (to_read > 0) { in php_http_parser_execute()
1387 if (settings->on_body) settings->on_body(parser, p, to_read); in php_http_parser_execute()
1388 p += to_read - 1; in php_http_parser_execute()
1389 parser->content_length -= to_read; in php_http_parser_execute()
1399 to_read = pe - p; in php_http_parser_execute()
1400 if (to_read > 0) { in php_http_parser_execute()
1401 if (settings->on_body) settings->on_body(parser, p, to_read); in php_http_parser_execute()
1402 p += to_read - 1; in php_http_parser_execute()
1471 to_read = MIN((size_t)(pe - p), (size_t)(parser->content_length)); in php_http_parser_execute()
1473 if (to_read > 0) { in php_http_parser_execute()
1474 if (settings->on_body) settings->on_body(parser, p, to_read); in php_http_parser_execute()
1475 p += to_read - 1; in php_http_parser_execute()
1478 if (to_read == (size_t)parser->content_length) { in php_http_parser_execute()
1482 parser->content_length -= to_read; in php_http_parser_execute()