Home
last modified time | relevance | path

Searched refs:Connection (Results 1 – 13 of 13) sorted by relevance

/system/core/adb/
Dtransport_benchmark.cpp41 std::unique_ptr<Connection> MakeConnection(unique_fd fd);
44 std::unique_ptr<Connection> MakeConnection<FdConnection>(unique_fd fd) { in MakeConnection()
50 std::unique_ptr<Connection> MakeConnection<NonblockingFdConnection>(unique_fd fd) { in MakeConnection()
51 return Connection::FromFd(std::move(fd)); in MakeConnection()
66 client->SetReadCallback([](Connection*, std::unique_ptr<apacket>) -> bool { return true; }); in BM_Connection_Unidirectional() argument
67 … server->SetReadCallback([&received_bytes](Connection*, std::unique_ptr<apacket> packet) -> bool { in BM_Connection_Unidirectional() argument
73 [](Connection*, const std::string& error) { LOG(INFO) << "client closed: " << error; }); in BM_Connection_Unidirectional() argument
75 [](Connection*, const std::string& error) { LOG(INFO) << "server closed: " << error; }); in BM_Connection_Unidirectional() argument
124 … client->SetReadCallback([&received_bytes](Connection*, std::unique_ptr<apacket> packet) -> bool { in BM_Connection_Echo() argument
129 static const auto handle_packet = [](Connection* connection, std::unique_ptr<apacket> packet) { in BM_Connection_Echo()
[all …]
Dtransport.h76 struct Connection { struct
77 Connection() = default;
78 virtual ~Connection() = default;
84 using ReadCallback = std::function<bool(Connection*, std::unique_ptr<apacket>)>; argument
91 using ErrorCallback = std::function<void(Connection*, const std::string&)>; argument
109 static std::unique_ptr<Connection> FromFd(unique_fd fd); argument
135 struct BlockingConnectionAdapter : public Connection {
256 void SetConnection(std::unique_ptr<Connection> connection);
257 std::shared_ptr<Connection> connection() { in connection()
357 std::shared_ptr<Connection> connection_ GUARDED_BY(mutex_);
Dtransport_fd.cpp46 struct NonblockingFdConnection : public Connection {
235 std::unique_ptr<Connection> Connection::FromFd(unique_fd fd) { in FromFd()
Dtransport.cpp260 void Connection::Reset() { in Reset()
684 t->connection()->SetReadCallback([t](Connection*, std::unique_ptr<apacket> p) { in transport_registration_func() argument
697 t->connection()->SetErrorCallback([t](Connection*, const std::string& error) { in transport_registration_func() argument
997 void atransport::SetConnection(std::unique_ptr<Connection> connection) { in SetConnection()
999 connection_ = std::shared_ptr<Connection>(std::move(connection)); in SetConnection()
/system/bt/service/
Dgatt_server.h171 struct Connection { struct
172 Connection(int conn_id, const RawAddress& bdaddr) in Connection() function
174 Connection() : conn_id(-1) { memset(&bdaddr, 0, sizeof(bdaddr)); } in Connection() function
236 std::shared_ptr<Connection> GetConnection(int conn_id, const RawAddress& bda,
251 std::unordered_map<int, std::shared_ptr<Connection>> conn_id_map_;
252 std::unordered_map<std::string, std::vector<std::shared_ptr<Connection>>>
Dgatt_server.cc138 std::shared_ptr<Connection> connection; in SendResponse()
287 std::shared_ptr<Connection> connection(new Connection(conn_id, bda)); in ConnectionCallback()
543 std::shared_ptr<GattServer::Connection> GattServer::GetConnection( in GetConnection()
/system/bt/vendor_libs/test_vendor_lib/scripts/
Dsimple_stack.py107 class Connection(object): class
136 self._connection = Connection(port)
Dsimple_link_layer_socket.py73 class Connection(object): class
103 self._connection = Connection(port)
Dsend_simple_commands.py87 class Connection(object): class
117 self._connection = Connection(port)
Dtest_channel.py61 class Connection(object): class
91 self._connection = Connection(port)
/system/bt/doc/
Dpts_guide.md36 - `PTS_DisableConnUpdates` disables LE Connection updates.
/system/bt/vendor_libs/test_vendor_lib/model/controller/
Dlink_layer_controller.cc487 std::shared_ptr<Connection> new_connection = in IncomingLeAdvertisementPacket()
488 std::make_shared<Connection>(remote_devices_[dev], handle); in IncomingLeAdvertisementPacket()
508 std::shared_ptr<Connection> new_connection = in IncomingLeAdvertisementPacket()
509 std::make_shared<Connection>(remote_devices_[dev], handle); in IncomingLeAdvertisementPacket()
/system/core/adb/daemon/
Dusb.cpp171 struct UsbFfsConnection : public Connection {