Lines Matching refs:endp

267 int llhttp__on_message_begin(llhttp_t* s, const char* p, const char* endp) {
274 int llhttp__on_url(llhttp_t* s, const char* p, const char* endp) {
276 SPAN_CALLBACK_MAYBE(s, on_url, p, endp - p);
281 int llhttp__on_url_complete(llhttp_t* s, const char* p, const char* endp) {
288 int llhttp__on_status(llhttp_t* s, const char* p, const char* endp) {
290 SPAN_CALLBACK_MAYBE(s, on_status, p, endp - p);
295 int llhttp__on_status_complete(llhttp_t* s, const char* p, const char* endp) {
302 int llhttp__on_header_field(llhttp_t* s, const char* p, const char* endp) {
304 SPAN_CALLBACK_MAYBE(s, on_header_field, p, endp - p);
309 int llhttp__on_header_field_complete(llhttp_t* s, const char* p, const char* endp) {
316 int llhttp__on_header_value(llhttp_t* s, const char* p, const char* endp) {
318 SPAN_CALLBACK_MAYBE(s, on_header_value, p, endp - p);
323 int llhttp__on_header_value_complete(llhttp_t* s, const char* p, const char* endp) {
330 int llhttp__on_headers_complete(llhttp_t* s, const char* p, const char* endp) {
337 int llhttp__on_message_complete(llhttp_t* s, const char* p, const char* endp) {
344 int llhttp__on_body(llhttp_t* s, const char* p, const char* endp) {
346 SPAN_CALLBACK_MAYBE(s, on_body, p, endp - p);
351 int llhttp__on_chunk_header(llhttp_t* s, const char* p, const char* endp) {
358 int llhttp__on_chunk_parameters(llhttp_t* s, const char* p, const char* endp) {
360 SPAN_CALLBACK_MAYBE(s, on_chunk_parameters, p, endp - p);
365 int llhttp__on_chunk_complete(llhttp_t* s, const char* p, const char* endp) {
375 void llhttp__debug(llhttp_t* s, const char* p, const char* endp,
377 if (p == endp) {