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

1 2 3 4 5 6 7 8 910

  /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.
46 protected void sessionRemoved(SSLSession session) {
47 String host = session.getPeerHost();
48 int port = session.getPeerPort();
59 * Finds a cached session for the given host name and port.
63 * @return cached session or null if none found
69 SSLSession session; local
72 session = sessionsByHostAndPort.get(hostAndPortKey);
74 if (session != null && session.isValid())
    [all...]
SSLClientSessionCache.java 29 * session data is dependent upon the caller's implementation and is opaque to
35 * Gets data from a pre-existing session for a given server host and port.
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, result of
50 * {@code session.getPeerHost()} or data is null
52 public void putSessionData(SSLSession session, byte[] sessionData);
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...]
  /frameworks/base/voip/java/android/net/sip/
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 onCallChangeFailed(ISipSession session, int errorCode,
49 public void onError(ISipSession session, int errorCode, String message) {
52 public void onRegistering(ISipSession session) {
55 public void onRegistrationDone(ISipSession session, int duration)
    [all...]
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...]
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. */
104 * Listener for events relating to a SIP session, such as when a session is being registered
112 * @param session the session object that carries out the transaction
114 public void onCalling(SipSession session) {
120 * @param session the session object that carries out the transactio
    [all...]
  /external/ipsec-tools/src/racoon/
session.h 1 /* $NetBSD: session.h,v 1.4 2006/09/09 16:22:10 manu Exp $ */
3 /* Id: session.h,v 1.3 2004/06/11 16:00:17 ludvigm Exp */
37 extern int session __P((void));
  /libcore/luni/src/main/java/javax/net/ssl/
HandshakeCompletedEvent.java 31 private transient SSLSession session; field in class:HandshakeCompletedEvent
35 * socket and SSL session.
40 * the SSL session.
44 session = s;
48 * Returns the SSL session associated with this event.
50 * @return the SSL session associated with this event.
53 return session;
62 return session.getCipherSuite();
74 return session.getLocalCertificates();
87 return session.getPeerCertificates()
    [all...]
HostnameVerifier.java 30 * session.
34 * @param session
35 * the SSL session of the connection.
39 boolean verify(String hostname, SSLSession session);
SSLSessionBindingEvent.java 32 * Creates a new {@code SSLSessionBindingEvent} for the specified session
35 * @param session
36 * the session for which the event occurs.
40 public SSLSessionBindingEvent(SSLSession session, String name) {
41 super(session);
55 * Returns the session to which the binding is added or from which it is
58 * @return the session to which the binding is added or from which it is
  /external/v8/tools/oprofile/
annotate 6 opannotate --assembly --session-dir="$OPROFILE_SESSION_DIR" "$shell_exec" "$@"
report 6 opreport --symbols --session-dir="$OPROFILE_SESSION_DIR" "$shell_exec" "$@"
  /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));
153 mySSLSession session = new mySSLSession(new X509Certificate[] {x509}); local
    [all...]
  /external/webkit/WebKit/chromium/public/
WebCookie.h 48 , session(false)
53 const WebString& path, double expires, bool httpOnly, bool secure, bool session)
61 , session(session)
72 bool session; member in struct:WebKit::WebCookie
  /frameworks/base/voip/java/com/android/server/sip/
SipSessionListenerProxy.java 46 public void onCalling(final ISipSession session) {
51 mListener.onCalling(session);
59 public void onRinging(final ISipSession session, final SipProfile caller,
65 mListener.onRinging(session, caller, sessionDescription);
73 public void onRingingBack(final ISipSession session) {
78 mListener.onRingingBack(session);
86 public void onCallEstablished(final ISipSession session,
92 mListener.onCallEstablished(session, sessionDescription);
100 public void onCallEnded(final ISipSession session) {
105 mListener.onCallEnded(session);
    [all...]
  /external/bluetooth/bluez/audio/
avdtp.c 364 struct avdtp *session; member in struct:avdtp_stream
394 /* True if the session should be automatically disconnected */
435 static int send_request(struct avdtp *session, gboolean priority,
438 static gboolean avdtp_parse_resp(struct avdtp *session,
442 static gboolean avdtp_parse_rej(struct avdtp *session,
446 static int process_queue(struct avdtp *session);
447 static void connection_lost(struct avdtp *session, int err);
448 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)
650 struct avdtp *session = user_data; local
801 struct avdtp *session = stream->session; local
1975 struct avdtp *session = data; local
2146 struct avdtp *session; local
2182 struct avdtp *session; local
2194 struct avdtp *session = user_data; local
2273 struct avdtp *session = user_data; local
2297 struct avdtp *session; local
2515 struct avdtp *session = user_data; local
3010 struct avdtp *session; local
3180 struct avdtp *session = data; local
3766 struct avdtp *session = l->data; local
    [all...]
avdtp.h 124 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,
166 void (*delay_report) (struct avdtp *session, struct avdtp_local_sep *lsep
    [all...]
  /external/chromium/net/flip/
flip_transaction_factory.h 15 explicit FlipTransactionFactory(HttpNetworkSession* session)
16 : session_(session) {
flip_stream_unittest.cc 28 void RemoveFlipSession(const scoped_refptr<FlipSession>& session) {
29 pool_->Remove(session);
87 scoped_refptr<FlipSession> session(
89 return session;
103 scoped_refptr<FlipSession> session(CreateFlipSession());
110 scoped_refptr<FlipStream> stream(new FlipStream(session, 1, false, NULL));
113 // Need to manually remove the flip session since normally it gets removed on
115 pool_peer_.RemoveFlipSession(session);
  /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...]
  /external/dbus/test/name-test/
run-with-tmp-session-bus.conf 1 <!-- This configuration file controls the per-user-login-session message bus.
2 Add a session-local.conf and edit that rather than changing this
9 <type>session</type>
  /frameworks/base/core/java/android/app/backup/
BackupManager.java 139 RestoreSession session = null; local
143 session = new RestoreSession(mContext, binder);
144 result = session.restorePackage(mContext.getPackageName(), observer);
148 if (session != null) {
149 session.endRestoreSession();
162 RestoreSession session = null; local
168 session = new RestoreSession(mContext, binder);
173 return session;
  /external/dbus/test/data/valid-config-files/
session.conf 1 <!-- This configuration file controls the per-user-login-session message bus.
2 Add a session-local.conf and edit that rather than changing this
9 <type>session</type>
26 <include ignore_missing="yes">session-local.conf</include>
  /external/bluetooth/bluez/test/
sdptest.c 62 sdp_session_t *session; local
67 session = sdp_connect(src, dst, 0);
68 if (!session) {
73 sdp_set_notify(session, callback, NULL);
81 //sdp_service_search_attr_async(session, search,
84 sdp_service_search_async(session, search, 0xffff);
91 sdp_process(session);
93 sdp_close(session);

Completed in 899 milliseconds

1 2 3 4 5 6 7 8 910