Searched defs:Bind (Results 51 - 75 of 115) sorted by path

12345

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/socket/
H A Dsocket_node.cc318 Error SocketNode::Bind(const struct sockaddr* addr, socklen_t len) { function in class:nacl_io::SocketNode
H A Dtcp_node.cc440 Error TcpNode::Bind(const struct sockaddr* addr, socklen_t len) { function in class:nacl_io::TcpNode
448 int err = TCPInterface()->Bind(
H A Dudp_node.cc202 Error UdpNode::Bind(const struct sockaddr* addr, socklen_t len) { function in class:nacl_io::UdpNode
215 UDPInterface()->Bind(socket_resource_, out_addr, PP_BlockUntilComplete());
290 Bind(reinterpret_cast<const struct sockaddr*>(&addr), sizeof(addr));
/external/chromium_org/native_client_sdk/src/tests/nacl_io_socket_test/
H A Dsocket_test.cc74 int Bind(int fd, uint32_t ip, uint16_t port) { function in class:__anon8946::SocketTest
205 TEST_F(SocketTestUDP, Bind) {
206 // Bind away.
207 EXPECT_EQ(0, Bind(sock1_, LOCAL_HOST, PORT1));
210 EXPECT_EQ(EINVAL, Bind(sock1_, LOCAL_HOST, PORT1));
213 EXPECT_EQ(EADDRINUSE, Bind(sock2_, LOCAL_HOST, PORT1));
215 // Bind with a wildcard.
216 EXPECT_EQ(0, Bind(sock2_, LOCAL_HOST, ANY_PORT));
219 EXPECT_EQ(EINVAL, Bind(sock2_, LOCAL_HOST, PORT1));
229 EXPECT_EQ(0, Bind(sock1
[all...]
/external/chromium_org/net/dns/
H A Dmdns_client.cc27 int Bind(const IPEndPoint& multicast_addr, function in namespace:net::__anon9211
93 int rv = Bind(multicast_addr, interface_index, socket.get());
96 VLOG(1) << "Bind failed, endpoint=" << multicast_addr.ToStringWithoutPort()
/external/chromium_org/net/socket/
H A Dsocket_libevent.cc116 int SocketLibevent::Bind(const SockaddrStorage& address) { function in class:net::SocketLibevent
H A Dtcp_client_socket.cc42 int TCPClientSocket::Bind(const IPEndPoint& address) { function in class:net::TCPClientSocket
56 result = socket_->Bind(address);
134 result = socket_->Bind(*bind_address_);
145 base::Bind(&TCPClientSocket::DidCompleteConnect,
251 CompletionCallback read_callback = base::Bind(
267 CompletionCallback write_callback = base::Bind(
H A Dtcp_socket_libevent.cc124 base::Bind(SystemSupportsTCPFastOpen),
125 base::Bind(RegisterTCPFastOpenIntentAndSupport, user_enabled));
175 int TCPSocketLibevent::Bind(const IPEndPoint& address) { function in class:net::TCPSocketLibevent
182 return socket_->Bind(storage);
202 base::Bind(&TCPSocketLibevent::AcceptCompleted,
231 base::Bind(&TCPSocketLibevent::ConnectCompleted,
266 base::Bind(&TCPSocketLibevent::ReadCompleted,
285 base::Bind(&TCPSocketLibevent::WriteCompleted,
H A Dtcp_socket_win.cc350 int TCPSocketWin::Bind(const IPEndPoint& address) { function in class:net::TCPSocketWin
/external/chromium_org/net/tools/quic/test_tools/
H A Dquic_test_client.cc525 void QuicTestClient::Bind(IPEndPoint* local_address) { function in class:net::tools::test::QuicTestClient
526 DLOG(WARNING) << "Bind will be done during connect";
/external/chromium_org/net/udp/
H A Dudp_socket_libevent.cc297 int UDPSocketLibevent::Bind(const IPEndPoint& address) { function in class:net::UDPSocketLibevent
H A Dudp_socket_win.cc446 int UDPSocketWin::Bind(const IPEndPoint& address) { function in class:net::UDPSocketWin
/external/chromium_org/ppapi/c/
H A Dppb_tcp_socket.h116 int32_t (*Bind)(PP_Resource tcp_socket, member in struct:PPB_TCPSocket_1_1
H A Dppb_udp_socket.h39 * This option can only be set before calling <code>Bind()</code>.
45 * This option can only be set before calling <code>Bind()</code>.
51 * This option can only be set after a successful <code>Bind()</code> call.
61 * This option can only be set after a successful <code>Bind()</code> call.
82 * <code>udp-bind</code> is required for <code>Bind()</code>; subrule
121 int32_t (*Bind)(PP_Resource udp_socket, member in struct:PPB_UDPSocket_1_0
182 * accessed. It is not valid to call <code>Bind()</code> again.
/external/chromium_org/ppapi/c/private/
H A Dppb_udp_socket_private.h67 * Bind(). Possible values for |name|, |value| and |value|'s type
78 int32_t (*Bind)(PP_Resource udp_socket, member in struct:PPB_UDPSocket_Private_0_4
82 * call to Bind must be called first. Returns PP_FALSE if Bind
88 * Bind must be called first. |callback| is invoked when recvfrom
102 * bound(has already called Bind). The callback |callback| is
119 int32_t (*Bind)(PP_Resource udp_socket, member in struct:PPB_UDPSocket_Private_0_2
139 int32_t (*Bind)(PP_Resource udp_socket, member in struct:PPB_UDPSocket_Private_0_3
/external/chromium_org/ppapi/cpp/private/
H A Dudp_socket_private.cc54 int32_t UDPSocketPrivate::Bind(const PP_NetAddress_Private* addr, function in class:pp::UDPSocketPrivate
57 return get_interface<PPB_UDPSocket_Private_0_4>()->Bind(
61 return get_interface<PPB_UDPSocket_Private_0_3>()->Bind(
/external/chromium_org/ppapi/cpp/
H A Dtcp_socket.cc60 int32_t TCPSocket::Bind(const NetAddress& addr, function in class:pp::TCPSocket
63 return get_interface<PPB_TCPSocket_1_1>()->Bind(
H A Dudp_socket.cc53 int32_t UDPSocket::Bind(const NetAddress& addr, function in class:pp::UDPSocket
56 return get_interface<PPB_UDPSocket_1_0>()->Bind(
/external/chromium_org/ppapi/proxy/
H A Dtcp_socket_resource.cc49 int32_t TCPSocketResource::Bind(PP_Resource addr, function in class:ppapi::proxy::TCPSocketResource
H A Dudp_socket_private_resource.cc48 int32_t UDPSocketPrivateResource::Bind( function in class:ppapi::proxy::UDPSocketPrivateResource
H A Dudp_socket_resource.cc34 int32_t UDPSocketResource::Bind(PP_Resource addr, function in class:ppapi::proxy::UDPSocketResource
/external/chromium_org/ppapi/thunk/
H A Dppb_tcp_socket_thunk.cc44 int32_t Bind(PP_Resource tcp_socket, function in namespace:ppapi::thunk::__anon10307
47 VLOG(4) << "PPB_TCPSocket::Bind()";
51 return enter.SetResult(enter.object()->Bind(addr, enter.callback()));
163 &Bind,
H A Dppb_udp_socket_private_thunk.cc42 int32_t Bind(PP_Resource udp_socket, function in namespace:ppapi::thunk::__anon10310
48 return enter.SetResult(enter.object()->Bind(addr, enter.callback()));
103 &Bind,
113 &Bind,
125 &Bind,
H A Dppb_udp_socket_thunk.cc34 int32_t Bind(PP_Resource udp_socket, function in namespace:ppapi::thunk::__anon10311
37 VLOG(4) << "PPB_UDPSocket::Bind()";
41 return enter.SetResult(enter.object()->Bind(addr, enter.callback()));
106 &Bind,
/external/chromium_org/storage/browser/quota/
H A Dquota_manager.cc367 return base::Bind(&UsageAndQuotaCallbackDispatcher::DidGetHostUsage,
374 return base::Bind(
382 return base::Bind(&UsageAndQuotaCallbackDispatcher::DidGetQuota,
389 return base::Bind(&UsageAndQuotaCallbackDispatcher::DidGetAvailableSpace,
481 base::Bind(&GetUsageInfoTask::DidGetGlobalUsage, variable
485 base::Bind(&GetUsageInfoTask::DidGetGlobalUsage, variable
489 base::Bind(&GetUsageInfoTask::DidGetGlobalUsage, variable
560 base::Bind(&OriginDataDeleter::DidDeleteOriginData,
639 base::Bind(&HostDataDeleter::DidGetOriginsForHost,
680 base::Bind(
[all...]

Completed in 4550 milliseconds

12345