Home
last modified time | relevance | path

Searched refs:call (Results 1 – 18 of 18) sorted by path

/unit/
H A DCHANGES127 *) Bugfix: Perl applications crash on second responder call.
/unit/pkg/contrib/
H A DMakefile44 download_pkg = $(call download,$(CONTRIB_NGINX)/$(2)/$(lastword $(subst /, ,$(@)))) || \
45 ( $(call download,$(1)) && echo "Please upload $(lastword $(subst /, ,$(@))) to $(CONTRIB_NGINX)" )
90 CHECK_SHA512 = $(call checksum,$(SHA512SUM),SHA512,.sum-)
/unit/pkg/contrib/src/libunit-wasm/
H A DMakefile11 $(call download_git,$(LIBUNIT_WASM_URL),,$(LIBUNIT_WASM_GITHASH))
14 $(call check_githash,$(LIBUNIT_WASM_GITHASH))
/unit/pkg/contrib/src/njs/
H A DMakefile9 $(call download_pkg,$(NJS_URL),njs)
/unit/pkg/contrib/src/wasi-sysroot/
H A DMakefile9 $(call download_pkg,$(WASI_SYSROOT_URL),wasi-sysroot)
/unit/pkg/contrib/src/wasmtime/
H A DMakefile19 $(call download_pkg,$(WASMTIME_URL),wasmtime)
/unit/src/java/nginx/unit/websocket/pojo/
H A DLocalStrings.properties17 pojoEndpointBase.onCloseFail=Failed to call onClose method of POJO end point for POJO of type [{0}]
19 pojoEndpointBase.onErrorFail=Failed to call onError method of POJO end point for POJO of type [{0}]
20 pojoEndpointBase.onOpenFail=Failed to call onOpen method of POJO end point for POJO of type [{0}]
/unit/src/java/nginx/unit/websocket/server/
H A DLocalStrings.properties40 …y, this means the Servlet that created the WsHttpUpgradeHandler instance should also call preInit()
/unit/src/nodejs/unit-http/
H A Dhttp_server.js18 EventEmitter.call(this);
361 Readable.call(this);
424 EventEmitter.call(this);
H A Dsocket.js13 EventEmitter.call(this);
H A Dutils.js51 this.buffer.push([ new Date(), Array.prototype.slice.call(arguments) ]);
H A Dwebsocket_connection.js45 EventEmitter.call(this);
H A Dwebsocket_request.js89 EventEmitter.call(this);
H A Dwebsocket_router.js24 EventEmitter.call(this);
H A Dwebsocket_router_request.js22 EventEmitter.call(this);
H A Dwebsocket_server.js25 EventEmitter.call(this);
/unit/src/python/
H A Dnxt_python_asgi.c98 PyObject *call; in nxt_python_asgi_get_func() local
112 call = PyObject_GetAttrString(obj, "__call__"); in nxt_python_asgi_get_func()
114 if (call == NULL) { in nxt_python_asgi_get_func()
118 if (PyFunction_Check(call)) { in nxt_python_asgi_get_func()
119 return call; in nxt_python_asgi_get_func()
122 if (PyMethod_Check(call)) { in nxt_python_asgi_get_func()
123 obj = PyMethod_GET_FUNCTION(call); in nxt_python_asgi_get_func()
136 Py_DECREF(call); in nxt_python_asgi_get_func()
/unit/test/
H A Dtest_respawn.py35 subprocess.call(['kill', '-9', *pids])