Lines Matching refs:endpoint
73 const IPEndpoint& endpoint, in Connect() argument
77 auto endpoint_entry = endpoint_map_.find(endpoint); in Connect()
85 return CreatePendingConnection(endpoint, request); in Connect()
114 const IPEndpoint& endpoint = delegate->endpoint(); in OnCryptoHandshakeComplete() local
115 auto pending_entry = pending_connections_.find(endpoint); in OnCryptoHandshakeComplete()
122 endpoint_map_[endpoint] = endpoint_id; in OnCryptoHandshakeComplete()
177 const IPEndpoint& endpoint, in CreatePendingConnection() argument
179 auto pending_entry = pending_connections_.find(endpoint); in CreatePendingConnection()
181 uint64_t request_id = StartConnectionRequest(endpoint, request); in CreatePendingConnection()
191 const IPEndpoint& endpoint, in StartConnectionRequest() argument
193 auto delegate = std::make_unique<ServiceConnectionDelegate>(this, endpoint); in StartConnectionRequest()
195 connection_factory_->Connect(endpoint, delegate.get()); in StartConnectionRequest()
205 endpoint, PendingConnectionData(ServiceConnectionData( in StartConnectionRequest()