| /frameworks/av/media/libstagefright/foundation/ |
| ANetworkSession.cpp | 56 NetworkThread(ANetworkSession *session); 69 struct ANetworkSession::Session : public RefBase { 84 Session(int32_t sessionID, 110 virtual ~Session(); 141 DISALLOW_EVIL_CONSTRUCTORS(Session); 145 ANetworkSession::NetworkThread::NetworkThread(ANetworkSession *session) 146 : mSession(session) { 160 ANetworkSession::Session::Session( 216 ANetworkSession::Session::~Session() 975 sp<Session> session; local 1177 const sp<Session> session = mSessions.valueAt(index); local 1216 const sp<Session> session = mSessions.valueAt(index); local 1234 const sp<Session> session = mSessions.valueAt(index); local 1263 const sp<Session> &session = mSessions.valueAt(i); local 1322 const sp<Session> &session = mSessions.valueAt(i); local 1401 sp<Session> session = *sessionsToAdd.begin(); local [all...] |
| /frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
| MediaControlIntent.java | 118 * Each remote media playback action is conducted within the scope of a session. 120 * another because at most one session can be valid at a time. 122 * A session can be created using the {@link #ACTION_START_SESSION start session action} 123 * and terminated using the {@link #ACTION_END_SESSION end session action} when the 124 * route provides explicit session management features. 126 * Explicit session management was added in a later revision of the protocol so not 127 * all routes support it. If the route does not support explicit session management 128 * then implicit session management may still be used. Implicit session managemen [all...] |
| /external/openssh/ |
| pkcs11.h | 716 typedef ck_rv_t (*ck_notify_t) (ck_session_handle_t session, 752 (ck_session_handle_t session, unsigned char *pin, 755 (ck_session_handle_t session, unsigned char *old_pin, 762 ck_session_handle_t *session)); 763 _CK_DECLARE_FUNCTION (C_CloseSession, (ck_session_handle_t session)); 766 (ck_session_handle_t session, 769 (ck_session_handle_t session, 773 (ck_session_handle_t session, 779 (ck_session_handle_t session, ck_user_type_t user_type, 781 _CK_DECLARE_FUNCTION (C_Logout, (ck_session_handle_t session)); [all...] |
| /external/chromium_org/net/spdy/ |
| spdy_session_pool_unittest.cc | 57 // A delegate that opens a new session when it is closed. 87 // Set up a SpdyStream to create a new session when it is closed. 88 // CloseCurrentSessions should not close the newly-created session. 115 // Setup the first session to the first host. 116 base::WeakPtr<SpdySession> session = local 125 // Set the stream to create a new session when it is closed. 128 session, GURL("http://www.foo.com"), 133 // Close the current session. 156 // Set up session 1 169 // Set up session 279 base::WeakPtr<SpdySession> session = local 369 base::WeakPtr<SpdySession> session = local [all...] |
| /external/chromium_org/third_party/tlslite/tlslite/ |
| SessionCache.py | 9 Caching sessions allows the client to use TLS session resumption 31 @param maxAge: The number of seconds before a session expires 50 session = self.entriesDict[sessionID] 53 #for the session to be invalidated later on (if a fatal alert 55 #returning the session. 57 if session.valid(): 58 return session 65 def __setitem__(self, sessionID, session): 69 self.entriesDict[sessionID] = session
|
| /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
| HandshakeProtocolTest.java | 106 hs_protocol.session = ses; 107 hs_protocol.session.protocol = ProtocolVersion.TLSv1; 112 hs_protocol.session.protocol.version, 113 hs_protocol.session.id, 116 hs_protocol.session.protocol.version, hs_protocol.session.id, 122 assertEquals(48, hs_protocol.session.master_secret.length); 150 hs_protocol.session = ses; 151 hs_protocol.session.protocol = ProtocolVersion.SSLv3; 156 hs_protocol.session.protocol.version [all...] |
| /external/chromium/base/win/ |
| event_trace_controller.h | 15 // A trace controller can create an event tracing session, which either 18 // A trace consumer consumes events from zero or one realtime session, 37 // event tracing session. 63 // Max string len for name and session name is 1024 per documentation. 66 // max length for name and session name. 87 // log levels and enable bit masks under the session. 93 // Start a session with given name and properties. 96 // Starts a session tracing to a file with some default properties. 101 // Starts a realtime session with some default properties. 105 // Enables "provider" at "level" for this session 139 TRACEHANDLE session() const { return session_; } function in class:base::win::EtwTraceController [all...] |
| /external/chromium_org/content/renderer/media/crypto/ |
| proxy_decryptor.h | 38 // Now that the Pepper API calls use session ID to match responses with 39 // requests, this class maintains a mapping between session ID and web session 40 // ID. Callers of this class expect web session IDs in the responses. 41 // Session IDs are internal unique references to the session. Web session IDs 42 // are the CDM generated ID for the session, and are what are visible to users. 50 // web session ID rather than the internal session ID [all...] |
| /external/chromium_org/net/quic/ |
| quic_client_session.h | 7 // a non-owning pointer to the helper so this session needs to ensure that 38 // An interface for observing events on a session. 56 int StartRequest(const base::WeakPtr<QuicClientSession>& session, 83 // Constructs a new session which will own |connection| and |helper|, but 84 // not |stream_factory|, which must outlive this session. 85 // TODO(rch): decouple the factory from the session via a Delegate interface. 142 // Close the session because of |error| and notifies the factory 143 // that this session has been closed, which will delete the session. 173 // A Session may be closed via any of three methods [all...] |
| quic_data_stream.cc | 17 #define ENDPOINT (session()->is_server() ? "Server: " : " Client: ") 50 QuicSession* session) 51 : ReliableQuicStream(id, session), 148 session()->decompressor()->current_header_id(); 156 session()->connection()->SendConnectionClose(QUIC_INVALID_HEADER_ID); 162 session()->MarkDecompressionBlocked(headers_id_, id()); 170 size_t bytes_consumed = session()->decompressor()->DecompressData( 183 // The session will have been closed in OnDecompressionError. 190 session()->decompressor()->current_header_id() != headers_id_; 213 return session()->peer_address() [all...] |
| quic_stream_factory.h | 98 // chain and signature. For http, this can be null. If a matching session 99 // already exists, this method will return OK. If no matching session exists, 109 // matching session already exists. Returns NULL otherwise. 114 // Called by a session when it becomes idle. 115 void OnIdleSession(QuicClientSession* session); 117 // Called by a session when it is going away and no more streams should be 119 void OnSessionGoingAway(QuicClientSession* session); 121 // Called by a session after it shuts down. 122 void OnSessionClosed(QuicClientSession* session); 175 QuicClientSession** session); [all...] |
| /external/qemu/slirp/ |
| if.c | 126 * of mbufs, each list belonging to one "session" (socket). This 128 * session, instead of all the packets from one session, then all packets 129 * from the next session, etc. Packets on the if_fastq get absolute 130 * priority, but if one session hogs the link, it gets "downgraded" 132 * to the fastq (eg. if the user does an ls -alR in a telnet session, 156 * See if there's already a batchq list for this session. 157 * This can include an interactive session, which should go on fastq, 177 * packet's session 187 /* Create a new doubly linked list for this session */ [all...] |
| /external/qemu/slirp-android/ |
| if.c | 126 * of mbufs, each list belonging to one "session" (socket). This 128 * session, instead of all the packets from one session, then all packets 129 * from the next session, etc. Packets on the if_fastq get absolute 130 * priority, but if one session hogs the link, it gets "downgraded" 132 * to the fastq (eg. if the user does an ls -alR in a telnet session, 156 * See if there's already a batchq list for this session. 157 * This can include an interactive session, which should go on fastq, 177 * packet's session 187 /* Create a new doubly linked list for this session */ [all...] |
| /external/chromium_org/net/socket/ |
| client_socket_pool_manager.cc | 73 HttpNetworkSession* session, 99 if (!using_ssl && session->params().testing_fixed_http_port != 0) { 100 origin_host_port.set_port(session->params().testing_fixed_http_port); 101 } else if (using_ssl && session->params().testing_fixed_https_port != 0) { 102 origin_host_port.set_port(session->params().testing_fixed_https_port); 111 if (session->params().ignore_certificate_errors) 198 session->http_auth_cache(), 199 session->http_auth_handler_factory(), 200 session->spdy_session_pool(), 236 ssl_pool = session->GetSSLSocketPool(socket_pool_type) [all...] |
| /external/replicaisland/src/com/replica/replicaisland/ |
| EventReporter.java | 22 public long session; field in class:EventReporter.Event 55 public void addEvent(int eventType, float x, float y, float time, String level, int version, long session) { 62 event.session = session; 93 + "&session=" + event.session);
|
| /frameworks/base/core/java/android/hardware/display/ |
| WifiDisplaySessionInfo.java | 23 * This class contains information regarding a wifi display session 24 * (such as session id, source ip address, etc.). This is needed for 44 int session = in.readInt(); 49 return new WifiDisplaySessionInfo(client, session, group, pp, ip); 63 boolean client, int session, String group, String pp, String ip) { 65 mSessionId = session;
|
| /frameworks/base/core/java/android/net/ |
| SSLSessionCache.java | 30 * connection to the same server, using an SSL session cache can save some time, 41 * Create a session cache using the specified directory. 42 * Individual session entries will be files within the directory. 45 * @param dir to store session files in (created if necessary) 53 * Create a session cache at the default location for this app. 64 Log.w(TAG, "Unable to create SSL session cache in " + dir, e);
|
| /external/linux-tools-perf/util/ |
| header.c | 24 #include "session.h" 197 struct perf_session *session = container_of(header, local 200 int err = machine__write_buildid_table(&session->host_machine, fd); 205 for (nd = rb_first(&session->machines); nd; nd = rb_next(nd)) { 345 static int perf_session__cache_build_ids(struct perf_session *session) 356 ret = machine__cache_build_ids(&session->host_machine, debugdir); 358 for (nd = rb_first(&session->machines); nd; nd = rb_next(nd)) { 372 static bool perf_session__read_build_ids(struct perf_session *session, bool with_hits) 375 bool ret = machine__read_build_ids(&session->host_machine, with_hits); 377 for (nd = rb_first(&session->machines); nd; nd = rb_next(nd)) 389 struct perf_session *session; local 731 struct perf_session *session = container_of(header, struct perf_session, header); local 774 struct perf_session *session = container_of(header, struct perf_session, header); local [all...] |
| /libcore/crypto/src/main/java/org/conscrypt/ |
| OpenSSLSessionImpl.java | 56 * Class constructor creates an SSL session context given the appropriate 71 * Constructs a session from a byte[] containing DER data. This 72 * allows loading the saved session. 88 throw new IOException("Invalid session data"); 93 * Gets the identifier of the actual SSL session 105 * SSL_SESSION. It can change during the lifetime of the session 106 * because while a session is created during initial handshake, 108 * before we have read the session ticket from the server side and 116 * Get the session object in DER format. This allows saving the session [all...] |
| /frameworks/av/drm/libdrmframework/plugins/common/include/ |
| DrmEngineBase.h | 114 * @param[in] uniqueId Unique identifier for a session 129 * @param[in] uniqueId Unique identifier for a session 141 * @param[in] uniqueId Unique identifier for a session 151 * @param[in] uniqueId Unique identifier for a session. uniqueId is a random 169 * @param[in] uniqueId Unique identifier for a session 178 * @param[in] uniqueId Unique identifier for a session 188 * @param[in] uniqueId Unique identifier for a session 199 * @param[in] uniqueId Unique identifier for a session 213 * @param[in] uniqueId Unique identifier for a session 223 * @param[in] uniqueId Unique identifier for a session [all...] |
| /device/samsung/manta/voicefx/ |
| eS305VoiceProcessing.cpp | 47 // Session state 83 adnc_pfx_session_t *session; // session the effect is on member in struct:adnc_pfx_effect_s 87 // Session context 92 //int audioSessionId; // audio session ID 93 int ioHandle; // handle of input stream this session is on 96 struct adnc_pfx_effect_s effects[PFX_ID_CNT]; // effects in this session 460 void AdncSession_SetProcEnabled(adnc_pfx_session_t *session, uint32_t procId, bool enabled); 471 AdncSession_SetProcEnabled(effect->session, effect->procId, false); 503 AdncSession_SetProcEnabled(effect->session, effect->procId, false) 961 adnc_pfx_session_t *session; local 1468 adnc_pfx_session_t * session = AdncBundle_GetSession_l( local 1506 adnc_pfx_session_t * session = AdncBundle_GetSession_l( local [all...] |
| /external/chromium_org/remoting/protocol/ |
| connection_to_client.cc | 20 ConnectionToClient::ConnectionToClient(protocol::Session* session) 25 session_(session) { 37 protocol::Session* ConnectionToClient::session() { function in class:remoting::protocol::ConnectionToClient 104 void ConnectionToClient::OnSessionStateChange(Session::State state) { 109 case Session::INITIALIZING: 110 case Session::CONNECTING: 111 case Session::ACCEPTING: 112 case Session::CONNECTED [all...] |
| /external/chromium_org/sync/test/accounts_client/ |
| test_accounts_client.cc | 79 bool TestAccountsClient::ClaimAccount(AccountSession* session) { 102 dict_value->GetString("username", &session->username); 103 dict_value->GetString("account_space", &session->account_space); 104 dict_value->GetString("session_id", &session->session_id); 105 dict_value->GetString("expiration_time", &session->expiration_time); 113 void TestAccountsClient::ReleaseAccount(const AccountSession& session) { 116 if (session.username.empty() || session.account_space.empty() || 117 account_space_.compare(session.account_space) != 0 || 118 session.session_id.empty()) [all...] |
| /external/chromium_org/sync/engine/ |
| download.cc | 84 SyncSession* session, 87 message->set_share(session->context()->account_name()); 99 bool need_encryption_key = ShouldRequestEncryptionKey(session->context()); 104 session->context()->notifications_enabled()); 197 SyncSession* session, 208 session, 214 session->context()->update_handler_map(), 256 SyncSession* session, 266 session, 271 session->context()->update_handler_map() [all...] |
| /external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
| session.cc | 28 #include "talk/p2p/base/session.h" 331 case Session::STATE_INIT: 333 case Session::STATE_SENTINITIATE: 335 case Session::STATE_RECEIVEDINITIATE: 337 case Session::STATE_SENTPRACCEPT: 339 case Session::STATE_SENTACCEPT: 341 case Session::STATE_RECEIVEDPRACCEPT: 343 case Session::STATE_RECEIVEDACCEPT: 345 case Session::STATE_SENTMODIFY: 347 case Session::STATE_RECEIVEDMODIFY [all...] |