• Home
  • Raw
  • Download

Lines Matching defs:parser

33 void llhttp_init(llhttp_t* parser, llhttp_type_t type,  in llhttp_init()
87 llhttp_t* parser = malloc(sizeof(llhttp_t)); in llhttp_alloc() local
92 void llhttp_free(llhttp_t* parser) { in llhttp_free()
100 uint8_t llhttp_get_type(llhttp_t* parser) { in llhttp_get_type()
104 uint8_t llhttp_get_http_major(llhttp_t* parser) { in llhttp_get_http_major()
108 uint8_t llhttp_get_http_minor(llhttp_t* parser) { in llhttp_get_http_minor()
112 uint8_t llhttp_get_method(llhttp_t* parser) { in llhttp_get_method()
116 int llhttp_get_status_code(llhttp_t* parser) { in llhttp_get_status_code()
120 uint8_t llhttp_get_upgrade(llhttp_t* parser) { in llhttp_get_upgrade()
125 void llhttp_reset(llhttp_t* parser) { in llhttp_reset()
140 llhttp_errno_t llhttp_execute(llhttp_t* parser, const char* data, size_t len) { in llhttp_execute()
150 llhttp_errno_t llhttp_finish(llhttp_t* parser) { in llhttp_finish()
175 void llhttp_pause(llhttp_t* parser) { in llhttp_pause()
185 void llhttp_resume(llhttp_t* parser) { in llhttp_resume()
194 void llhttp_resume_after_upgrade(llhttp_t* parser) { in llhttp_resume_after_upgrade()
203 llhttp_errno_t llhttp_get_errno(const llhttp_t* parser) { in llhttp_get_errno()
208 const char* llhttp_get_error_reason(const llhttp_t* parser) { in llhttp_get_error_reason()
213 void llhttp_set_error_reason(llhttp_t* parser, const char* reason) { in llhttp_set_error_reason()
218 const char* llhttp_get_error_pos(const llhttp_t* parser) { in llhttp_get_error_pos()
252 void llhttp_set_lenient_headers(llhttp_t* parser, int enabled) { in llhttp_set_lenient_headers()
261 void llhttp_set_lenient_chunked_length(llhttp_t* parser, int enabled) { in llhttp_set_lenient_chunked_length()
270 void llhttp_set_lenient_keep_alive(llhttp_t* parser, int enabled) { in llhttp_set_lenient_keep_alive()
278 void llhttp_set_lenient_transfer_encoding(llhttp_t* parser, int enabled) { in llhttp_set_lenient_transfer_encoding()
286 void llhttp_set_lenient_version(llhttp_t* parser, int enabled) { in llhttp_set_lenient_version()
294 void llhttp_set_lenient_data_after_close(llhttp_t* parser, int enabled) { in llhttp_set_lenient_data_after_close()
302 void llhttp_set_lenient_optional_lf_after_cr(llhttp_t* parser, int enabled) { in llhttp_set_lenient_optional_lf_after_cr()
310 void llhttp_set_lenient_optional_crlf_after_chunk(llhttp_t* parser, int enabled) { in llhttp_set_lenient_optional_crlf_after_chunk()
318 void llhttp_set_lenient_optional_cr_before_lf(llhttp_t* parser, int enabled) { in llhttp_set_lenient_optional_cr_before_lf()
326 void llhttp_set_lenient_spaces_after_chunk_size(llhttp_t* parser, int enabled) { in llhttp_set_lenient_spaces_after_chunk_size()