HomeSort by relevance Sort by last modified time
    Searched refs:session (Results 226 - 250 of 1022) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/session/media/
currentspeakermonitor.cc 28 #include "talk/session/media/currentspeakermonitor.h"
32 #include "talk/session/media/audiomonitor.h"
33 #include "talk/session/media/mediamessages.h"
45 AudioSourceContext* audio_source_context, BaseSession* session)
48 session_(session),
197 AudioSourceContext* audio_source_context, BaseSession* session,
200 if (audio_source_context == audio_source_context_ && session == session_) {
215 AudioSourceContext* audio_source_context, BaseSession* session) {
216 if (audio_source_context == audio_source_context_ && session == session_) {
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
WebSocketResponseHandler.java 29 public Response serve(final IHTTPSession session) {
30 Map<String, String> headers = session.getHeaders();
31 if (isWebsocketRequested(session)) {
42 WebSocket webSocket = webSocketFactory.openWebSocket(session);
61 protected boolean isWebsocketRequested(IHTTPSession session) {
62 Map<String, String> headers = session.getHeaders();
  /external/wpa_supplicant_8/src/crypto/
tls_gnutls.c 73 /* Data for session resumption */
84 gnutls_session session; member in struct:tls_connection
135 * that is expected to have same structure definition for the session
257 ret = gnutls_init(&conn->session,
265 ret = gnutls_set_default_priority(conn->session);
270 ret = gnutls_priority_set_direct(conn->session, "NORMAL:-VERS-SSL3.0",
278 ret = gnutls_certificate_type_set_priority(conn->session, cert_types);
282 ret = gnutls_protocol_set_priority(conn->session, protos);
287 gnutls_transport_set_pull_function(conn->session, tls_pull_func);
288 gnutls_transport_set_push_function(conn->session, tls_push_func)
    [all...]
  /external/chromium_org/net/http/
http_response_body_drainer.cc 24 void HttpResponseBodyDrainer::Start(HttpNetworkSession* session) {
34 session_ = session;
35 session->AddResponseDrainer(this);
http_stream_factory_impl_request_unittest.cc 69 session(SpdySessionDependencies::SpdyCreateSession(&session_deps));
71 static_cast<HttpStreamFactoryImpl*>(session->http_stream_factory());
79 session,
http_response_body_drainer.h 35 // doesn't complete immediately, it will add itself to |session|.
36 void Start(HttpNetworkSession* session);
  /external/chromium_org/net/quic/
quic_dispatcher.cc 226 QuicSession* session = NULL; local
239 // session for it. All initial packets for a new connection are required to
242 session = CreateQuicSession(connection_id, current_server_address_,
246 if (session == NULL) {
247 DVLOG(1) << "Failed to create session for " << connection_id;
265 DVLOG(1) << "Created new session for " << connection_id;
266 session_map_.insert(make_pair(connection_id, session));
268 session = it->second;
271 session->connection()->ProcessUdpPacket(
274 // Do not parse the packet further. The session will process it completely
331 QuicSession* session = session_map_.begin()->second; local
369 QuicServerSession* session = new QuicServerSession( local
    [all...]
quic_crypto_stream.h 34 explicit QuicCryptoStream(QuicSession* session);
quic_headers_stream.cc 168 QuicHeadersStream::QuicHeadersStream(QuicSession* session)
169 : ReliableQuicStream(kHeadersStreamId, session),
189 if (session()->is_server()) {
215 if (!session()->is_server()) {
224 session()->OnStreamHeadersPriority(stream_id, priority);
228 if (session()->is_server()) {
246 session()->OnStreamHeadersComplete(stream_id_, fin_, frame_len_);
252 session()->OnStreamHeaders(stream_id_, StringPiece(header_data, len));
263 return session()->connection()->connected();
quic_spdy_server_stream.h 28 QuicSpdyServerStream(QuicStreamId id, QuicSession* session);
31 // ReliableQuicStream implementation called by the session when there's
  /external/chromium_org/net/tools/quic/
quic_dispatcher.cc 230 QuicSession* session = NULL; local
243 // session for it. All initial packets for a new connection are required to
246 session = CreateQuicSession(connection_id, current_server_address_,
250 if (session == NULL) {
251 DVLOG(1) << "Failed to create session for " << connection_id;
269 DVLOG(1) << "Created new session for " << connection_id;
270 session_map_.insert(make_pair(connection_id, session));
272 session = it->second;
275 session->connection()->ProcessUdpPacket(
278 // Do not parse the packet further. The session will process it completely
335 QuicSession* session = session_map_.begin()->second; local
380 QuicServerSession* session = new QuicServerSession( local
    [all...]
quic_spdy_server_stream.h 30 QuicSpdyServerStream(QuicStreamId id, QuicSession* session);
33 // ReliableQuicStream implementation called by the session when there's
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
statscollector.h 56 // Register the session Stats should operate on.
57 // Set to NULL if the session has ended.
58 void set_session(WebRtcSession* session) {
59 session_ = session;
73 // Gather statistics from the session and store them for future use.
110 WebRtcSession* session() { return session_; } function in class:webrtc::StatsCollector
130 // Raw pointer to the session the statistics are gathered from.
  /frameworks/base/media/java/android/media/
RemoteDisplay.java 126 final int width, final int height, final int flags, final int session) {
130 mListener.onDisplayConnected(surface, width, height, flags, session);
160 int width, int height, int flags, int session);
  /hardware/ti/omap4-aah/security/tf_sdk/include/
tee_client_api.h 163 TEEC_Session* session,
171 TEEC_Session* session);
174 TEEC_Session* session,
  /hardware/ti/omap4xxx/security/tf_sdk/include/
tee_client_api.h 163 TEEC_Session* session,
171 TEEC_Session* session);
174 TEEC_Session* session,
  /external/apache-http/src/org/apache/http/conn/ssl/
X509HostnameVerifier.java 62 boolean verify(String host, SSLSession session);
  /external/chromium_org/chrome/browser/devtools/
devtools_network_transaction_factory.h 26 net::HttpNetworkSession* session);
  /external/chromium_org/net/dns/
dns_transaction.h 70 // |session|.
72 DnsSession* session) WARN_UNUSED_RESULT;
  /external/chromium_org/net/quic/test_tools/
mock_crypto_client_stream.h 40 QuicClientSessionBase* session,
  /external/chromium_org/net/websockets/
websocket_handshake_stream_create_helper.cc 49 const base::WeakPtr<SpdySession>& session,
  /external/chromium_org/remoting/host/
chromoting_host.cc 106 // Destroy the session manager to make sure that |signal_strategy_| does not
266 void ChromotingHost::OnSessionSequenceNumber(ClientSession* session,
272 ClientSession* session,
277 OnClientRouteChange(session->client_jid(), channel_name,
288 protocol::Session* session,
305 if (!protocol_config_->Select(session->candidate_config(), &config)) {
306 LOG(WARNING) << "Rejecting connection from " << session->jid()
312 session->set_config(config);
316 HOST_LOG << "Client connected: " << session->jid()
    [all...]
  /external/chromium_org/remoting/protocol/
channel_dispatcher_base.h 23 class Session;
38 // |session|. Caller retains ownership of the Session.
39 void Init(Session* session,
protobuf_video_reader.h 21 class Session;
29 virtual void Init(protocol::Session* session,
protobuf_video_writer.h 24 class Session;
32 virtual void Init(protocol::Session* session,

Completed in 1626 milliseconds

1 2 3 4 5 6 7 8 91011>>