HomeSort by relevance Sort by last modified time
    Searched full:session (Results 26 - 50 of 4514) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libmicrohttpd/src/microspdy/
io.c 58 SPDYF_io_set_session(struct SPDY_Session *session,
64 session->fio_new_session = &SPDYF_openssl_new_session;
65 session->fio_close_session = &SPDYF_openssl_close_session;
66 session->fio_is_pending = &SPDYF_openssl_is_pending;
67 session->fio_recv = &SPDYF_openssl_recv;
68 session->fio_send = &SPDYF_openssl_send;
69 session->fio_before_write = &SPDYF_openssl_before_write;
70 session->fio_after_write = &SPDYF_openssl_after_write;
74 session->fio_new_session = &SPDYF_raw_new_session;
75 session->fio_close_session = &SPDYF_raw_close_session
    [all...]
  /external/tpm2/
PolicyCpHash.c 23 SESSION *session; local
29 // Get pointer to the session structure
30 session = SessionGet(in->policySession);
32 // A new cpHash is given in input parameter, but cpHash in session context
35 && session->u1.cpHash.t.size != 0
36 && !Memory2BEqual(&in->cpHashA.b, &session->u1.cpHash.b)
40 // A valid cpHash must have the same size as session hash digest
41 if(in->cpHashA.t.size != CryptGetHashDigestSize(session->authHashAlg))
49 CryptStartHash(session->authHashAlg, &hashState)
    [all...]
Policy_spt_fp.h 16 SESSION *session // IN/OUT: policy session to be updated
18 TPM_RC PolicyParameterChecks(SESSION *session, UINT64 authTimeout,
PolicyCommandCode.c 21 SESSION *session; local
27 // Get pointer to the session structure
28 session = SessionGet(in->policySession);
30 if(session->commandCode != 0 && session->commandCode != in->code)
39 CryptStartHash(session->authHashAlg, &hashState);
42 CryptUpdateDigest2B(&hashState, &session->u2.policyDigest.b);
51 CryptCompleteHash2B(&hashState, &session->u2.policyDigest.b);
53 // update commandCode value in session contex
    [all...]
PolicyNameHash.c 23 SESSION *session; local
29 // Get pointer to the session structure
30 session = SessionGet(in->policySession);
32 // A new nameHash is given in input parameter, but cpHash in session context
34 if(in->nameHash.t.size != 0 && session->u1.cpHash.t.size != 0)
37 // A valid nameHash must have the same size as session hash digest
38 if(in->nameHash.t.size != CryptGetHashDigestSize(session->authHashAlg))
46 CryptStartHash(session->authHashAlg, &hashState);
49 CryptUpdateDigest2B(&hashState, &session->u2.policyDigest.b)
    [all...]
PolicyOR.c 23 SESSION *session; local
28 // Get pointer to the session structure
29 session = SessionGet(in->policySession);
31 // Compare and Update Internal Session policy if match
34 if( session->attributes.isTrialPolicy == SET
35 || (Memory2BEqual(&session->u2.policyDigest.b,
44 session->u2.policyDigest.t.size = CryptStartHash(session->authHashAlg,
47 MemorySet(session->u2.policyDigest.t.buffer, 0
    [all...]
PolicyPCR.c 22 SESSION *session; local
33 // Get pointer to the session structure
34 session = SessionGet(in->policySession);
36 // Do validation for non trial session
37 if(session->attributes.isTrialPolicy == CLEAR)
40 if(session->pcrCounter != 0 && session->pcrCounter != gr.pcrCounter)
44 PCRComputeCurrentDigest(session->authHashAlg, &in->pcrs, &pcrDigest);
56 // For trial session, just use the input PCR diges
    [all...]
  /packages/apps/DevCamera/src/com/android/devcamera/
LoggingCallbacks.java 65 public void onConfigured(CameraCaptureSession session) {
67 Log.v(TAG, "Capture session callback onConfigured("+session+")");
72 public void onConfigureFailed(CameraCaptureSession session) {
73 Log.v(TAG, "Capture session callback onConfigureFailed("+session+")");
74 super.onReady(session);
78 public void onReady(CameraCaptureSession session) {
80 Log.v(TAG, "Capture session callback onReady("+session+")")
    [all...]
  /system/tpm/trunks/
policy_session_test.cc 47 HmacAuthorizationDelegate* GetHmacDelegate(PolicySessionImpl* session) {
48 return &(session->hmac_delegate_);
58 PolicySessionImpl session(factory_);
61 EXPECT_EQ(nullptr, session.GetDelegate());
65 PolicySessionImpl session(factory_);
66 EXPECT_EQ(GetHmacDelegate(&session), session.GetDelegate());
70 PolicySessionImpl session(factory_);
72 session.StartBoundSession(TPM_RH_FIRST, "auth", true));
76 PolicySessionImpl session(factory_)
    [all...]
hmac_session_test.cc 47 HmacAuthorizationDelegate* GetHmacDelegate(HmacSessionImpl* session) {
48 return &(session->hmac_delegate_);
58 HmacSessionImpl session(factory_);
61 EXPECT_EQ(nullptr, session.GetDelegate());
65 HmacSessionImpl session(factory_);
66 EXPECT_EQ(GetHmacDelegate(&session), session.GetDelegate());
70 HmacSessionImpl session(factory_);
75 EXPECT_EQ(TPM_RC_SUCCESS, session.StartBoundSession(bind_entity, "", true));
79 HmacSessionImpl session(factory_)
    [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...]
  /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
99 // Session context
101 struct preproc_effect_s effects[PREPROC_NUM_EFFECTS]; // effects in this session
103 int id; // audio session ID
104 int io; // handle of input stream this session is on
282 webrtc::GainControl *agc = effect->session->apm->gain_control();
445 webrtc::EchoControlMobile *aec = effect->session->apm->echo_control_mobile();
470 *(uint32_t *)pValue = 1000 * effect->session->apm->stream_delay_ms()
1219 preproc_session_t * session = (preproc_session_t *)effect->session; local
1786 preproc_session_t * session = (preproc_session_t *)effect->session; local
1900 preproc_session_t *session; local
    [all...]
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsCallSessionListener.aidl 27 * A listener type for receiving notification on IMS call session events.
34 * Notifies the result of the basic session operation (setup / terminate).
36 void callSessionProgressing(in IImsCallSession session, in ImsStreamMediaProfile profile);
37 void callSessionStarted(in IImsCallSession session, in ImsCallProfile profile);
38 void callSessionStartFailed(in IImsCallSession session, in ImsReasonInfo reasonInfo);
39 void callSessionTerminated(in IImsCallSession session, in ImsReasonInfo reasonInfo);
44 void callSessionHeld(in IImsCallSession session, in ImsCallProfile profile);
45 void callSessionHoldFailed(in IImsCallSession session, in ImsReasonInfo reasonInfo);
46 void callSessionHoldReceived(in IImsCallSession session, in ImsCallProfile profile);
47 void callSessionResumed(in IImsCallSession session, in ImsCallProfile profile)
    [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.
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...]
  /frameworks/opt/net/voip/src/java/android/net/sip/
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...]
  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsCallSessionListenerBase.java 31 * Notifies the result of the basic session operation (setup / terminate).
34 public void callSessionProgressing(IImsCallSession session, ImsStreamMediaProfile profile) {
39 public void callSessionStarted(IImsCallSession session, ImsCallProfile profile) {
44 public void callSessionStartFailed(IImsCallSession session, ImsReasonInfo reasonInfo) {
49 public void callSessionTerminated(IImsCallSession session, ImsReasonInfo reasonInfo) {
57 public void callSessionHeld(IImsCallSession session, ImsCallProfile profile) {
62 public void callSessionHoldFailed(IImsCallSession session, ImsReasonInfo reasonInfo) {
67 public void callSessionHoldReceived(IImsCallSession session, ImsCallProfile profile) {
72 public void callSessionResumed(IImsCallSession session, ImsCallProfile profile) {
77 public void callSessionResumeFailed(IImsCallSession session, ImsReasonInfo reasonInfo)
    [all...]
  /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...]
  /prebuilts/maven_repo/android/com/android/support/support-v4/22.0.0/
support-v4-22.0.0.aar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/22.1.0/
support-v4-22.1.0.aar 

Completed in 4264 milliseconds

12 3 4 5 6 7 8 91011>>