Lines Matching refs:nxt_py_asgi_http_t
31 } nxt_py_asgi_http_t; typedef
35 static PyObject *nxt_py_asgi_http_read_msg(nxt_py_asgi_http_t *http);
37 static PyObject *nxt_py_asgi_http_response_start(nxt_py_asgi_http_t *http,
39 static PyObject *nxt_py_asgi_http_response_body(nxt_py_asgi_http_t *http,
41 static void nxt_py_asgi_http_emit_disconnect(nxt_py_asgi_http_t *http);
42 static void nxt_py_asgi_http_set_result(nxt_py_asgi_http_t *http,
62 .tp_basicsize = sizeof(nxt_py_asgi_http_t),
91 nxt_py_asgi_http_t *http; in nxt_py_asgi_http_create()
93 http = PyObject_New(nxt_py_asgi_http_t, &nxt_py_asgi_http_type); in nxt_py_asgi_http_create()
116 nxt_py_asgi_http_t *http; in nxt_py_asgi_http_receive()
120 http = (nxt_py_asgi_http_t *) self; in nxt_py_asgi_http_receive()
163 nxt_py_asgi_http_read_msg(nxt_py_asgi_http_t *http) in nxt_py_asgi_http_read_msg()
259 nxt_py_asgi_http_t *http; in nxt_py_asgi_http_send()
264 http = (nxt_py_asgi_http_t *) self; in nxt_py_asgi_http_send()
299 nxt_py_asgi_http_response_start(nxt_py_asgi_http_t *http, PyObject *dict) in nxt_py_asgi_http_response_start()
356 nxt_py_asgi_http_response_body(nxt_py_asgi_http_t *http, PyObject *dict) in nxt_py_asgi_http_response_body()
468 nxt_py_asgi_http_emit_disconnect(nxt_py_asgi_http_t *http) in nxt_py_asgi_http_emit_disconnect()
496 nxt_py_asgi_http_set_result(nxt_py_asgi_http_t *http, PyObject *future, in nxt_py_asgi_http_set_result()
528 nxt_py_asgi_http_t *http; in nxt_py_asgi_http_data_handler()
564 nxt_py_asgi_http_t *http; in nxt_py_asgi_http_drain()
566 http = nxt_container_of(lnk, nxt_py_asgi_http_t, link); in nxt_py_asgi_http_drain()
633 nxt_py_asgi_http_t *http; in nxt_py_asgi_http_close_handler()
652 nxt_py_asgi_http_t *http; in nxt_py_asgi_http_done()
654 http = (nxt_py_asgi_http_t *) self; in nxt_py_asgi_http_done()