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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/opt/net/voip/src/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...]
  /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/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
PairingListener.java 22 * Listener interface for handling events within a pairing session.
33 * Called at the start of a new pairing session. The session object can be
36 * @param session the pairing session
38 void onSessionCreated(PairingSession session);
41 * Called when the session calls for the local entity to act as the input
44 * @param session the pairing session
47 void onPerformInputDeviceRole(PairingSession session) throws PoloException
    [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...]
  /frameworks/opt/net/ims/src/java/com/android/ims/internal/
ImsCallSession.java 40 * Defines IMS call session state.
90 * Listener for events relating to an IMS session, such as when a session is being
96 * Called when a request is sent out to initiate a new session
99 * @param session the session object that carries out the IMS session
101 public void callSessionProgressing(ImsCallSession session,
107 * Called when the session is established.
109 * @param session the session object that carries out the IMS sessio
    [all...]
  /external/jetty/src/resources/org/eclipse/jetty/server/session/jmx/
AbstractSessionManager-mbean.properties 1 AbstractSessionManager: Abstract Session Manager
4 maxCookieAge: if greater than zero, the time in seconds a session cookie will last for
5 maxInactiveInterval: default maximum time in seconds a session may be idle
6 refreshCookieAge: The time in seconds after which a session cookie is re-set
7 secureCookies: If true, the secure cookie flag is set on session cookies
8 sessionCookie: The set session cookie
9 sessionDomain: The domain of the session cookie or null for the default
10 sessionPath: The path of the session cookie or null for the default
12 sessionIdPathParameterName: The name to use for URL session tracking
16 sessionTimeMax: Maximum amount of time in seconds session remained valid since statsReset() was calle
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
BordeauxSessionManager.java 41 static class Session {
71 private ConcurrentHashMap<String, Session> mSessions =
72 new ConcurrentHashMap<String, Session>();
87 // Save the session
88 Session session = mSessions.get(mKey); local
89 if (session != null) {
90 synchronized(session) {
91 if (session.learner != learner) {
92 throw new RuntimeException("Session data corrupted!")
131 Session session = new Session(); local
156 Session session = mSessions.get(key.value); 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/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
AbstractFakeCommandHandler.java 24 import org.mockftpserver.core.session.Session;
25 import org.mockftpserver.core.session.SessionKeys;
54 * Reply code sent back when a FileSystemException is caught by the {@link #handleCommand(Command, Session)}
70 public void handleCommand(Command command, Session session) {
73 Assert.notNull(session, "session");
76 handle(command, session);
79 handleException(command, session, e, ReplyCodes.COMMAND_SYNTAX_ERROR);
    [all...]
  /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);
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
_AbstractTrackingCommandHandlerTest.java 21 import org.mockftpserver.core.session.Session;
54 private Session session; field in class:_AbstractTrackingCommandHandlerTest
57 * Test the handleCommand(Command,Session) method
61 commandHandler.handleCommand(COMMAND, session);
67 * Test the handleCommand(Command,Session) method, passing in a null Command
71 commandHandler.handleCommand(null, session);
80 * Test the handleCommand(Command,Session) method, passing in a null Session
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/session/
JDBCSessionManager.java 20 package org.eclipse.jetty.server.session;
56 * Session data is persisted to the JettySessions table:
59 * contextPath (of the context owning the session)
61 * lastNode (name of node last handled session)
62 * accessTime (time in milliseconds session was accessed)
63 * lastAccessTime (previous time in milliseconds session was accessed)
64 * createTime (time in milliseconds session created)
65 * cookieTime (time in milliseconds session cookie created)
66 * lastSavedTime (last time in milliseconds session access times were saved)
67 * expiryTime (time in milliseconds that the session is due to expire
445 Session session = null; local
622 Session session = null; local
645 Session session = (Session)_sessions.remove(idInCluster); local
673 _sessions.put(session.getClusterId(), session); local
774 Session session = (Session)_sessions.get(sessionId); local
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/core/session/
DefaultSessionTest.java 16 package org.mockftpserver.core.session;
54 private DefaultSession session; field in class:DefaultSessionTest
70 session = createDefaultSession("");
113 session.socketFactory = stubSocketFactory;
114 session.setClientDataPort(PORT);
115 session.setClientDataHost(clientHost);
116 session.openDataConnection();
121 * Test the setClientDataPort() method after the session was in passive data mode
126 session.serverSocketFactory = stubServerSocketFactory;
128 session.switchToPassiveMode();
    [all...]
  /external/clang/test/Driver/
modules.m 7 // RUN: %clang -fbuild-session-file=doesntexist -### %s 2>&1 | FileCheck -check-prefix=NOFILE %s
10 // RUN: touch -m -a -t 201008011501 %t.build-session-file
11 // RUN: %clang -fbuild-session-file=%t.build-session-file -### %s 2>&1 | FileCheck -check-prefix=TIMESTAMP_ONLY %s
13 // RUN: %clang -fbuild-session-timestamp=1280703457 -### %s 2>&1 | FileCheck -check-prefix=TIMESTAMP_ONLY %s
14 // TIMESTAMP_ONLY: -fbuild-session-timestamp=128
16 // RUN: %clang -fbuild-session-file=%t.build-session-file -fbuild-session-timestamp=123 -### %s 2>&1 | FileCheck -check-prefix=CONFLICT %s
17 // CONFLICT: error: invalid argument '-fbuild-session-file={{.*}}.build-session-file' not allowed with '-fbuild-session-timestamp
    [all...]
  /frameworks/av/media/libeffects/preprocessing/
PreProcessing.cpp 50 // Session state
89 preproc_session_t *session; // session the effect is on member in struct:preproc_effect_s
98 // Session context
100 struct preproc_effect_s effects[PREPROC_NUM_EFFECTS]; // effects in this session
102 int id; // audio session ID
103 int io; // handle of input stream this session is on
281 webrtc::GainControl *agc = effect->session->apm->gain_control();
444 webrtc::EchoControlMobile *aec = effect->session->apm->echo_control_mobile();
469 *(uint32_t *)pValue = 1000 * effect->session->apm->stream_delay_ms()
1174 preproc_session_t * session = (preproc_session_t *)effect->session; local
1726 preproc_session_t * session = (preproc_session_t *)effect->session; local
1833 preproc_session_t *session; local
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
_AbstractFakeCommandHandlerTest.groovy 23 import org.mockftpserver.core.session.Session
24 import org.mockftpserver.core.session.SessionKeys
25 import org.mockftpserver.core.session.StubSession
53 private session
65 commandHandler.handleCommand(command, session)
73 shouldFail { commandHandler.handleCommand(null, session) }
84 commandHandler.sendReply(session, REPLY_CODE)
85 assert session.sentReplies[0] == [REPLY_CODE, MSG], session.sentReplies[0
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
ClientSessionContext.java 25 * looking to reuse any session for a given host and port.
51 protected void sessionRemoved(SSLSession session) {
52 String host = session.getPeerHost();
53 int port = session.getPeerPort();
64 * Finds a cached session for the given host name and port.
68 * @return cached session or null if none found
74 SSLSession session; local
77 session = sessionsByHostAndPort.get(hostAndPortKey);
79 if (session != null && session.isValid())
    [all...]
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...]
  /external/openssh/contrib/aix/
pam.conf 18 # Session Management
19 sshd session required /usr/lib/security/pam_aix
20 OTHER session required /usr/lib/security/pam_aix
  /external/linux-tools-perf/src/tools/perf/arch/
common.h 4 #include "../util/session.h"
  /external/openssh/contrib/
sshd.pam.freebsd 4 sshd session required pam_permit.so
  /external/selinux/policycoreutils/newrole/
newrole-lspp.pamd 5 session required pam_namespace.so unmnt_remnt no_unmount_on_close
  /frameworks/av/drm/mediadrm/plugins/clearkey/
DrmPlugin.cpp 26 #include "Session.h"
33 sp<Session> session = mSessionLibrary->createSession(); local
34 sessionId = session->sessionId();
39 sp<Session> session = mSessionLibrary->findSession(sessionId); local
40 if (session.get()) {
41 mSessionLibrary->destroySession(session);
61 sp<Session> session = mSessionLibrary->findSession(scope) local
72 sp<Session> session = mSessionLibrary->findSession(scope); local
    [all...]

Completed in 46 milliseconds

1 2 3 4 5 6 7 8 91011>>