Home
last modified time | relevance | path

Searched refs:new_session (Results 1 – 25 of 29) sorted by relevance

12

/third_party/boost/libs/asio/example/cpp03/buffers/
Dreference_counted.cpp83 session_ptr new_session(new session(io_context_)); in server() local
84 acceptor_.async_accept(new_session->socket(), in server()
85 boost::bind(&server::handle_accept, this, new_session, in server()
89 void handle_accept(session_ptr new_session, in handle_accept() argument
94 new_session->start(); in handle_accept()
97 new_session.reset(new session(io_context_)); in handle_accept()
98 acceptor_.async_accept(new_session->socket(), in handle_accept()
99 boost::bind(&server::handle_accept, this, new_session, in handle_accept()
/third_party/boost/doc/html/boost_asio/example/cpp03/buffers/
Dreference_counted.cpp83 session_ptr new_session(new session(io_context_)); in server() local
84 acceptor_.async_accept(new_session->socket(), in server()
85 boost::bind(&server::handle_accept, this, new_session, in server()
89 void handle_accept(session_ptr new_session, in handle_accept() argument
94 new_session->start(); in handle_accept()
97 new_session.reset(new session(io_context_)); in handle_accept()
98 acceptor_.async_accept(new_session->socket(), in handle_accept()
99 boost::bind(&server::handle_accept, this, new_session, in handle_accept()
/third_party/boost/libs/asio/example/cpp03/local/
Dstream_server.cpp88 session_ptr new_session(new session(io_context_)); in server() local
89 acceptor_.async_accept(new_session->socket(), in server()
90 boost::bind(&server::handle_accept, this, new_session, in server()
94 void handle_accept(session_ptr new_session, in handle_accept() argument
99 new_session->start(); in handle_accept()
102 new_session.reset(new session(io_context_)); in handle_accept()
103 acceptor_.async_accept(new_session->socket(), in handle_accept()
104 boost::bind(&server::handle_accept, this, new_session, in handle_accept()
/third_party/boost/doc/html/boost_asio/example/cpp03/local/
Dstream_server.cpp88 session_ptr new_session(new session(io_context_)); in server() local
89 acceptor_.async_accept(new_session->socket(), in server()
90 boost::bind(&server::handle_accept, this, new_session, in server()
94 void handle_accept(session_ptr new_session, in handle_accept() argument
99 new_session->start(); in handle_accept()
102 new_session.reset(new session(io_context_)); in handle_accept()
103 acceptor_.async_accept(new_session->socket(), in handle_accept()
104 boost::bind(&server::handle_accept, this, new_session, in handle_accept()
/third_party/boost/doc/html/boost_asio/example/cpp03/echo/
Dasync_tcp_echo_server.cpp89 session* new_session = new session(io_context_); in start_accept() local
90 acceptor_.async_accept(new_session->socket(), in start_accept()
91 boost::bind(&server::handle_accept, this, new_session, in start_accept()
95 void handle_accept(session* new_session, in handle_accept() argument
100 new_session->start(); in handle_accept()
104 delete new_session; in handle_accept()
/third_party/boost/libs/asio/example/cpp03/echo/
Dasync_tcp_echo_server.cpp89 session* new_session = new session(io_context_); in start_accept() local
90 acceptor_.async_accept(new_session->socket(), in start_accept()
91 boost::bind(&server::handle_accept, this, new_session, in start_accept()
95 void handle_accept(session* new_session, in handle_accept() argument
100 new_session->start(); in handle_accept()
104 delete new_session; in handle_accept()
/third_party/boost/doc/html/boost_asio/example/cpp03/allocation/
Dserver.cpp237 session_ptr new_session(new session(io_context_)); in server() local
238 acceptor_.async_accept(new_session->socket(), in server()
239 boost::bind(&server::handle_accept, this, new_session, in server()
243 void handle_accept(session_ptr new_session, in handle_accept() argument
248 new_session->start(); in handle_accept()
251 new_session.reset(new session(io_context_)); in handle_accept()
252 acceptor_.async_accept(new_session->socket(), in handle_accept()
253 boost::bind(&server::handle_accept, this, new_session, in handle_accept()
/third_party/boost/libs/asio/example/cpp03/allocation/
Dserver.cpp237 session_ptr new_session(new session(io_context_)); in server() local
238 acceptor_.async_accept(new_session->socket(), in server()
239 boost::bind(&server::handle_accept, this, new_session, in server()
243 void handle_accept(session_ptr new_session, in handle_accept() argument
248 new_session->start(); in handle_accept()
251 new_session.reset(new session(io_context_)); in handle_accept()
252 acceptor_.async_accept(new_session->socket(), in handle_accept()
253 boost::bind(&server::handle_accept, this, new_session, in handle_accept()
/third_party/boost/doc/html/boost_asio/example/cpp03/ssl/
Dserver.cpp120 session* new_session = new session(io_context_, context_); in start_accept() local
121 acceptor_.async_accept(new_session->socket(), in start_accept()
122 boost::bind(&server::handle_accept, this, new_session, in start_accept()
126 void handle_accept(session* new_session, in handle_accept() argument
131 new_session->start(); in handle_accept()
135 delete new_session; in handle_accept()
/third_party/boost/libs/asio/example/cpp03/ssl/
Dserver.cpp120 session* new_session = new session(io_context_, context_); in start_accept() local
121 acceptor_.async_accept(new_session->socket(), in start_accept()
122 boost::bind(&server::handle_accept, this, new_session, in start_accept()
126 void handle_accept(session* new_session, in handle_accept() argument
131 new_session->start(); in handle_accept()
135 delete new_session; in handle_accept()
/third_party/skia/third_party/externals/microhttpd/src/testspdy/
Dtest_session_timeout.c46 int new_session; variable
91 if(!new_session)do_sleep = 1; in new_session_cb()
92 new_session = 1; in new_session_cb()
163 if(new_session && !closed_session) in parentproc()
249 if(!new_session || !closed_session) in parentproc()
/third_party/boost/doc/html/boost_asio/example/cpp03/spawn/
Decho_server.cpp92 boost::shared_ptr<session> new_session(new session(io_context)); in do_accept() local
93 acceptor.async_accept(new_session->socket(), yield[ec]); in do_accept()
94 if (!ec) new_session->go(); in do_accept()
/third_party/boost/libs/asio/example/cpp03/spawn/
Decho_server.cpp92 boost::shared_ptr<session> new_session(new session(io_context)); in do_accept() local
93 acceptor.async_accept(new_session->socket(), yield[ec]); in do_accept()
94 if (!ec) new_session->go(); in do_accept()
/third_party/boost/doc/html/boost_asio/example/cpp03/chat/
Dchat_server.cpp192 chat_session_ptr new_session(new chat_session(io_context_, room_)); in start_accept() local
193 acceptor_.async_accept(new_session->socket(), in start_accept()
194 boost::bind(&chat_server::handle_accept, this, new_session, in start_accept()
/third_party/boost/libs/asio/example/cpp03/chat/
Dchat_server.cpp192 chat_session_ptr new_session(new chat_session(io_context_, room_)); in start_accept() local
193 acceptor_.async_accept(new_session->socket(), in start_accept()
194 boost::bind(&chat_server::handle_accept, this, new_session, in start_accept()
/third_party/boost/doc/html/boost_asio/example/cpp03/timeouts/
Dserver.cpp378 tcp_session_ptr new_session(new tcp_session(io_context_, channel_)); in start_accept() local
380 acceptor_.async_accept(new_session->socket(), in start_accept()
382 this, new_session, boost::placeholders::_1)); in start_accept()
/third_party/boost/libs/asio/example/cpp03/timeouts/
Dserver.cpp378 tcp_session_ptr new_session(new tcp_session(io_context_, channel_)); in start_accept() local
380 acceptor_.async_accept(new_session->socket(), in start_accept()
382 this, new_session, boost::placeholders::_1)); in start_accept()
/third_party/toybox/toys/pending/
Dtelnetd.c179 static int new_session(int sockfd) in new_session() function
319 pty_fd = new_session(master_fd); //master_fd = 0 in telnetd_main()
366 pty_fd = new_session(new_fd); in telnetd_main()
/third_party/openssl/test/ossl_shim/
Dossl_shim.cc90 bssl::UniquePtr<SSL_SESSION> new_session; member
368 GetTestState(ssl)->new_session.reset(session); in NewSessionCallback()
1198 *out_session = std::move(GetTestState(ssl.get())->new_session); in DoExchange()
/third_party/f2fs-tools/tools/
Df2fscrypt.c872 CMD(new_session),
/third_party/e2fsprogs/misc/
De4crypt.c841 CMD(new_session),
/third_party/openssl/ssl/statem/
Dstatem_srvr.c1405 s->new_session = 1; in tls_process_client_hello()
1824 (s->new_session && in tls_early_post_process_client_hello()
Dextensions_clnt.c229 if (!s->new_session && s->session != NULL in tls_construct_ctos_session_ticket()
Dstatem_lib.c1076 s->new_session = 0; in tls_finish_handshake()
/third_party/openssl/ssl/
Dssl_local.h1108 int new_session; member

12