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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/issue5614.dir/
x.go 5 var S *rethinkgo.Session
rethinkgo.go 3 type Session struct {
6 func (s *Session) Run(query Exp) *int { return nil }
  /prebuilts/go/linux-x86/test/fixedbugs/issue5614.dir/
x.go 5 var S *rethinkgo.Session
rethinkgo.go 3 type Session struct {
6 func (s *Session) Run(query Exp) *int { return nil }
  /external/tpm2/
PolicyRestart.c 15 SESSION *session; local
20 session = SessionGet(in->sessionHandle);
21 wasTrialSession = session->attributes.isTrialPolicy == SET;
23 // Initialize policy session
24 SessionResetPolicyData(session);
26 session->attributes.isTrialPolicy = wasTrialSession;
PolicyAuthValue.c 16 SESSION *session; local
22 // Get pointer to the session structure
23 session = SessionGet(in->policySession);
28 CryptStartHash(session->authHashAlg, &hashState);
31 CryptUpdateDigest2B(&hashState, &session->u2.policyDigest.b);
37 CryptCompleteHash2B(&hashState, &session->u2.policyDigest.b);
39 // update isAuthValueNeeded bit in the session context
40 session->attributes.isAuthValueNeeded = SET;
41 session->attributes.isPasswordNeeded = CLEAR
    [all...]
PolicyGetDigest.c 16 SESSION *session; local
20 // Get pointer to the session structure
21 session = SessionGet(in->policySession);
23 out->policyDigest = session->u2.policyDigest;
Session_fp.h 27 SESSION *session, // IN: session structure from saved context
28 TPM_HANDLE *handle // IN/OUT: session handle
30 TPM_RC SessionContextSave(TPM_HANDLE handle, // IN: session handle
33 TPM_RC SessionCreate(TPM_SE sessionType, // IN: the session type
39 TPM_HANDLE *sessionHandle // OUT: the session handle
41 void SessionFlush(TPM_HANDLE handle // IN: loaded or saved session handle
43 SESSION *SessionGet(TPM_HANDLE handle // IN: session handl
    [all...]
PolicyPassword.c 16 SESSION *session; local
22 // Get pointer to the session structure
23 session = SessionGet(in->policySession);
28 CryptStartHash(session->authHashAlg, &hashState);
31 CryptUpdateDigest2B(&hashState, &session->u2.policyDigest.b);
37 CryptCompleteHash2B(&hashState, &session->u2.policyDigest.b);
40 session->attributes.isPasswordNeeded = SET;
41 session->attributes.isAuthValueNeeded = CLEAR;
PolicyPhysicalPresence.c 15 SESSION *session; local
21 // Get pointer to the session structure
22 session = SessionGet(in->policySession);
27 CryptStartHash(session->authHashAlg, &hashState);
30 CryptUpdateDigest2B(&hashState, &session->u2.policyDigest.b);
36 CryptCompleteHash2B(&hashState, &session->u2.policyDigest.b);
38 // update session attribute
39 session->attributes.isPPRequired = SET;
PolicyDuplicationSelect.c 22 SESSION *session; local
28 // Get pointer to the session structure
29 session = SessionGet(in->policySession);
31 // cpHash in session context must be empty
32 if(session->u1.cpHash.t.size != 0)
35 // commandCode in session context must be empty
36 if(session->commandCode != 0)
42 session->u1.cpHash.t.size = CryptStartHash(session->authHashAlg, &hashState)
    [all...]
PolicyNvWritten.c 22 SESSION *session; local
28 // Get pointer to the session structure
29 session = SessionGet(in->policySession);
33 if(session->attributes.checkNvWritten == SET)
35 if(( (session->attributes.nvWrittenState == SET)
42 // Set session attributes so that the NV Index needs to be checked
43 session->attributes.checkNvWritten = SET;
44 session->attributes.nvWrittenState = (in->writtenSet == YES);
50 CryptStartHash(session->authHashAlg, &hashState)
    [all...]
  /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...]
  /external/libmicrohttpd/src/microspdy/
session.c 20 * @file session.c
21 * @brief TCP connection/SPDY session handling. So far most of the
29 #include "session.h"
39 * of the session. New stream is created.
41 * @param session SPDY_Session whose read buffer is used.
44 spdyf_handler_read_syn_stream (struct SPDY_Session *session)
53 SPDYF_ASSERT(SPDY_SESSION_STATUS_WAIT_FOR_SUBHEADER == session->status
54 || SPDY_SESSION_STATUS_WAIT_FOR_BODY == session->status,
57 frame = (struct SPDYF_Control_Frame *)session->frame_handler_cls;
60 if(SPDY_SESSION_STATUS_WAIT_FOR_SUBHEADER == session->status
1393 struct SPDY_Session *session = NULL; local
    [all...]
stream.c 28 #include "session.h"
32 SPDYF_stream_new (struct SPDY_Session *session)
38 size_t buffer_pos = session->read_buffer_beginning;
42 if((session->read_buffer_offset - session->read_buffer_beginning) < 10)
48 frame = (struct SPDYF_Control_Frame *)session->frame_handler_cls;
51 memcpy(&stream_id, session->read_buffer + session->read_buffer_beginning, 4);
53 session->read_buffer_beginning += 4;
54 if(stream_id <= session->last_in_stream_id || 0==(stream_id % 2)
    [all...]
  /frameworks/av/camera/ndk/
NdkCameraCaptureSession.cpp 34 void ACameraCaptureSession_close(ACameraCaptureSession* session) {
36 if (session != nullptr) {
37 session->closeByApp();
44 ACameraCaptureSession* session, ACameraDevice **device) {
46 if (session == nullptr || device == nullptr) {
47 ALOGE("%s: Error: invalid input: session %p, device %p",
48 __FUNCTION__, session, device);
52 if (session->isClosed()) {
53 ALOGE("%s: session %p is already closed", __FUNCTION__, session);
    [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/opt/net/ims/src/java/com/android/ims/internal/
ImsCallSession.java 41 * Defines IMS call session state.
91 * Listener for events relating to an IMS session, such as when a session is being
97 * Called when a request is sent out to initiate a new session
100 * @param session the session object that carries out the IMS session
102 public void callSessionProgressing(ImsCallSession session,
108 * Called when the session is established.
110 * @param session the session object that carries out the IMS sessio
    [all...]
  /external/dbus/test/data/valid-config-files/
.gitignore 3 session.conf
5 run-with-tmp-session-bus.conf
  /external/autotest/client/virt/tests/
yum_update.py 4 def internal_yum_update(session, command, prompt, timeout):
8 @param session: shell session stablished to the host
9 @param command: Command to be sent to the shell session
12 the shell session.
14 session.sendline(command)
17 match = session.read_until_last_line_matches(
22 session.sendline("y")
43 session = vm.wait_for_login(timeout=timeout)
45 internal_yum_update(session, "yum update", params.get("shell_prompt"), 600
    [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...]
  /external/boringssl/src/ssl/
ssl_session.c 152 * SSL_magic_pending_session_ptr(). It allows a session callback to indicate
153 * that it needs to asynchronously fetch session information. */
159 static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *session);
160 static void SSL_SESSION_list_add(SSL_CTX *ctx, SSL_SESSION *session);
161 static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *session, int lock);
164 SSL_SESSION *session = (SSL_SESSION *)OPENSSL_malloc(sizeof(SSL_SESSION)); local
165 if (session == NULL) {
169 memset(session, 0, sizeof(SSL_SESSION));
171 session->verify_result = 1; /* avoid 0 (= X509_V_OK) just in case */
172 session->references = 1
307 SSL_SESSION *session = SSL_SESSION_new(); local
372 SSL_SESSION *session; local
432 SSL_SESSION *session = NULL; local
    [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...]

Completed in 458 milliseconds

1 2 3 4 5 6 7 8 91011>>