HomeSort by relevance Sort by last modified time
    Searched refs:ClientSocket (Results 1 - 25 of 58) sorted by null

1 2 3

  /cts/suite/audio_quality/lib/include/
ClientSocket.h 21 class ClientSocket {
23 ClientSocket();
24 virtual ~ClientSocket();
ClientInterface.h 24 #include "ClientSocket.h"
35 virtual ClientSocket& getSocket() = 0;
  /cts/suite/audio_quality/lib/src/
ClientImpl.h 23 #include "ClientSocket.h"
34 virtual ClientSocket& getSocket() {
43 ClientSocket mSocket;
ClientSocket.cpp 26 #include "ClientSocket.h"
28 ClientSocket::ClientSocket()
35 ClientSocket::~ClientSocket()
40 bool ClientSocket::init(const char* hostIp, int port, bool enableTimeout)
42 LOGD("ClientSocket::init");
76 bool ClientSocket::readData(char* data, int len, int timeoutInMs)
139 bool ClientSocket::sendData(const char* data, int len)
158 void ClientSocket::release(
    [all...]
SignalProcessingImpl.h 24 #include "ClientSocket.h"
49 UniquePtr<ClientSocket> mSocket;
  /external/chromium/net/socket/
server_socket.h 13 class ClientSocket;
30 virtual int Accept(scoped_ptr<ClientSocket>* socket,
client_socket.cc 50 ClientSocket::UseHistory::UseHistory()
57 ClientSocket::UseHistory::~UseHistory() {
61 void ClientSocket::UseHistory::Reset() {
69 void ClientSocket::UseHistory::set_was_ever_connected() {
74 void ClientSocket::UseHistory::set_was_used_to_convey_data() {
80 void ClientSocket::UseHistory::set_subresource_speculation() {
99 void ClientSocket::UseHistory::set_omnibox_speculation() {
106 bool ClientSocket::UseHistory::was_used_to_convey_data() const {
111 void ClientSocket::UseHistory::EmitPreconnectionHistograms() const {
147 void ClientSocket::LogByteTransfer(const BoundNetLog& net_log
    [all...]
client_socket_factory.h 18 class ClientSocket;
26 // An interface used to instantiate ClientSocket objects. Used to facilitate
34 virtual ClientSocket* CreateTransportClientSocket(
47 // Deprecated function (http://crbug.com/37810) that takes a ClientSocket.
49 ClientSocket* transport_socket,
tcp_server_socket_libevent.h 30 virtual int Accept(scoped_ptr<ClientSocket>* socket,
38 int AcceptInternal(scoped_ptr<ClientSocket>* socket);
45 scoped_ptr<ClientSocket>* accept_socket_;
tcp_server_socket_win.h 32 virtual int Accept(scoped_ptr<ClientSocket>* socket,
39 int AcceptInternal(scoped_ptr<ClientSocket>* socket);
47 scoped_ptr<ClientSocket>* accept_socket_;
client_socket.h 17 class ClientSocket : public Socket {
19 virtual ~ClientSocket() {}
92 // ClientSocket should forward any potential settings to their underlying
client_socket_handle.h 26 // A container for a ClientSocket.
87 // ClientSocket.
105 void set_socket(ClientSocket* s) { socket_.reset(s); }
134 ClientSocket* socket() { return socket_.get(); }
135 ClientSocket* release_socket() { return socket_.release(); }
166 scoped_ptr<ClientSocket> socket_;
tcp_server_socket_unittest.cc 44 static IPEndPoint GetPeerAddress(ClientSocket* socket) {
65 scoped_ptr<ClientSocket> accepted_socket;
83 scoped_ptr<ClientSocket> accepted_socket;
106 scoped_ptr<ClientSocket> accepted_socket;
126 scoped_ptr<ClientSocket> accepted_socket2;
ssl_client_socket.h 45 class SSLClientSocket : public ClientSocket {
client_socket_factory.cc 55 virtual ClientSocket* CreateTransportClientSocket(
124 // Deprecated function (http://crbug.com/37810) that takes a ClientSocket.
126 ClientSocket* transport_socket,
client_socket_pool.h 25 class ClientSocket;
53 // ClientSocket was reused, then ClientSocketPool will call
96 // Otherwise, the ClientSocket is destroyed. |id| is used to differentiate
101 ClientSocket* socket,
socks5_client_socket.h 28 // This ClientSocket is used to setup a SOCKSv5 handshake with a socks proxy.
30 class SOCKS5ClientSocket : public ClientSocket {
44 // Deprecated constructor (http://crbug.com/37810) that takes a ClientSocket.
45 SOCKS5ClientSocket(ClientSocket* transport_socket,
51 // ClientSocket methods:
socks_client_socket.h 29 class SOCKSClientSocket : public ClientSocket {
40 // Deprecated constructor (http://crbug.com/37810) that takes a ClientSocket.
41 SOCKSClientSocket(ClientSocket* transport_socket,
48 // ClientSocket methods:
transport_client_socket_pool.h 131 scoped_ptr<ClientSocket> transport_socket_;
133 scoped_ptr<ClientSocket> fallback_transport_socket_;
172 ClientSocket* socket,
tcp_client_socket_win.h 21 class TCPClientSocketWin : public ClientSocket, base::NonThreadSafe {
39 // ClientSocket methods:
client_socket_pool_base.h 92 ClientSocket* ReleaseSocket() { return socket_.release(); }
116 void set_socket(ClientSocket* socket);
117 ClientSocket* socket() { return socket_.get(); }
141 scoped_ptr<ClientSocket> socket_;
247 ClientSocket* socket,
333 ClientSocket* socket;
467 void HandOutSocket(ClientSocket* socket,
475 void AddIdleSocket(ClientSocket* socket, Group* group);
705 void ReleaseSocket(const std::string& group_name, ClientSocket* socket,
  /external/chromium/net/http/
proxy_client_socket.h 16 class ProxyClientSocket : public ClientSocket {
  /cts/suite/audio_quality/lib/include/audio/
AudioProtocol.h 26 #include "ClientSocket.h"
79 static bool handleReplyHeader(ClientSocket& socket, uint32_t* data, CommandId& id);
82 AudioProtocol(ClientSocket& socket, uint32_t command)
99 ClientSocket& mSocket;
105 CmdDownload(ClientSocket& socket)
114 CmdStartPlayback(ClientSocket& socket)
122 CmdStopPlayback(ClientSocket& socket)
129 CmdStartRecording(ClientSocket& socket)
140 CmdStopRecording(ClientSocket& socket)
147 CmdGetDeviceInfo(ClientSocket& socket
    [all...]
RemoteAudio.h 30 #include "ClientSocket.h"
43 RemoteAudio(ClientSocket& socket);
102 ClientSocket& mSocket;
  /external/chromium/net/ftp/
ftp_network_transaction.h 24 class ClientSocket;
242 scoped_ptr<ClientSocket> ctrl_socket_;
243 scoped_ptr<ClientSocket> data_socket_;

Completed in 2625 milliseconds

1 2 3