Home
last modified time | relevance | path

Searched refs:shutdown (Results 1 - 25 of 283) sorted by relevance

12345678910>>...12

/third_party/mesa3d/src/gallium/frontends/nine/
H A Dthreadpool.c48 while (!pool->shutdown) { in threadpool_worker()
52 while (!pool->workqueue && !pool->shutdown) in threadpool_worker()
55 if (pool->shutdown) in threadpool_worker()
115 pool->shutdown = TRUE; in _mesa_threadpool_destroy()
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dx509_meth.c88 int (*shutdown) (X509_LOOKUP *ctx)) in X509_LOOKUP_meth_set_shutdown()
90 method->shutdown = shutdown; in X509_LOOKUP_meth_set_shutdown()
97 return method->shutdown; in X509_LOOKUP_meth_get_shutdown()
/third_party/openssl/crypto/x509/
H A Dx509_meth.c88 int (*shutdown) (X509_LOOKUP *ctx)) in X509_LOOKUP_meth_set_shutdown()
90 method->shutdown = shutdown; in X509_LOOKUP_meth_set_shutdown()
97 return method->shutdown; in X509_LOOKUP_meth_get_shutdown()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_cs_tpool.c44 while (!pool->shutdown) { in lp_cs_tpool_worker()
48 while (list_is_empty(&pool->workqueue) && !pool->shutdown) in lp_cs_tpool_worker()
51 if (pool->shutdown) in lp_cs_tpool_worker()
116 pool->shutdown = true; in lp_cs_tpool_destroy()
/third_party/ltp/utils/sctp/func_tests/
H A Dtest_1_to_1_shutdown.c5 * This file has test cases to test the shutdown() call for 1-1 style sockets
9 * TEST3: shutdown with SHUT_WR flag to disable new send
10 * TEST4: shutdown with SHUT_RD flag to disable new receive
11 * TEST5: shutdown with SHUT_RDWR flag to disable new receive/send
112 /*shutdown() TEST1: Bad socket descriptor, EBADF Expected error*/ in main()
113 error = shutdown(-1, SHUT_WR); in main()
115 tst_brkm(TBROK, tst_exit, "shutdown with a bad socket " in main()
118 tst_resm(TPASS, "shutdown() with a bad socket descriptor - EBADF"); in main()
120 /*shutdown() TEST2: Invalid socket, ENOTSOCK Expected error*/ in main()
126 error = shutdown(f in main()
[all...]
/third_party/node/deps/openssl/openssl/crypto/bio/
H A Dbss_sock.c93 if (a->shutdown) { in sock_free()
162 b->shutdown = (int)num; in sock_ctrl()
175 ret = b->shutdown; in sock_ctrl()
178 b->shutdown = (int)num; in sock_ctrl()
H A Dbss_fd.c103 if (a->shutdown) { in fd_free()
163 b->shutdown = (int)num; in fd_ctrl()
176 ret = b->shutdown; in fd_ctrl()
179 b->shutdown = (int)num; in fd_ctrl()
H A Dbss_file.c122 if (a->shutdown) { in file_free()
209 b->shutdown = (int)num & BIO_CLOSE; in file_ctrl()
269 b->shutdown = (int)num & BIO_CLOSE; in file_ctrl()
317 ret = (long)b->shutdown; in file_ctrl()
320 b->shutdown = (int)num; in file_ctrl()
H A Dbss_mem.c125 bi->shutdown = 1; in mem_init()
162 if (a->shutdown && a->init && a->ptr != NULL) { in mem_buf_free()
303 b->shutdown = (int)num; in mem_ctrl()
317 ret = (long)b->shutdown; in mem_ctrl()
320 b->shutdown = (int)num; in mem_ctrl()
H A Dbss_acpt.c87 bi->shutdown = 1; in acpt_new()
125 shutdown(c->accept_sock, 2); in acpt_close_socket()
140 if (a->shutdown) { in acpt_free()
472 b->shutdown = (int)num; in acpt_ctrl()
521 ret = b->shutdown; in acpt_ctrl()
524 b->shutdown = (int)num; in acpt_ctrl()
/third_party/openssl/crypto/bio/
H A Dbss_sock.c93 if (a->shutdown) { in sock_free()
162 b->shutdown = (int)num; in sock_ctrl()
175 ret = b->shutdown; in sock_ctrl()
178 b->shutdown = (int)num; in sock_ctrl()
H A Dbss_fd.c103 if (a->shutdown) { in fd_free()
163 b->shutdown = (int)num; in fd_ctrl()
176 ret = b->shutdown; in fd_ctrl()
179 b->shutdown = (int)num; in fd_ctrl()
H A Dbss_file.c122 if (a->shutdown) { in file_free()
209 b->shutdown = (int)num & BIO_CLOSE; in file_ctrl()
269 b->shutdown = (int)num & BIO_CLOSE; in file_ctrl()
317 ret = (long)b->shutdown; in file_ctrl()
320 b->shutdown = (int)num; in file_ctrl()
H A Dbss_mem.c125 bi->shutdown = 1; in mem_init()
162 if (a->shutdown && a->init && a->ptr != NULL) { in mem_buf_free()
303 b->shutdown = (int)num; in mem_ctrl()
317 ret = (long)b->shutdown; in mem_ctrl()
320 b->shutdown = (int)num; in mem_ctrl()
H A Dbss_acpt.c87 bi->shutdown = 1; in acpt_new()
125 shutdown(c->accept_sock, 2); in acpt_close_socket()
140 if (a->shutdown) { in acpt_free()
472 b->shutdown = (int)num; in acpt_ctrl()
521 ret = b->shutdown; in acpt_ctrl()
524 b->shutdown = (int)num; in acpt_ctrl()
/third_party/musl/src/network/
H A Dshutdown.c4 int shutdown(int fd, int how) in shutdown() function
6 return socketcall(shutdown, fd, how, 0, 0, 0, 0); in shutdown()
/third_party/python/Lib/test/
H A Dtest_concurrent_futures.py136 self.executor.shutdown(wait=True)
294 self.executor.shutdown()
300 # Test the atexit hook for shutdown of worker threads and processes
322 # Test the atexit hook for shutdown of worker threads and processes
351 self.executor.shutdown()
358 self.executor.shutdown(cancel_futures=True)
379 """shutdown(wait=False) doesn't hang at exit with running futures.
394 t.shutdown(wait=False)
401 """shutdown(wait=True) doesn't hang when a future was submitted and
402 quickly canceled right before shutdown
[all...]
/third_party/node/test/parallel/
H A Dtest-https-close.js31 function shutdown() { function
51 setImmediate(shutdown);
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/internal/
H A Dssl_methods.h29 handshake, shutdown, clear, \
39 shutdown, \
/third_party/python/Lib/asyncio/
H A Dtrsock.py65 def shutdown(self, how): member in TransportSocket
67 # to shutdown the connection.
68 self._sock.shutdown(how)
/third_party/libuv/test/
H A Decho-server.c86 int shutdown = 0; in after_read() local
109 * If we get QSS it means shutdown the stream. in after_read()
117 shutdown = 1; in after_read()
122 else if (shutdown) in after_read()
143 if (shutdown) in after_read()
/third_party/selinux/libsepol/src/
H A Dsidtab.c34 s->shutdown = 0; in sepol_sidtab_init()
207 if (s->next_sid == UINT_MAX || s->shutdown) { in sepol_sidtab_context_to_sid()
283 dst->shutdown = 0; in sepol_sidtab_set()
290 s->shutdown = 1; in sepol_sidtab_shutdown()
/third_party/python/Lib/concurrent/futures/
H A Dthread.py98 # - The executor that owns the worker has been shutdown.
167 raise RuntimeError('cannot schedule new futures after shutdown')
170 'interpreter shutdown')
216 def shutdown(self, wait=True, *, cancel_futures=False): member in ThreadPoolExecutor
236 shutdown.__doc__ = _base.Executor.shutdown.__doc__
/third_party/rust/crates/nix/test/
H A Dtest_sendfile.rs96 wr.shutdown(Shutdown::Both).unwrap(); in test_sendfile_freebsd()
145 wr.shutdown(Shutdown::Both).unwrap(); in test_sendfile_dragonfly()
194 wr.shutdown(Shutdown::Both).unwrap(); in test_sendfile_darwin()
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_network.c61 shutdown(s, SHUT_RDWR); in u_socket_close()
64 shutdown(s, SD_BOTH); in u_socket_close()

Completed in 231 milliseconds

12345678910>>...12