HomeSort by relevance Sort by last modified time
    Searched refs:session (Results 1 - 25 of 1550) 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;
  /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/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...]
session.h 20 * @file session.h
21 * @brief TCP connection/SPDY session handling
32 * Called by the daemon when the socket for the session has available
34 * session's read buffer. The latte
36 * @param session SPDY_Session for which data will be read.
37 * @return SPDY_YES if something was read or session's status was
44 SPDYF_session_read (struct SPDY_Session *session);
48 * Called by the daemon when the socket for the session is ready for some
53 * @param session SPDY_Session for which data will be written.
57 * session->max_num_frames SPDY frame
    [all...]
io_raw.h 72 * @param session SPDY_Session whose socket will be used
76 SPDYF_raw_new_session(struct SPDY_Session *session);
81 * closing session's socket.
83 * @param session SPDY_Session whose socket is used
86 SPDYF_raw_close_session(struct SPDY_Session *session);
93 * @param session for which data is received
101 SPDYF_raw_recv(struct SPDY_Session *session,
110 * @param session whose context is used
119 SPDYF_raw_send(struct SPDY_Session *session,
129 * @param session which is checke
    [all...]
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...]
io.h 44 * Any kind of error ocurred. The session has to be closed.
101 * @param session SPDY_Session whose socket will be used
105 (*SPDYF_IONewSession) (struct SPDY_Session *session);
110 * closing session's socket.
112 * @param session SPDY_Session whose socket is used
115 (*SPDYF_IOCloseSession) (struct SPDY_Session *session);
119 * Reading from session's socket. Reads available data and put it to the
122 * @param session for which data is received
130 (*SPDYF_IORecv) (struct SPDY_Session *session,
136 * Writing to session's socket. Writes the data given into the buffer to th
    [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/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
301 SSLSession session = session("" local
339 SSLSession session = session("" local
408 FakeSSLSession session = new FakeSSLSession(certificate); local
419 SSLSession session = session("" local
442 SSLSession session = session("" local
470 SSLSession session = session("" local
500 SSLSession session = session("" local
550 private SSLSession session(String certificate) throws Exception { method in class:HostnameVerifierTest
    [all...]
  /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;
PolicyGetDigest.c 16 SESSION *session; local
20 // Get pointer to the session structure
21 session = SessionGet(in->policySession);
23 out->policyDigest = session->u2.policyDigest;
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;
  /frameworks/support/media-compat/java/android/support/v4/media/session/
ParcelableVolumeInfo.aidl 16 package android.support.v4.media.session;
PlaybackStateCompat.aidl 16 package android.support.v4.media.session;
  /prebuilts/sdk/current/support/media-compat/aidl/android/support/v4/media/session/
ParcelableVolumeInfo.aidl 16 package android.support.v4.media.session;
PlaybackStateCompat.aidl 16 package android.support.v4.media.session;
  /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/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 = OPENSSL_malloc(sizeof(SSL_SESSION)); local
165 if (session == NULL) {
169 OPENSSL_memset(session, 0, sizeof(SSL_SESSION));
171 session->x509_method = x509_method;
172 session->verify_result = X509_V_ERR_INVALID_CALL
521 SSL_SESSION *session = ssl_session_new(ssl->ctx->x509_method); local
780 SSL_SESSION *session = NULL; local
845 SSL_SESSION *session = NULL; local
    [all...]
  /frameworks/base/telephony/java/android/telephony/ims/stub/
ImsCallSessionListenerImplBase.java 39 * Notifies the result of the basic session operation (setup / terminate).
42 public void callSessionProgressing(IImsCallSession session, ImsStreamMediaProfile profile) {
47 public void callSessionStarted(IImsCallSession session, ImsCallProfile profile) {
52 public void callSessionStartFailed(IImsCallSession session, ImsReasonInfo reasonInfo) {
57 public void callSessionTerminated(IImsCallSession session, ImsReasonInfo reasonInfo) {
65 public void callSessionHeld(IImsCallSession session, ImsCallProfile profile) {
70 public void callSessionHoldFailed(IImsCallSession session, ImsReasonInfo reasonInfo) {
75 public void callSessionHoldReceived(IImsCallSession session, ImsCallProfile profile) {
80 public void callSessionResumed(IImsCallSession session, ImsCallProfile profile) {
85 public void callSessionResumeFailed(IImsCallSession session, ImsReasonInfo reasonInfo)
    [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));
  /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");

Completed in 457 milliseconds

1 2 3 4 5 6 7 8 91011>>