Searched refs:session (Results 151 - 175 of 553) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libsrtp/srtp/srtp/
H A Dsrtp.c192 srtp_stream_dealloc(srtp_t session, srtp_stream_ctx_t *stream) { argument
202 if (session->stream_template
203 && stream->rtp_cipher == session->stream_template->rtp_cipher) {
212 if (session->stream_template
213 && stream->rtp_auth == session->stream_template->rtp_auth) {
222 if (session->stream_template
223 && stream->limit == session->stream_template->limit) {
233 if (session->stream_template
234 && stream->rtcp_cipher == session->stream_template->rtcp_cipher) {
246 if (session
1336 srtp_dealloc(srtp_t session) argument
1385 srtp_add_stream(srtp_t session, const srtp_policy_t *policy) argument
1445 srtp_create(srtp_t *session, const srtp_policy_t *policy) argument
1484 srtp_remove_stream(srtp_t session, uint32_t ssrc) argument
[all...]
/external/chromium_org/chrome/test/chromedriver/
H A Dperformance_logger.h34 PerformanceLogger(Log* log, const Session* session);
38 const Session* session,
H A Dperformance_logger_unittest.cc17 #include "chrome/test/chromedriver/session.h"
186 Session session("test");
187 PerformanceLogger logger(&log, &session);
206 Session session("test");
207 PerformanceLogger logger(&log, &session);
232 Session session("test");
238 PerformanceLogger logger(&log, &session, prefs);
280 Session session("test");
283 PerformanceLogger logger(&log, &session, prefs);
311 Session session("tes
[all...]
/external/chromium_org/net/tools/quic/test_tools/
H A Dserver_thread.cc102 // Wait for a session to be created.
105 QuicSession* session = dispatcher->session_map().begin()->second; local
106 if (session->IsCryptoHandshakeConfirmed()) {
/external/chromium_org/remoting/host/
H A Dchromoting_host.cc107 // Destroy the session manager to make sure that |signal_strategy_| does not
256 ClientSession* session,
261 OnClientRouteChange(session->client_jid(), channel_name,
272 protocol::Session* session,
289 if (!protocol_config_->Select(session->candidate_config(), &config)) {
290 LOG(WARNING) << "Rejecting connection from " << session->jid()
296 session->set_config(config);
300 HOST_LOG << "Client connected: " << session->jid();
304 new protocol::ConnectionToClient(session));
255 OnSessionRouteChange( ClientSession* session, const std::string& channel_name, const protocol::TransportRoute& route) argument
271 OnIncomingSession( protocol::Session* session, protocol::SessionManager::IncomingSessionResponse* response) argument
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dsessionclient.h64 // A SessionClient exists in 1-1 relation with each session. The implementor
77 virtual void OnSessionCreate(Session* session, bool received_initiate) = 0;
78 virtual void OnSessionDestroy(Session* session) = 0;
H A Dsession_unittest.cc41 #include "talk/p2p/base/session.h"
72 // Controls how long we wait for a session to send messages that we
142 return "<session"
143 " xmlns=\"http://www.google.com/session\""
149 "</session>";
198 " action=\"session-initiate\""
328 return JingleActionXml("session-accept", content_xml);
398 "session-terminate",
412 "<redirect xmlns=\"http://www.google.com/session\">"
767 void OnSessionCreate(cricket::Session* session, boo argument
770 OnSessionDestroy(cricket::Session* session) argument
1002 OnSessionDestroy(cricket::Session *session) argument
1006 OnSessionState(cricket::BaseSession* session, cricket::BaseSession::State state) argument
1014 OnSessionError(cricket::BaseSession* session, cricket::BaseSession::Error error) argument
1026 OnSessionRemoteDescriptionUpdate(cricket::BaseSession* session, const cricket::ContentInfos& contents) argument
1031 OnNewLocalDescription(cricket::BaseSession* session, cricket::ContentAction action) argument
1038 OnNewRemoteDescription(cricket::BaseSession* session, cricket::ContentAction action) argument
1114 cricket::Session* session; member in class:TestClient
[all...]
H A Dsessionmanager.h52 // SessionManager manages session instances.
83 // describing a session of the given type, we will automatically create a
85 // reject the session.
90 // Creates a new session. The given name is the JID of the client on whose
91 // behalf we initiate the session.
99 // Destroys the given session.
100 void DestroySession(Session *session);
102 // Returns the session with the given ID or NULL if none exists.
112 // Determines whether the given stanza is intended for some session.
131 // Signalled each time a session generate
[all...]
/external/nanohttpd/core/src/test/java/fi/iki/elonen/
H A DHttpKeepAliveTest.java57 NanoHTTPD.HTTPSession session = testServer.createSession(new TestTempFileManager(), inputStream, outputStream);
61 session.execute();
/external/openssl/ssl/
H A Ds2_srvr.c301 ((s->session->peer != NULL) &&
401 s->session->cipher= cp;
413 s->session->key_arg_length=i;
425 keya=s->session->key_arg_length;
440 memcpy(s->session->key_arg,&(p[s->s2->tmp.clear+s->s2->tmp.enc]),
453 is_export=SSL_C_IS_EXPORT(s->session->cipher);
455 if (!ssl_cipher_get_evp(s->session,&c,&md,NULL,NULL,NULL))
462 if (s->session->cipher->algorithm2 & SSL2_CF_8_BYTE_ENC)
516 s->session->master_key_length=i;
517 memcpy(s->session
[all...]
H A Dssl_sess.c153 return(ssl->session);
161 * somebody doesn't free ssl->session between when we check it's
164 sess = ssl->session;
239 /* Even with SSLv2, we have 16 bytes (128 bits) of session ID space. SSLv3/TLSv1
265 * to atomically check whether a session ID already exists
277 int ssl_get_new_session(SSL *s, int session) argument
295 if (s->session != NULL)
297 SSL_SESSION_free(s->session);
298 s->session=NULL;
301 if (session)
804 SSL_set_session(SSL *s, SSL_SESSION *session) argument
[all...]
H A Ds2_clnt.c219 if (!s->hit) /* new session */
292 /* If we want to cache session-ids in the client
293 * and we successfully add the session-id to the
295 * 26/11/96 - eay - only add if not a re-used session.
422 memset(s->session->session_id,0,
424 s->session->session_id_length=0;
429 * client session but others are already reusing it.
430 * If this was a new 'blank' session ID, the session-id
432 if (s->session
[all...]
H A Ds3_clnt.c309 /* receive renewed session ticket */
480 s->session->cipher=s->s3->tmp.new_cipher;
482 s->session->compress_meth=0;
485 s->session->compress_meth=0;
487 s->session->compress_meth=
553 * session so that any resumption of this
554 * session with ChannelID can sign those
737 SSL_SESSION *sess = s->session;
756 /* else use the pre-loaded session */
812 i=s->session
[all...]
H A Dd1_clnt.c544 s->session->cipher=s->s3->tmp.new_cipher;
546 s->session->compress_meth=0;
549 s->session->compress_meth=0;
551 s->session->compress_meth=
792 SSL_SESSION *sess = s->session;
793 if ((s->session == NULL) ||
794 (s->session->ssl_version != s->version) ||
800 (s->session->not_resumable))
811 /* else use the pre-loaded session */
838 i=s->session
[all...]
/external/chromium_org/media/test/data/eme_player_js/
H A Dplayer_utils.js56 Utils.timeLog('Creating new media key session for contentType: ' +
63 var session = message.target.mediaKeys.createSession();
64 addMediaKeySessionListeners(session);
65 session.generateRequest(message.contentType, message.initData)
70 var session = message.target.mediaKeys.createSession(
72 session.then(addMediaKeySessionListeners)
98 Utils.timeLog('Loading session: ' + player.testConfig.sessionToLoad);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dheader.h105 int perf_session__read_header(struct perf_session *session);
106 int perf_session__write_header(struct perf_session *session,
133 struct perf_session *session,
143 struct perf_session *session);
151 struct perf_session *session);
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-inject.c14 #include "util/session.h"
64 struct perf_session *session
154 struct perf_session *session)
159 err = perf_event__process_tracing_data(tool, event, session);
346 struct perf_session *session; local
358 session = perf_session__new(inject->input_name, O_RDONLY, false, true, &inject->tool);
359 if (session == NULL)
369 list_for_each_entry(evsel, &session->evlist->entries, node) {
385 lseek(inject->output, session->header.data_offset, SEEK_SET);
387 ret = perf_session__process_events(session,
152 perf_event__repipe_tracing_data(struct perf_tool *tool, union perf_event *event, struct perf_session *session) argument
[all...]
H A Dbuiltin-record.c22 #include "util/session.h"
70 struct perf_session *session; member in struct:perf_record
199 struct perf_session *session = rec->session; local
248 session->evlist = evlist;
249 perf_session__set_id_hdr_size(session);
261 rec->session->fd = rec->output;
262 return __perf_session__process_events(rec->session, rec->post_processing_offset,
275 rec->session->header.data_size += rec->bytes_written;
279 perf_session__write_header(rec->session, re
359 struct perf_session *session; local
[all...]
H A Dbuiltin-report.c27 #include "util/session.h"
42 struct perf_session *session; member in struct:perf_report
367 struct perf_session *self = rep->session;
484 struct perf_session *session = rep->session; local
493 ret = perf_session__cpu_bitmap(session, rep->cpu_list,
500 perf_session__fprintf_info(session, stdout, rep->show_full_info);
509 ret = perf_session__process_events(session, &rep->tool);
513 kernel_map = session->machines.host.vmlinux_maps[MAP__FUNCTION];
539 perf_session__fprintf(session, stdou
734 struct perf_session *session; local
[all...]
/external/chromium_org/net/quic/
H A Dquic_stream_factory.h113 // If a matching session already exists, this method will return OK. If no
114 // matching session exists, this will return ERR_IO_PENDING and will invoke
123 // Called by a session when it becomes idle.
124 void OnIdleSession(QuicClientSession* session);
126 // Called by a session when it is going away and no more streams should be
128 void OnSessionGoingAway(QuicClientSession* session);
130 // Called by a session after it shuts down.
131 void OnSessionClosed(QuicClientSession* session);
133 // Called by a session whose connection has timed out.
134 void OnSessionConnectTimeout(QuicClientSession* session);
[all...]
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dcallclient.cc59 #include "talk/session/media/mediamessages.h"
60 #include "talk/session/media/mediasessionclient.h"
113 " addsession [jid] Add a new session to the current call.\n"
114 " rmsession [sid] Remove specified session.\n"
220 console_->PrintLine("Failed to initiate additional session.");
258 cricket::Session* session = GetFirstSession(); local
259 if (session && SelectFirstDesktopScreencastId(&screencastid)) {
261 session, streamid, screencast_ssrc_, screencastid, fps);
268 cricket::Session* session = GetFirstSession(); local
269 if (session) {
556 OnSessionCreate(cricket::Session* session, bool initiate) argument
566 OnSessionState(cricket::Call* call, cricket::Session* session, cricket::Session::State state) argument
622 OnSpeakerChanged(cricket::Call* call, cricket::Session* session, const cricket::StreamParams& speaker) argument
757 cricket::Session* session = GetFirstSession(); local
861 cricket::Session* session = GetFirstSession(); local
1083 cricket::Session* session = GetFirstSession(); local
1427 OnMediaStreamsUpdate(cricket::Call* call, cricket::Session* session, const cricket::MediaStreams& added, const cricket::MediaStreams& removed) argument
1444 RenderAllStreams(cricket::Call* call, cricket::Session* session, bool enable) argument
1454 RenderStreams( cricket::Call* call, cricket::Session* session, const std::vector<cricket::StreamParams>& video_streams, bool enable) argument
1466 RenderStream(cricket::Call* call, cricket::Session* session, const cricket::StreamParams& stream, bool enable) argument
1498 AddStaticRenderedView( cricket::Session* session, uint32 ssrc, int width, int height, int framerate, int x_offset, int y_offset) argument
1541 SendViewRequest(cricket::Call* call, cricket::Session* session) argument
[all...]
/external/chromium_org/net/http/
H A Dhttp_network_transaction_unittest.cc93 int GetIdleSocketCountInTransportSocketPool(net::HttpNetworkSession* session) { argument
94 return session->GetTransportSocketPool(
98 int GetIdleSocketCountInSSLSocketPool(net::HttpNetworkSession* session) { argument
99 return session->GetSSLSocketPool(
103 bool IsTransportSocketPoolStalled(net::HttpNetworkSession* session) { argument
104 return session->GetTransportSocketPool(
304 scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps_));
306 new HttpNetworkTransaction(DEFAULT_PRIORITY, session.get()));
640 scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps_));
642 new HttpNetworkTransaction(DEFAULT_PRIORITY, session
7546 GroupNameTransactionHelper( const std::string& url, const scoped_refptr<HttpNetworkSession>& session) argument
[all...]
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DServerHandshakeImplTest.java80 // precondition: session hash does not contains requested session
103 // precondition: session hash contains requested session
105 SSLSessionImpl session = new SSLSessionImpl(
107 session.id = ses_id;
108 // put session to hash
109 server.parameters.getServerSessionContext().putSession(session);
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dssl_sess.c147 * SSL_magic_pending_session_ptr(). It allows a session callback to indicate
148 * that it needs to asynchronously fetch session information. */
163 return(ssl->session);
171 * somebody doesn't free ssl->session between when we check it's
174 sess = ssl->session;
225 /* Even with SSLv2, we have 16 bytes (128 bits) of session ID space. SSLv3/TLSv1
251 * to atomically check whether a session ID already exists
258 int ssl_get_new_session(SSL *s, int session) argument
278 if (s->session != NULL)
280 SSL_SESSION_free(s->session);
729 SSL_set_session(SSL *s, SSL_SESSION *session) argument
[all...]
/external/smack/src/com/kenai/jbosh/
H A DApacheHTTPSender.java76 public void init(final BOSHClientConfig session) { argument
79 cfg = session;
80 httpClient = initHttpClient(session);

Completed in 405 milliseconds

1234567891011>>