/unit/src/java/nginx/unit/ |
H A D | RequestAttrProxy.java | 20 for (ServletRequestAttributeListener l : listeners_) { in attributeAdded() 21 l.attributeAdded(srae); in attributeAdded() 28 for (ServletRequestAttributeListener l : listeners_) { in attributeReplaced() 29 l.attributeReplaced(srae); in attributeReplaced() 36 for (ServletRequestAttributeListener l : listeners_) { in attributeRemoved() 37 l.attributeRemoved(srae); in attributeRemoved()
|
H A D | SessionAttrProxy.java | 20 for (HttpSessionAttributeListener l : listeners_) { in attributeAdded() 21 l.attributeAdded(event); in attributeAdded() 28 for (HttpSessionAttributeListener l : listeners_) { in attributeRemoved() 29 l.attributeRemoved(event); in attributeRemoved() 36 for (HttpSessionAttributeListener l : listeners_) { in attributeReplaced() 37 l.attributeReplaced(event); in attributeReplaced()
|
H A D | Session.java | 127 HttpSessionBindingListener l = (HttpSessionBindingListener) o; in setAttribute() local 130 l.valueBound(e); in setAttribute() 142 HttpSessionBindingListener l = (HttpSessionBindingListener) old; in setAttribute() local 145 l.valueUnbound(e); in setAttribute() 187 HttpSessionBindingListener l = (HttpSessionBindingListener) o; in removeAttribute() local 190 l.valueUnbound(e); in removeAttribute() 221 HttpSessionBindingListener l = (HttpSessionBindingListener) o; in unboundAttributes() local 224 l.valueUnbound(e); in unboundAttributes()
|
H A D | Context.java | 406 for (File l : libs) { in loadApp() 937 l.requestInitialized(sre); in service() 1005 l.requestDestroyed(sre); in service() 1475 int res = l - r; in compareVersion() 3092 l.attributeAdded(scae); 3094 l.attributeReplaced(scae); 3114 l.attributeRemoved(scae); 3310 for (HttpSessionListener l : sess_listeners_) 3312 l.sessionCreated(event); 3356 for (HttpSessionIdListener l : sess_id_listeners_) [all …]
|
/unit/test/python/input_readline/ |
H A D | wsgi.py | 6 l = environ['wsgi.input'].readline() 7 if not l: 10 body.append(l) 11 content_length += len(l)
|
/unit/test/python/input_readline_size/ |
H A D | wsgi.py | 5 l = environ['wsgi.input'].readline(9) 6 if not l: 9 body.append(l) 11 if len(l) > 9:
|
/unit/test/python/input_iter/ |
H A D | wsgi.py | 5 for l in environ['wsgi.input'].__iter__(): 6 body.append(l) 7 content_length += len(l)
|
/unit/go/ |
H A D | response.go | 33 l := len(p) 37 for written < l { 38 res := C.nxt_cgo_response_write(r.c_req, br, C.uint32_t(l - written)) 43 if (written < l) {
|
H A D | unit.go | 80 func GoStringN(sptr *C.nxt_unit_sptr_t, l C.int) string { 84 return C.GoStringN((*C.char)(unsafe.Pointer(b)), l)
|
/unit/src/test/ |
H A D | nxt_utf8_test.c | 88 nxt_uint_t i, k, l, m; in nxt_utf8_test() local 161 for (l = 0; l < 256; l++) { in nxt_utf8_test() 162 utf8[2] = l; in nxt_utf8_test()
|
/unit/src/java/ |
H A D | nxt_jni.h | 50 nxt_jlong2ptr(jlong l) in nxt_jlong2ptr() argument 52 return (void *) (intptr_t) l; in nxt_jlong2ptr()
|
/unit/test/ |
H A D | conftest.py | 469 out = [l for l in out if unit_pid in l] 482 out = [l for l in out if 'unit: main' not in l] 486 l 487 for l in out 488 if re.search(fr'{router_pid}\s+{unit_pid}.*unit: router', l) is None 493 l 494 for l in out 495 if re.search(fr'{controller_pid}\s+{unit_pid}.*unit: controller', l)
|
H A D | test_ruby_application.py | 262 (l for l in locales if re.match(pattern, l.upper()) is not None),
|
H A D | test_proxy_chunked.py | 96 for l, c in chunks:
|
/unit/src/nodejs/unit-http/ |
H A D | http_server.js | 497 var res, o, l; 507 l = Buffer.byteLength(o.chunk, o.encoding); 510 l = o.chunk.length; 513 res = o.resp._write(o.chunk, o.offset, l); 516 if (o.offset < l) {
|
/unit/auto/modules/ |
H A D | go | 92 -fsanitize* | -L* | -l*) NXT_GO_LDFLAGS="${NXT_GO_LDFLAGS} $o" ;;
|
H A D | ruby | 74 NXT_RUBY_LIBS="-l$NXT_RUBY_LIBNAME $NXT_RUBY_LIBSCONF"
|
/unit/tools/ |
H A D | README.md | 52 | `-l` \| `--nolog` | Do not monitor the error log after configuration changes.
|
/unit/pkg/rpm/ |
H A D | Makefile | 289 find . -maxdepth 1 -type l -delete
|
/unit/pkg/deb/ |
H A D | Makefile | 349 find . -maxdepth 1 -type l -delete
|
/unit/src/ |
H A D | nxt_unit.c | 1416 uint64_t l; in nxt_unit_process_req_body() local 1426 l = req->content_buf->end - req->content_buf->free; in nxt_unit_process_req_body() 1430 l += b->buf.end - b->buf.free; in nxt_unit_process_req_body() 1458 if (req->content_fd != -1 || l == req->content_length) { in nxt_unit_process_req_body() 3335 size_t l, copy; in nxt_unit_websocket_sendv() local 3374 l = iov[i].iov_len; in nxt_unit_websocket_sendv() 3376 while (l > 0) { in nxt_unit_websocket_sendv() 3378 copy = nxt_min(l, copy); in nxt_unit_websocket_sendv() 3382 l -= copy; in nxt_unit_websocket_sendv() 3384 if (l > 0) { in nxt_unit_websocket_sendv()
|