Home
last modified time | relevance | path

Searched refs:loop_create_future (Results 1 – 5 of 5) sorted by path

/unit/src/python/
H A Dnxt_python_asgi.c273 { "create_future", &ctx_data->loop_create_future }, in nxt_python_asgi_ctx_data_alloc()
322 obj = PyObject_CallObject(ctx_data->loop_create_future, NULL); in nxt_python_asgi_ctx_data_alloc()
370 Py_XDECREF(ctx_data->loop_create_future); in nxt_python_asgi_ctx_data_free()
H A Dnxt_python_asgi.h29 PyObject *loop_create_future; member
H A Dnxt_python_asgi_http.c138 future = PyObject_CallObject(ctx_data->loop_create_future, NULL); in nxt_py_asgi_http_receive()
421 future = PyObject_CallObject(ctx_data->loop_create_future, in nxt_py_asgi_http_response_body()
H A Dnxt_python_asgi_lifespan.c173 lifespan->startup_future = PyObject_CallObject(ctx_data->loop_create_future, in nxt_py_asgi_lifespan_target_startup()
379 lifespan->shutdown_future = PyObject_CallObject(ctx_data->loop_create_future, in nxt_py_asgi_lifespan_target_shutdown()
414 future = PyObject_CallObject(ctx_data->loop_create_future, NULL); in nxt_py_asgi_lifespan_receive()
H A Dnxt_python_asgi_websocket.c166 future = PyObject_CallObject(ctx_data->loop_create_future, NULL); in nxt_py_asgi_websocket_receive()