Home
last modified time | relevance | path

Searched refs:old (Results 1 – 10 of 10) sorted by last modified time

/unit/src/
H A Dnxt_router.c3735 nxt_socket_conf_joint_t *joint, *old; in nxt_router_listen_socket_update() local
3747 old = lev->socket.data; in nxt_router_listen_socket_update()
3761 nxt_router_conf_release(&engine->task, old); in nxt_router_listen_socket_update()
H A Dnxt_listen_socket.c33 nxt_log_t log, *old; in nxt_listen_socket_create() local
51 old = thr->log; in nxt_listen_socket_create()
200 thr->log = old; in nxt_listen_socket_create()
222 thr->log = old; in nxt_listen_socket_create()
232 nxt_log_t log, *old; in nxt_listen_socket_update() local
238 old = thr->log; in nxt_listen_socket_update()
252 thr->log = old; in nxt_listen_socket_update()
258 thr->log = old; in nxt_listen_socket_update()
H A Dnxt_openssl.c982 nxt_tls_bundle_hash_item_t *old; local
1013 old = lhq.value;
1014 if (old->bundle != item->bundle) {
1017 &str, &old->bundle->name, &item->bundle->name);
1019 old->bundle = item->bundle;
H A Dnxt_atomic.h177 nxt_atomic_int_t old; in nxt_atomic_cmp_set() local
179 old = cmp; in nxt_atomic_cmp_set()
181 return __compare_and_swaplp(lock, &old, set); in nxt_atomic_cmp_set()
204 nxt_atomic_int_t old; in nxt_atomic_cmp_set() local
206 old = cmp; in nxt_atomic_cmp_set()
208 return __compare_and_swap(lock, &old, set); in nxt_atomic_cmp_set()
H A Dnxt_log.c49 nxt_log_t *old; in nxt_log_set_ctx() local
53 old = thr->log; in nxt_log_set_ctx()
55 log->level = old->level; in nxt_log_set_ctx()
56 log->handler = old->handler; in nxt_log_set_ctx()
62 return old; in nxt_log_set_ctx()
H A Dnxt_vector.c77 void *item, *start, *old; in nxt_vector_add() local
102 old = vector->start; in nxt_vector_add()
105 nxt_memcpy(start, old, size); in nxt_vector_add()
111 proto->free(pool, old); in nxt_vector_add()
/unit/src/java/nginx/unit/
H A DContext.java431 ClassLoader old = Thread.currentThread().getContextClassLoader(); in loadApp() local
530 Thread.currentThread().setContextClassLoader(old); in loadApp()
927 ClassLoader old = Thread.currentThread().getContextClassLoader(); in service() local
1009 Thread.currentThread().setContextClassLoader(old); in service()
1766 ClassLoader old = Thread.currentThread().getContextClassLoader();
1793 Thread.currentThread().setContextClassLoader(old);
2532 ClassLoader old = Thread.currentThread().getContextClassLoader();
2569 Thread.currentThread().setContextClassLoader(old);
H A DSession.java124 Object old; in setAttribute() local
135 old = attributes.put(s, o); in setAttribute()
137 old = attributes.remove(s); in setAttribute()
141 if (old != null && old instanceof HttpSessionBindingListener) { in setAttribute()
142 HttpSessionBindingListener l = (HttpSessionBindingListener) old; in setAttribute()
153 if (old != null) { in setAttribute()
154 HttpSessionBindingEvent e = new HttpSessionBindingEvent(this, s, old); in setAttribute()
161 if (old != null) { in setAttribute()
162 HttpSessionBindingEvent e = new HttpSessionBindingEvent(this, s, old); in setAttribute()
/unit/go/
H A Dport.go54 old := port_registry_.m[p.key]
56 if old == nil {
/unit/src/java/nginx/unit/websocket/server/
H A DWsServerContainer.java173 ServerEndpointConfig old = configExactMatchMap.put(path, sec); in addEndpoint() local
174 if (old != null) { in addEndpoint()
178 old.getEndpointClass(), in addEndpoint()