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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/java/android/media/session/
ParcelableVolumeInfo.aidl 16 package android.media.session;
PlaybackState.aidl 16 package android.media.session;
IActiveSessionsListener.aidl 16 package android.media.session;
18 import android.media.session.MediaSession;
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
SoundTriggerSession.cpp 25 status_t SoundTriggerSessionCollection::acquireSession(audio_session_t session,
28 add(session, ioHandle);
33 status_t SoundTriggerSessionCollection::releaseSession(audio_session_t session)
35 ssize_t index = indexOfKey(session);
37 ALOGW("acquireSoundTriggerSession() session %d not registered", session);
41 removeItem(session);
  /frameworks/base/media/java/android/media/
IRemoteVolumeController.aidl 19 import android.media.session.ISessionController;
28 void remoteVolumeChanged(ISessionController session, int flags);
29 // sets the default session to use with the slider, replaces remoteSliderVisibility
31 void updateRemoteController(ISessionController session);
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSessionImplTest.java 36 SSLSessionImpl session = new SSLSessionImpl(null, null); local
37 assertEquals(session.getCipherSuite(),
40 session = new SSLSessionImpl(CipherSuite.TLS_RSA_WITH_NULL_MD5,
42 session.protocol = ProtocolVersion.TLSv1;
43 assertEquals("Incorrect protocol", "TLSv1", session.getProtocol());
44 assertEquals("Incorrect cipher suite", session.getCipherSuite(),
46 assertEquals("Incorrect id", 32, session.getId().length);
47 assertTrue("Incorrect isValid", session.isValid());
48 assertTrue("Incorrect isServer", session.isServer);
49 long time = session.getCreationTime()
88 SSLSessionImpl session = new SSLSessionImpl( local
96 SSLSessionImpl session = new SSLSessionImpl(null); local
104 SSLSessionImpl session = new SSLSessionImpl(null); local
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
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
41 // Set a trivial session id context. OpenSSL uses this to make
53 protected void sessionRemoved(SSLSession session) {}
57 SSLSession session = super.getSession(sessionId); local
58 if (session != null) {
59 return session;
66 session = toSession(data, null, -1);
67 if (session != null && session.isValid())
    [all...]
  /frameworks/opt/net/voip/src/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 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...]
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...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/tls/
HostnameVerifierTest.java 42 FakeSSLSession session = new FakeSSLSession(); local
43 assertFalse(verifier.verify("localhost", session));
48 SSLSession session = session("" local
74 assertTrue(verifier.verify("foo.com", session));
75 assertFalse(verifier.verify("a.foo.com", session));
76 assertFalse(verifier.verify("bar.com", session));
81 SSLSession session = session("" local
107 assertTrue(verifier.verify("\u82b1\u5b50.co.jp", session));
113 SSLSession session = session("" local
154 SSLSession session = session("" local
195 SSLSession session = session("" local
229 SSLSession session = session("" local
266 SSLSession session = session("" local
302 SSLSession session = session("" local
340 SSLSession session = session("" local
409 FakeSSLSession session = new FakeSSLSession(certificate); local
420 SSLSession session = session("" local
443 SSLSession session = session("" local
471 SSLSession session = session("" local
501 SSLSession session = session("" local
551 private SSLSession session(String certificate) throws Exception { method in class:HostnameVerifierTest
    [all...]
  /frameworks/support/v4/java/android/support/v4/media/session/
ParcelableVolumeInfo.aidl 16 package android.support.v4.media.session;
PlaybackStateCompat.aidl 16 package android.support.v4.media.session;
  /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));
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
AborCommandHandler.java 20 import org.mockftpserver.core.session.Session;
34 protected void handle(Command command, Session session) {
35 verifyLoggedIn(session);
36 sendReply(session, ReplyCodes.ABOR_OK, "abor");
AlloCommandHandler.java 20 import org.mockftpserver.core.session.Session;
34 protected void handle(Command command, Session session) {
35 verifyLoggedIn(session);
36 sendReply(session, ReplyCodes.ALLO_OK, "allo");
ModeCommandHandler.java 20 import org.mockftpserver.core.session.Session;
34 protected void handle(Command command, Session session) {
35 verifyLoggedIn(session);
36 sendReply(session, ReplyCodes.MODE_OK, "mode");
QuitCommandHandler.java 20 import org.mockftpserver.core.session.Session;
23 * CommandHandler for the QUIT command. Return a reply code of 221 and close the current session.
30 protected void handle(Command command, Session session) {
31 sendReply(session, ReplyCodes.QUIT_OK, "quit");
32 session.close();
RestCommandHandler.java 20 import org.mockftpserver.core.session.Session;
34 protected void handle(Command command, Session session) {
35 verifyLoggedIn(session);
36 sendReply(session, ReplyCodes.REST_OK, "rest");
SiteCommandHandler.java 20 import org.mockftpserver.core.session.Session;
33 protected void handle(Command command, Session session) {
34 verifyLoggedIn(session);
35 sendReply(session, ReplyCodes.SITE_OK, "site");
SmntCommandHandler.java 20 import org.mockftpserver.core.session.Session;
34 protected void handle(Command command, Session session) {
35 verifyLoggedIn(session);
36 sendReply(session, ReplyCodes.SMNT_OK, "smnt");
StruCommandHandler.java 20 import org.mockftpserver.core.session.Session;
34 protected void handle(Command command, Session session) {
35 verifyLoggedIn(session);
36 sendReply(session, ReplyCodes.STRU_OK, "stru");
ReinCommandHandler.java 20 import org.mockftpserver.core.session.Session;
21 import org.mockftpserver.core.session.SessionKeys;
35 protected void handle(Command command, Session session) {
36 session.removeAttribute(SessionKeys.USER_ACCOUNT);
37 sendReply(session, ReplyCodes.REIN_OK, "rein");
  /frameworks/base/tests/OneMedia/src/com/android/onemedia/
IPlayerCallback.aidl 18 import android.media.session.MediaSession;
21 void onSessionChanged(in MediaSession.Token session);
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/session/
DefaultSessionTest.java 16 package org.mockftpserver.core.session;
55 private DefaultSession session; field in class:DefaultSessionTest
71 session = createDefaultSession("");
114 session.socketFactory = stubSocketFactory;
115 session.setClientDataPort(PORT);
116 session.setClientDataHost(clientHost);
117 session.openDataConnection();
122 * Test the setClientDataPort() method after the session was in passive data mode
127 session.serverSocketFactory = stubServerSocketFactory;
129 session.switchToPassiveMode();
    [all...]
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsCallSessionListener.aidl 26 * A listener type for receiving notification on IMS call session events.
33 * Notifies the result of the basic session operation (setup / terminate).
35 void callSessionProgressing(in IImsCallSession session, in ImsStreamMediaProfile profile);
36 void callSessionStarted(in IImsCallSession session, in ImsCallProfile profile);
37 void callSessionStartFailed(in IImsCallSession session, in ImsReasonInfo reasonInfo);
38 void callSessionTerminated(in IImsCallSession session, in ImsReasonInfo reasonInfo);
43 void callSessionHeld(in IImsCallSession session, in ImsCallProfile profile);
44 void callSessionHoldFailed(in IImsCallSession session, in ImsReasonInfo reasonInfo);
45 void callSessionHoldReceived(in IImsCallSession session, in ImsCallProfile profile);
46 void callSessionResumed(in IImsCallSession session, in ImsCallProfile profile)
    [all...]

Completed in 817 milliseconds

1 2 3 4 5 6 7 8 91011>>