Searched refs:func (Results 1 – 8 of 8) sorted by relevance
/unit/pkg/deb/debian/ |
H A D | unit.example-go-app | 9 func handler(w http.ResponseWriter, r *http.Request) { 17 func main() {
|
/unit/pkg/deb/debian.module/ |
H A D | unit.example-go-app | 9 func handler(w http.ResponseWriter, r *http.Request) { 17 func main() {
|
/unit/pkg/rpm/rpmbuild/SOURCES/ |
H A D | unit.example-go-app | 9 func handler(w http.ResponseWriter, r *http.Request) { 17 func main() {
|
/unit/src/nodejs/unit-http/ |
H A D | nxt_napi.h | 441 make_callback(napi_async_context ctx, napi_value val, napi_value func, in make_callback() 447 status = napi_make_callback(env_, ctx, val, func, argc, argv, &res); in make_callback() 470 make_callback(napi_async_context ctx, napi_value val, napi_value func) in make_callback() 472 return make_callback(ctx, val, func, 0, NULL); in make_callback() 477 make_callback(napi_async_context ctx, napi_value val, napi_value func, in make_callback() 480 return make_callback(ctx, val, func, 1, &arg1); in make_callback() 485 make_callback(napi_async_context ctx, napi_value val, napi_value func, in make_callback() 490 return make_callback(ctx, val, func, 2, args); in make_callback() 495 make_callback(napi_async_context ctx, napi_value val, napi_value func, in make_callback() 500 return make_callback(ctx, val, func, 3, args); in make_callback()
|
/unit/auto/ |
H A D | threads | 195 void *func(void *p); 197 void *func(void *p) { 207 if (pthread_create(&pt, NULL, func, NULL))
|
/unit/src/python/ |
H A D | nxt_python_asgi.c | 66 PyObject *func; in nxt_python_asgi_check() local 69 func = nxt_python_asgi_get_func(obj); in nxt_python_asgi_check() 71 if (func == NULL) { in nxt_python_asgi_check() 75 code = (PyCodeObject *) PyFunction_GET_CODE(func); in nxt_python_asgi_check() 84 Py_DECREF(func); in nxt_python_asgi_check() 140 PyObject *func; in nxt_python_asgi_init() local 167 func = nxt_python_asgi_get_func(nxt_py_targets->target[i].application); in nxt_python_asgi_init() 168 if (nxt_slow_path(func == NULL)) { in nxt_python_asgi_init() 175 code = (PyCodeObject *) PyFunction_GET_CODE(func); in nxt_python_asgi_init() 183 Py_DECREF(func); in nxt_python_asgi_init()
|
/unit/src/ |
H A D | nxt_php_sapi.c | 186 zend_function *func; in PHP_MINIT_FUNCTION() local 190 func = nxt_php_hash_str_find_ptr(CG(function_table), &chdir); in PHP_MINIT_FUNCTION() 191 if (nxt_slow_path(func == NULL)) { in PHP_MINIT_FUNCTION() 195 nxt_php_chdir_handler = func->internal_function.handler; in PHP_MINIT_FUNCTION() 196 func->internal_function.handler = nxt_php_chdir; in PHP_MINIT_FUNCTION()
|
/unit/test/ |
H A D | conftest.py | 117 def print_log_on_assert(func): argument 120 func(*args, **kwargs)
|