HomeSort by relevance Sort by last modified time
    Searched full:session (Results 1 - 25 of 1852) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/voip/java/android/net/sip/
ISipSessionListener.aidl 23 * Listener class to listen to SIP session events.
30 * @param session the session object that carries out the transaction
32 void onCalling(in ISipSession session);
37 * @param session the session object that carries out the transaction
39 * @param sessionDescription the caller's session description
41 void onRinging(in ISipSession session, in SipProfile caller,
47 * @param session the session object that carries out the transactio
    [all...]
SipSessionAdapter.java 25 public void onCalling(ISipSession session) {
28 public void onRinging(ISipSession session, SipProfile caller,
32 public void onRingingBack(ISipSession session) {
35 public void onCallEstablished(ISipSession session,
39 public void onCallEnded(ISipSession session) {
42 public void onCallBusy(ISipSession session) {
45 public void onCallTransferring(ISipSession session,
49 public void onCallChangeFailed(ISipSession session, int errorCode,
53 public void onError(ISipSession session, int errorCode, String message) {
56 public void onRegistering(ISipSession session) {
    [all...]
SipSession.java 23 * Represents a SIP session that is associated with a SIP dialog or a standalone
33 * Defines SIP session states, such as "registering", "outgoing call", and "in call".
36 /** When session is ready to initiate a call or transaction. */
107 * Listener for events relating to a SIP session, such as when a session is being registered
115 * @param session the session object that carries out the transaction
117 public void onCalling(SipSession session) {
123 * @param session the session object that carries out the transactio
    [all...]
ISipSession.aidl 23 * A SIP session that is associated with a SIP dialog or a transaction that is
29 * Gets the IP address of the local host on which this SIP session runs.
36 * Gets the SIP profile that this session is associated with.
38 * @return the SIP profile that this session is associated with
43 * Gets the SIP profile that this session is connected to. Only available
44 * when the session is associated with a SIP dialog.
46 * @return the SIP profile that this session is connected to
51 * Gets the session state. The value returned must be one of the states in
54 * @return the session state
59 * Checks if the session is in a call
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSessionImplTest.java 37 SSLSessionImpl session = new SSLSessionImpl(null, null); local
38 assertEquals(session.getCipherSuite(),
41 session = new SSLSessionImpl(CipherSuite.TLS_RSA_WITH_NULL_MD5,
43 session.protocol = ProtocolVersion.TLSv1;
44 assertEquals("Incorrect protocol", "TLSv1", session.getProtocol());
45 assertEquals("Incorrect cipher suite", session.getCipherSuite(),
47 assertEquals("Incorrect id", 32, session.getId().length);
48 assertTrue("Incorrect isValid", session.isValid());
49 assertTrue("Incorrect isServer", session.isServer);
50 long time = session.getCreationTime()
89 SSLSessionImpl session = new SSLSessionImpl( local
97 SSLSessionImpl session = new SSLSessionImpl(null); local
105 SSLSessionImpl session = new SSLSessionImpl(null); local
    [all...]
  /external/chromium/chrome/browser/sync/sessions/
test_util.cc 11 void SimulateHasMoreToSync(sessions::SyncSession* session,
13 session->status_controller()->update_conflicts_resolved(true);
14 ASSERT_TRUE(session->HasMoreToSync());
17 void SimulateDownloadUpdatesFailed(sessions::SyncSession* session,
19 // Note that a non-zero value of changes_remaining once a session has
22 session->status_controller()->set_num_server_changes_remaining(1);
25 void SimulateCommitFailed(sessions::SyncSession* session,
27 // Note that a non-zero number of unsynced handles once a session has
33 session->status_controller()->set_unsynced_handles(handles);
36 void SimulateSuccess(sessions::SyncSession* session,
    [all...]
  /external/dbus/test/data/valid-config-files/
.gitignore 3 session.conf
5 run-with-tmp-session-bus.conf
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ServerSessionContext.java 22 * Caches server sessions. Indexes by session ID. Users typically look up
35 // TODO remove SSL_CTX session cache limit so we can manage it
46 protected void sessionRemoved(SSLSession session) {}
50 SSLSession session = super.getSession(sessionId); local
51 if (session != null) {
52 return session;
59 session = toSession(data, null, -1);
60 if (session != null && session.isValid()) {
61 super.putSession(session);
    [all...]
ClientSessionContext.java 25 * looking to reuse any session for a given host and port.
50 protected void sessionRemoved(SSLSession session) {
51 String host = session.getPeerHost();
52 int port = session.getPeerPort();
63 * Finds a cached session for the given host name and port.
67 * @return cached session or null if none found
73 SSLSession session; local
76 session = sessionsByHostAndPort.get(hostAndPortKey);
78 if (session != null && session.isValid())
    [all...]
SSLServerSessionCache.java 25 * a session started by a different server based on a session ID provided
30 * session data is dependent upon the caller's implementation and is opaque to
36 * Gets the session data for given session ID.
39 * @return the session data or null if none is cached
45 * Stores session data for the given session.
47 * @param session to cache data for
49 * @throws NullPointerException if session or data is nul
    [all...]
AbstractSessionContext.java 37 * Supports SSL session caches.
59 * Constructs a new session context.
89 SSLSession session = i.next(); local
90 if (session.isValid()) {
91 next = session;
127 SSLSession session = i.next(); local
129 sessionRemoved(session);
145 SSLSession session = i.next(); local
148 if (!session.isValid()) {
150 sessionRemoved(session);
261 SSLSession session; local
    [all...]
  /libcore/luni/src/main/java/javax/net/ssl/
SSLSessionContext.java 27 * Returns an iterable of all session identifiers in this session context.
29 * @return an iterable of all session identifiers in this session context.
34 * Returns the session for the specified session identifier.
37 * the session identifier of the session to look up.
38 * @return the session for the specified session identifier, or {@code null
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
call.cc 32 #include "talk/session/phone/call.h"
33 #include "talk/session/phone/mediasessionclient.h"
60 Session *session = sessions_[0]; local
61 RemoveSession(session);
62 session_client_->session_manager()->DestroySession(session);
67 Session *Call::InitiateSession(const buzz::Jid &jid,
71 Session *session = session_client_->CreateSession(this); local
72 AddSession(session, offer)
370 Session *session = call->sessions_[0]; local
    [all...]
call.h 36 #include "talk/p2p/base/session.h"
39 #include "talk/session/phone/audiomonitor.h"
40 #include "talk/session/phone/voicechannel.h"
52 Session *InitiateSession(const buzz::Jid &jid, const CallOptions& options);
53 void AcceptSession(BaseSession *session, const CallOptions& options);
54 void RejectSession(BaseSession *session);
55 void TerminateSession(BaseSession *session);
58 void SetVideoRenderer(BaseSession *session, uint32 ssrc,
60 void AddStream(BaseSession *session, uint32 voice_ssrc, uint32 video_ssrc);
61 void RemoveStream(BaseSession *session, uint32 voice_ssrc, uint32 video_ssrc)
    [all...]
  /external/bluetooth/bluez/audio/
avdtp.c 362 struct avdtp *session; member in struct:avdtp_stream
393 /* True if the session should be automatically disconnected */
437 static int send_request(struct avdtp *session, gboolean priority,
440 static gboolean avdtp_parse_resp(struct avdtp *session,
444 static gboolean avdtp_parse_rej(struct avdtp *session,
448 static int process_queue(struct avdtp *session);
449 static void connection_lost(struct avdtp *session, int err);
450 static void avdtp_sep_set_state(struct avdtp *session,
507 static gboolean avdtp_send(struct avdtp *session, uint8_t transaction,
516 if (session->io == NULL)
656 struct avdtp *session = user_data; local
809 struct avdtp *session = stream->session; local
2108 struct avdtp *session = data; local
2279 struct avdtp *session; local
2315 struct avdtp *session; local
2327 struct avdtp *session = user_data; local
2406 struct avdtp *session = user_data; local
2430 struct avdtp *session; local
2649 struct avdtp *session = user_data; local
3147 struct avdtp *session; local
3321 struct avdtp *session = data; local
3882 struct avdtp *session = l->data; local
    [all...]
avdtp.h 120 struct avdtp *session,
131 typedef void (*avdtp_set_configuration_cb) (struct avdtp *session,
137 void (*set_configuration) (struct avdtp *session,
142 void (*get_configuration) (struct avdtp *session,
147 void (*open) (struct avdtp *session, struct avdtp_local_sep *lsep,
150 void (*start) (struct avdtp *session, struct avdtp_local_sep *lsep,
153 void (*suspend) (struct avdtp *session, struct avdtp_local_sep *lsep,
156 void (*close) (struct avdtp *session, struct avdtp_local_sep *lsep,
159 void (*abort) (struct avdtp *session, struct avdtp_local_sep *lsep,
162 void (*reconfigure) (struct avdtp *session,
    [all...]
  /external/chromium/chrome/browser/sync/engine/
apply_updates_command.cc 19 void ApplyUpdatesCommand::ModelChangingExecuteImpl(SyncSession* session) {
20 syncable::ScopedDirLookup dir(session->context()->directory_manager(),
21 session->context()->account_name());
31 session->context()->resolver(),
32 session->context()->directory_manager()->GetCryptographer(&trans),
33 handles.begin(), handles.end(), session->routing_info(),
34 session->status_controller()->group_restriction());
37 session->status_controller()->mutable_conflict_progress(),
38 session->status_controller()->mutable_update_progress());
42 sessions::StatusController* status(session->status_controller())
    [all...]
syncer_command.cc 18 void SyncerCommand::Execute(SyncSession* session) {
19 ExecuteImpl(session);
20 SendNotifications(session);
23 void SyncerCommand::SendNotifications(SyncSession* session) {
24 syncable::ScopedDirLookup dir(session->context()->directory_manager(),
25 session->context()->account_name());
31 if (session->status_controller()->TestAndClearIsDirty()) {
33 const sessions::SyncSessionSnapshot& snapshot(session->TakeSnapshot());
35 session->context()->NotifyListeners(event);
resolve_conflicts_command.cc 17 sessions::SyncSession* session) {
18 ConflictResolver* resolver = session->context()->resolver();
23 syncable::ScopedDirLookup dir(session->context()->directory_manager(),
24 session->context()->account_name());
27 sessions::StatusController* status = session->status_controller();
  /frameworks/base/media/libeffects/preprocessing/
PreProcessing.cpp 48 // Session state
87 preproc_session_t *session; // session the effect is on member in struct:preproc_effect_s
92 // Session context
94 struct preproc_effect_s effects[PREPROC_NUM_EFFECTS]; // effects in this session
96 int id; // audio session ID
97 int io; // handle of input stream this session is on
240 webrtc::GainControl *agc = effect->session->apm->gain_control();
403 webrtc::EchoControlMobile *aec = effect->session->apm->echo_control_mobile();
428 *(uint32_t *)pValue = 1000 * effect->session->apm->stream_delay_ms()
1080 preproc_session_t * session = (preproc_session_t *)effect->session; local
1404 preproc_session_t * session = (preproc_session_t *)effect->session; local
1535 preproc_session_t *session; local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/tunnel/
tunnelsessionclient.cc 70 KLABEL(Session::STATE_INIT),
71 KLABEL(Session::STATE_SENTINITIATE),
72 KLABEL(Session::STATE_RECEIVEDINITIATE),
73 KLABEL(Session::STATE_SENTACCEPT),
74 KLABEL(Session::STATE_RECEIVEDACCEPT),
75 KLABEL(Session::STATE_SENTMODIFY),
76 KLABEL(Session::STATE_RECEIVEDMODIFY),
77 KLABEL(Session::STATE_SENTREJECT),
78 KLABEL(Session::STATE_RECEIVEDREJECT),
79 KLABEL(Session::STATE_SENTREDIRECT)
112 Session* session = (*it)->ReleaseSession(true); local
185 Session* session = session_manager_->CreateSession(jid_.Str(), namespace_); local
332 Session* session = session_; local
    [all...]
  /external/nist-sip/java/javax/sip/header/
ContentDispositionHeader.java 9 String SESSION = "Session";
  /frameworks/base/drm/libdrmframework/plugins/common/util/include/
SessionMap.h 25 * A thread safe wrapper template class for session handlings for Drm Engines. It wraps a
27 * allocated pointer can be of any type of structure/class meant for keeping session data.
28 * so session object here means pointer to the session data.
42 * Adds a new value in the session map table. It expects memory to be allocated already
43 * for the session object
45 * @param key - key or Session ID
46 * @param value - session object to add
60 * returns the session object by the key
62 * @param key - key or Session I
    [all...]
  /external/qemu/
shaper.c 286 /* this type is used to model a session connection/state
287 * if session->packet is != NULL, then the connection is delayed
299 } SessionRec, *Session;
307 session_free( Session session )
309 if (session) {
310 if (session->packet) {
311 queued_packet_free(session->packet);
312 session->packet = NULL;
314 qemu_free( session );
426 Session session; local
484 Session session = delay->sessions; local
518 Session session = *lookup; local
531 Session session = *lookup; local
581 Session session = delay->sessions; local
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
HostnameVerifierTest.java 41 * session)
44 mySSLSession session = new mySSLSession("localhost", 1080, null); local
46 assertFalse(hv.verify("localhost", session));
56 mySSLSession session = new mySSLSession(new X509Certificate[] {x509}); local
59 assertTrue(verifier.verify("foo.com", session));
60 assertFalse(verifier.verify("a.foo.com", session));
61 assertFalse(verifier.verify("bar.com", session));
65 session = new mySSLSession(new X509Certificate[] {x509});
66 assertTrue(verifier.verify("\u82b1\u5b50.co.jp", session));
67 assertFalse(verifier.verify("a.\u82b1\u5b50.co.jp", session));
150 mySSLSession session = new mySSLSession(new X509Certificate[] {x509}); local
166 mySSLSession session = new mySSLSession(new X509Certificate[] { x509 }); local
189 mySSLSession session = new mySSLSession(new X509Certificate[] { x509 }); local
211 mySSLSession session = new mySSLSession(new X509Certificate[] { x509 }); local
244 mySSLSession session = new mySSLSession(new X509Certificate[] { x509 }); local
281 mySSLSession session = new mySSLSession(new X509Certificate[] { x509 }); local
    [all...]

Completed in 800 milliseconds

1 2 3 4 5 6 7 8 91011>>