Home
last modified time | relevance | path

Searched refs:BaseConnection (Results 1 – 4 of 4) sorted by relevance

/device/google/cuttlefish/host/frontend/gcastv2/https/
DBaseConnection.cpp22 BaseConnection::BaseConnection(std::shared_ptr<RunLoop> runLoop, int sock) in BaseConnection() function in BaseConnection
29 void BaseConnection::run() { in run()
33 void BaseConnection::receiveClientRequest() { in receiveClientRequest()
34 mSocket->postRecv(makeSafeCallback(this, &BaseConnection::onClientRequest)); in receiveClientRequest()
37 void BaseConnection::onClientRequest() { in onClientRequest()
73 void BaseConnection::send(const void *_data, size_t size) { in send()
80 makeSafeCallback(this, &BaseConnection::sendOutputData)); in send()
84 void BaseConnection::sendOutputData() { in sendOutputData()
114 makeSafeCallback(this, &BaseConnection::sendOutputData)); in sendOutputData()
119 int BaseConnection::fd() const { in fd()
DAndroid.bp20 "BaseConnection.cpp",
/device/google/cuttlefish/host/frontend/gcastv2/https/include/https/
DBaseConnection.h25 struct BaseConnection : public std::enable_shared_from_this<BaseConnection> { struct
26 explicit BaseConnection(std::shared_ptr<RunLoop> runLoop, int sock);
27 virtual ~BaseConnection() = default;
31 BaseConnection(const BaseConnection &) = delete;
32 BaseConnection &operator=(const BaseConnection &) = delete; argument
/device/google/cuttlefish/host/frontend/webrtc/
Dadb_handler.cpp31 struct AdbHandler::AdbConnection : public BaseConnection {
50 : BaseConnection(runLoop, sock), mParent(parent) {} in AdbConnection()
71 BaseConnection::send(_data, size); in send()