Searched defs:peer_endpoint (Results 1 - 12 of 12) sorted by relevance

/external/parameter-framework/asio/include/asio/detail/
H A Dreactive_socket_accept_op.hpp35 typename Protocol::endpoint* peer_endpoint, func_type complete_func)
41 peer_endpoint_(peer_endpoint)
86 typename Protocol::endpoint* peer_endpoint, Handler& handler)
88 protocol, peer_endpoint, &reactive_socket_accept_op::do_complete),
33 reactive_socket_accept_op_base(socket_type socket, socket_ops::state_type state, Socket& peer, const Protocol& protocol, typename Protocol::endpoint* peer_endpoint, func_type complete_func) argument
84 reactive_socket_accept_op(socket_type socket, socket_ops::state_type state, Socket& peer, const Protocol& protocol, typename Protocol::endpoint* peer_endpoint, Handler& handler) argument
H A Dreactive_socket_service.hpp365 Socket& peer, endpoint_type* peer_endpoint, asio::error_code& ec)
374 std::size_t addr_len = peer_endpoint ? peer_endpoint->capacity() : 0;
376 impl.state_, peer_endpoint ? peer_endpoint->data() : 0,
377 peer_endpoint ? &addr_len : 0, ec));
382 if (peer_endpoint)
383 peer_endpoint->resize(addr_len);
391 // Start an asynchronous accept. The peer and peer_endpoint objects
395 endpoint_type* peer_endpoint, Handle
364 accept(implementation_type& impl, Socket& peer, endpoint_type* peer_endpoint, asio::error_code& ec) argument
394 async_accept(implementation_type& impl, Socket& peer, endpoint_type* peer_endpoint, Handler& handler) argument
415 connect(implementation_type& impl, const endpoint_type& peer_endpoint, asio::error_code& ec) argument
425 async_connect(implementation_type& impl, const endpoint_type& peer_endpoint, Handler& handler) argument
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dreactive_socket_accept_op.hpp35 typename Protocol::endpoint* peer_endpoint, func_type complete_func)
41 peer_endpoint_(peer_endpoint)
86 typename Protocol::endpoint* peer_endpoint, Handler& handler)
88 protocol, peer_endpoint, &reactive_socket_accept_op::do_complete),
33 reactive_socket_accept_op_base(socket_type socket, socket_ops::state_type state, Socket& peer, const Protocol& protocol, typename Protocol::endpoint* peer_endpoint, func_type complete_func) argument
84 reactive_socket_accept_op(socket_type socket, socket_ops::state_type state, Socket& peer, const Protocol& protocol, typename Protocol::endpoint* peer_endpoint, Handler& handler) argument
H A Dreactive_socket_service.hpp365 Socket& peer, endpoint_type* peer_endpoint, asio::error_code& ec)
374 std::size_t addr_len = peer_endpoint ? peer_endpoint->capacity() : 0;
376 impl.state_, peer_endpoint ? peer_endpoint->data() : 0,
377 peer_endpoint ? &addr_len : 0, ec));
382 if (peer_endpoint)
383 peer_endpoint->resize(addr_len);
391 // Start an asynchronous accept. The peer and peer_endpoint objects
395 endpoint_type* peer_endpoint, Handle
364 accept(implementation_type& impl, Socket& peer, endpoint_type* peer_endpoint, asio::error_code& ec) argument
394 async_accept(implementation_type& impl, Socket& peer, endpoint_type* peer_endpoint, Handler& handler) argument
415 connect(implementation_type& impl, const endpoint_type& peer_endpoint, asio::error_code& ec) argument
425 async_connect(implementation_type& impl, const endpoint_type& peer_endpoint, Handler& handler) argument
[all...]
/external/parameter-framework/asio/include/asio/
H A Dbasic_socket.hpp616 * @param peer_endpoint The remote endpoint to which the socket will be
629 void connect(const endpoint_type& peer_endpoint) argument
635 peer_endpoint.protocol(), ec);
638 this->get_service().connect(this->get_implementation(), peer_endpoint, ec);
652 * @param peer_endpoint The remote endpoint to which the socket will be
670 asio::error_code connect(const endpoint_type& peer_endpoint, argument
676 peer_endpoint.protocol(), ec))
683 this->get_implementation(), peer_endpoint, ec);
695 * @param peer_endpoint The remote endpoint to which the socket will be
730 async_connect(const endpoint_type& peer_endpoint, argument
[all...]
H A Dbasic_socket_acceptor.hpp1025 * @param peer_endpoint An endpoint object which will receive the endpoint of
1041 endpoint_type& peer_endpoint)
1045 peer, &peer_endpoint, ec);
1058 * @param peer_endpoint An endpoint object which will receive the endpoint of
1080 endpoint_type& peer_endpoint, asio::error_code& ec)
1083 this->get_implementation(), peer, &peer_endpoint, ec);
1096 * @param peer_endpoint An endpoint object into which the endpoint of the
1097 * remote peer will be written. Ownership of the peer_endpoint object is
1116 endpoint_type& peer_endpoint, ASIO_MOVE_ARG(AcceptHandler) handler)
1123 &peer_endpoint, ASIO_MOVE_CAS
1040 accept(basic_socket<protocol_type, SocketService>& peer, endpoint_type& peer_endpoint) argument
1078 accept( basic_socket<protocol_type, SocketService>& peer, endpoint_type& peer_endpoint, asio::error_code& ec) argument
1115 async_accept(basic_socket<protocol_type, SocketService>& peer, endpoint_type& peer_endpoint, ASIO_MOVE_ARG(AcceptHandler) handler) argument
[all...]
H A Dsocket_acceptor_service.hpp225 endpoint_type* peer_endpoint, asio::error_code& ec,
228 return service_impl_.accept(impl, peer, peer_endpoint, ec);
237 endpoint_type* peer_endpoint,
245 service_impl_.async_accept(impl, peer, peer_endpoint, init.handler);
223 accept(implementation_type& impl, basic_socket<Protocol1, SocketService>& peer, endpoint_type* peer_endpoint, asio::error_code& ec, typename enable_if<is_convertible<Protocol, Protocol1>::value>::type* = 0) argument
235 async_accept(implementation_type& impl, basic_socket<Protocol1, SocketService>& peer, endpoint_type* peer_endpoint, ASIO_MOVE_ARG(AcceptHandler) handler, typename enable_if<is_convertible<Protocol, Protocol1>::value>::type* = 0) argument
H A Dstream_socket_service.hpp177 const endpoint_type& peer_endpoint, asio::error_code& ec)
179 return service_impl_.connect(impl, peer_endpoint, ec);
187 const endpoint_type& peer_endpoint,
194 service_impl_.async_connect(impl, peer_endpoint, init.handler);
176 connect(implementation_type& impl, const endpoint_type& peer_endpoint, asio::error_code& ec) argument
186 async_connect(implementation_type& impl, const endpoint_type& peer_endpoint, ASIO_MOVE_ARG(ConnectHandler) handler) argument
/external/parameter-framework/asio-1.10.6/include/asio/
H A Dbasic_socket.hpp616 * @param peer_endpoint The remote endpoint to which the socket will be
629 void connect(const endpoint_type& peer_endpoint) argument
635 peer_endpoint.protocol(), ec);
638 this->get_service().connect(this->get_implementation(), peer_endpoint, ec);
652 * @param peer_endpoint The remote endpoint to which the socket will be
670 asio::error_code connect(const endpoint_type& peer_endpoint, argument
676 peer_endpoint.protocol(), ec))
683 this->get_implementation(), peer_endpoint, ec);
695 * @param peer_endpoint The remote endpoint to which the socket will be
730 async_connect(const endpoint_type& peer_endpoint, argument
[all...]
H A Dbasic_socket_acceptor.hpp1025 * @param peer_endpoint An endpoint object which will receive the endpoint of
1041 endpoint_type& peer_endpoint)
1045 peer, &peer_endpoint, ec);
1058 * @param peer_endpoint An endpoint object which will receive the endpoint of
1080 endpoint_type& peer_endpoint, asio::error_code& ec)
1083 this->get_implementation(), peer, &peer_endpoint, ec);
1096 * @param peer_endpoint An endpoint object into which the endpoint of the
1097 * remote peer will be written. Ownership of the peer_endpoint object is
1116 endpoint_type& peer_endpoint, ASIO_MOVE_ARG(AcceptHandler) handler)
1123 &peer_endpoint, ASIO_MOVE_CAS
1040 accept(basic_socket<protocol_type, SocketService>& peer, endpoint_type& peer_endpoint) argument
1078 accept( basic_socket<protocol_type, SocketService>& peer, endpoint_type& peer_endpoint, asio::error_code& ec) argument
1115 async_accept(basic_socket<protocol_type, SocketService>& peer, endpoint_type& peer_endpoint, ASIO_MOVE_ARG(AcceptHandler) handler) argument
[all...]
H A Dsocket_acceptor_service.hpp225 endpoint_type* peer_endpoint, asio::error_code& ec,
228 return service_impl_.accept(impl, peer, peer_endpoint, ec);
237 endpoint_type* peer_endpoint,
245 service_impl_.async_accept(impl, peer, peer_endpoint, init.handler);
223 accept(implementation_type& impl, basic_socket<Protocol1, SocketService>& peer, endpoint_type* peer_endpoint, asio::error_code& ec, typename enable_if<is_convertible<Protocol, Protocol1>::value>::type* = 0) argument
235 async_accept(implementation_type& impl, basic_socket<Protocol1, SocketService>& peer, endpoint_type* peer_endpoint, ASIO_MOVE_ARG(AcceptHandler) handler, typename enable_if<is_convertible<Protocol, Protocol1>::value>::type* = 0) argument
H A Dstream_socket_service.hpp177 const endpoint_type& peer_endpoint, asio::error_code& ec)
179 return service_impl_.connect(impl, peer_endpoint, ec);
187 const endpoint_type& peer_endpoint,
194 service_impl_.async_connect(impl, peer_endpoint, init.handler);
176 connect(implementation_type& impl, const endpoint_type& peer_endpoint, asio::error_code& ec) argument
186 async_connect(implementation_type& impl, const endpoint_type& peer_endpoint, ASIO_MOVE_ARG(ConnectHandler) handler) argument

Completed in 556 milliseconds