Searched refs:ClientConnection (Results 1 – 4 of 4) sorted by relevance
/external/perfetto/src/ipc/ |
D | host_impl.h | 54 struct ClientConnection { struct 55 ~ClientConnection(); 76 void OnReceivedFrame(ClientConnection*, const Frame&); argument 77 void OnBindService(ClientConnection*, const Frame&); 78 void OnInvokeMethod(ClientConnection*, const Frame&); 82 static void SendFrame(ClientConnection*, const Frame&, int fd = -1); 87 std::map<ClientID, std::unique_ptr<ClientConnection>> clients_; 88 std::map<base::UnixSocket*, ClientConnection*> clients_by_socket_;
|
D | host_impl.cc | 109 std::unique_ptr<ClientConnection> client(new ClientConnection()); in OnNewIncomingConnection() 124 ClientConnection* client = it->second; in OnDataAvailable() 148 void HostImpl::OnReceivedFrame(ClientConnection* client, in OnReceivedFrame() 162 void HostImpl::OnBindService(ClientConnection* client, const Frame& req_frame) { in OnBindService() 183 void HostImpl::OnInvokeMethod(ClientConnection* client, in OnInvokeMethod() 236 ClientConnection* client = client_iter->second.get(); in ReplyToMethodInvocation() 254 void HostImpl::SendFrame(ClientConnection* client, const Frame& frame, int fd) { in SendFrame() 310 HostImpl::ClientConnection::~ClientConnection() = default;
|
/external/flatbuffers/tests/FlatBuffers.GRPC.Swift/Sources/client/ |
D | main.swift | 85 let configuration = ClientConnection.Configuration( in main() 91 let connection = ClientConnection(configuration: configuration) in main()
|
/external/flatbuffers/tests/FlatBuffers.GRPC.Swift/Sources/Model/ |
D | greeter.grpc.swift | 29 public let connection: ClientConnection in SayHello() 32 public init(connection: ClientConnection, defaultCallOptions: CallOptions = CallOptions()) { in SayHello()
|