Lines Matching refs:endp

321 int llhttp__on_message_begin(llhttp_t* s, const char* p, const char* endp) {
328 int llhttp__on_url(llhttp_t* s, const char* p, const char* endp) {
330 SPAN_CALLBACK_MAYBE(s, on_url, p, endp - p);
335 int llhttp__on_url_complete(llhttp_t* s, const char* p, const char* endp) {
342 int llhttp__on_status(llhttp_t* s, const char* p, const char* endp) {
344 SPAN_CALLBACK_MAYBE(s, on_status, p, endp - p);
349 int llhttp__on_status_complete(llhttp_t* s, const char* p, const char* endp) {
356 int llhttp__on_method(llhttp_t* s, const char* p, const char* endp) {
358 SPAN_CALLBACK_MAYBE(s, on_method, p, endp - p);
363 int llhttp__on_method_complete(llhttp_t* s, const char* p, const char* endp) {
370 int llhttp__on_version(llhttp_t* s, const char* p, const char* endp) {
372 SPAN_CALLBACK_MAYBE(s, on_version, p, endp - p);
377 int llhttp__on_version_complete(llhttp_t* s, const char* p, const char* endp) {
384 int llhttp__on_header_field(llhttp_t* s, const char* p, const char* endp) {
386 SPAN_CALLBACK_MAYBE(s, on_header_field, p, endp - p);
391 int llhttp__on_header_field_complete(llhttp_t* s, const char* p, const char* endp) {
398 int llhttp__on_header_value(llhttp_t* s, const char* p, const char* endp) {
400 SPAN_CALLBACK_MAYBE(s, on_header_value, p, endp - p);
405 int llhttp__on_header_value_complete(llhttp_t* s, const char* p, const char* endp) {
412 int llhttp__on_headers_complete(llhttp_t* s, const char* p, const char* endp) {
419 int llhttp__on_message_complete(llhttp_t* s, const char* p, const char* endp) {
426 int llhttp__on_body(llhttp_t* s, const char* p, const char* endp) {
428 SPAN_CALLBACK_MAYBE(s, on_body, p, endp - p);
433 int llhttp__on_chunk_header(llhttp_t* s, const char* p, const char* endp) {
440 int llhttp__on_chunk_extension_name(llhttp_t* s, const char* p, const char* endp) {
442 SPAN_CALLBACK_MAYBE(s, on_chunk_extension_name, p, endp - p);
447 int llhttp__on_chunk_extension_name_complete(llhttp_t* s, const char* p, const char* endp) {
454 int llhttp__on_chunk_extension_value(llhttp_t* s, const char* p, const char* endp) {
456 SPAN_CALLBACK_MAYBE(s, on_chunk_extension_value, p, endp - p);
461 int llhttp__on_chunk_extension_value_complete(llhttp_t* s, const char* p, const char* endp) {
468 int llhttp__on_chunk_complete(llhttp_t* s, const char* p, const char* endp) {
475 int llhttp__on_reset(llhttp_t* s, const char* p, const char* endp) {
485 void llhttp__debug(llhttp_t* s, const char* p, const char* endp,
487 if (p == endp) {