Lines Matching refs:to_read
264 size_t to_read; in php_http_parser_execute() local
1380 to_read = MIN((size_t)(pe - p), (size_t)parser->content_length); in php_http_parser_execute()
1381 if (to_read > 0) { in php_http_parser_execute()
1382 if (settings->on_body) settings->on_body(parser, p, to_read); in php_http_parser_execute()
1383 p += to_read - 1; in php_http_parser_execute()
1384 parser->content_length -= to_read; in php_http_parser_execute()
1394 to_read = pe - p; in php_http_parser_execute()
1395 if (to_read > 0) { in php_http_parser_execute()
1396 if (settings->on_body) settings->on_body(parser, p, to_read); in php_http_parser_execute()
1397 p += to_read - 1; in php_http_parser_execute()
1466 to_read = MIN((size_t)(pe - p), (size_t)(parser->content_length)); in php_http_parser_execute()
1468 if (to_read > 0) { in php_http_parser_execute()
1469 if (settings->on_body) settings->on_body(parser, p, to_read); in php_http_parser_execute()
1470 p += to_read - 1; in php_http_parser_execute()
1473 if (to_read == (size_t)parser->content_length) { in php_http_parser_execute()
1477 parser->content_length -= to_read; in php_http_parser_execute()