HomeSort by relevance Sort by last modified time
    Searched full:session (Results 101 - 125 of 3983) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium/net/spdy/
spdy_session_pool.cc 67 // Check if we have a Session through a domain alias.
76 "session", spdy_session->net_log().source())));
91 "session", spdy_session->net_log().source())));
104 "session", spdy_session->net_log().source())));
119 // Create the SPDY session and add it to the pool.
131 "session", (*spdy_session)->net_log().source())));
133 // Now we can initialize the session with the SSL socket.
143 // Check if we have a session via an alias.
149 void SpdySessionPool::Remove(const scoped_refptr<SpdySession>& session) {
150 SpdySessionList* list = GetSessionList(session->host_port_proxy_pair())
374 const scoped_refptr<SpdySession>& session = list->front(); local
389 const scoped_refptr<SpdySession>& session = list->front(); local
397 const scoped_refptr<SpdySession>& session = list->front(); local
420 const scoped_refptr<SpdySession>& session = *session_it; local
    [all...]
  /external/chromium_org/net/socket/
ssl_session_cache_openssl_unittest.cc 17 // session for an existing SSL object. This shall force a call to the
18 // 'generate_session_id' callback from the SSL's session context.
20 // |session| is non-0 to ask for the creation of a new session. If 0,
21 // this will set an empty session with no ID instead.
22 extern "C" int ssl_get_new_session(SSL* s, int session);
25 // a new session to the cache. It is normally triggered by a succesful
121 // a given unique |cache_key|. This does _not_ add the session to the cache.
129 ResetSessionID(ssl); // create new unique session ID.
133 // Reset the session ID of a given SSL object. This creates a new sessio
208 SSL_SESSION* session = ssl.get()->session; local
270 SSL_SESSION* session = ssl.get()->session; local
    [all...]
  /external/chromium/chrome/browser/sync/sessions/
sync_session.h 9 // session status in response to events and hiccups along the way, set and
10 // query session progress with regards to conflict resolution and applying
11 // server updates, and access the SyncSessionContext for the current session
45 // The Delegate services events that occur during the session requiring an
46 // explicit (and session-global) action, as opposed to events that are simply
47 // recorded in per-session state.
57 // as the delegate ensures no session is started if syncing is silenced.
59 // session and the interval has not yet elapsed, but the contract here is
61 // that any given session _instance_ is silenced. An example of reasonable
90 // Builds a thread-safe and read-only copy of the current session state
    [all...]
  /external/chromium_org/content/browser/speech/
speech_recognition_manager_impl.cc 98 // Set-up the new session.
99 Session* session = new Session(); local
100 sessions_[session_id] = session;
101 session->id = session_id;
102 session->config = config;
103 session->context = config.initial_context;
147 session->recognizer = new SpeechRecognizerImpl(
153 session->recognizer = new SpeechRecognizerImplAndroid(this, session_id)
189 Session* session = iter->second; local
460 Session* session = it->second; local
474 Session* session = it->second; local
568 Session* session = GetSession(session_id); local
657 Session* session = GetSession(session_id); local
    [all...]
  /libcore/luni/src/main/java/javax/net/ssl/
SSLSession.java 25 * The interface representing an SSL session.
31 * session.
38 * Returns the name of the cipher suite used in this session.
40 * @return the name of the cipher suite used in this session.
45 * Returns the time this session was created, in milliseconds since midnight
48 * @return the time the session was created.
60 * Returns the time this session was last accessed, in milliseconds since
63 * @return the time this session was last accessed.
85 * Returns the maximum size that a network buffer can be for this session.
117 * Returns the host name of the peer of this session. The host name is no
    [all...]
SSLSessionBindingEvent.java 32 * Creates a new {@code SSLSessionBindingEvent} for the specified session
35 * @param session
36 * the session for which the event occurs.
40 public SSLSessionBindingEvent(SSLSession session, String name) {
41 super(session);
55 * Returns the session to which the binding is added or from which it is
58 * @return the session to which the binding is added or from which it is
HandshakeCompletedEvent.java 31 private transient SSLSession session; field in class:HandshakeCompletedEvent
35 * socket and SSL session.
40 * the SSL session.
44 session = s;
48 * Returns the SSL session associated with this event.
50 * @return the SSL session associated with this event.
53 return session;
62 return session.getCipherSuite();
74 return session.getLocalCertificates();
87 return session.getPeerCertificates()
    [all...]
  /external/chromium_org/chrome/test/chromedriver/
commands_unittest.cc 23 #include "chrome/test/chromedriver/session.h"
78 Session session("id");
79 Session session2("id2");
80 map[session.id] = make_linked_ptr(new base::Thread("1"));
97 Session* session,
100 EXPECT_EQ(expected_id, session->id);
103 session->quit = true;
153 Session* session
    [all...]
session.h 38 struct Session {
41 explicit Session(const std::string& id);
42 Session(const std::string& id, scoped_ptr<Chrome> chrome);
43 ~Session();
77 Session* GetThreadLocalSession();
79 void SetThreadLocalSession(scoped_ptr<Session> session);
  /external/chromium_org/chrome/browser/sync/glue/
synced_session.h 21 // Defines a synced session for use by session sync. A synced session is a
22 // list of windows along with a unique session identifer (tag) and meta-data
43 // Unique tag for each session.
48 // Type of device this session is from.
51 // Last time this session was modified remotely.
54 // Map of windows that make up this session. Windowws are owned by the session
59 // in the NTP handler for foreign sessions for matching session
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserScheduler.h 70 void checkForYieldBeforeToken(PumpSession& session)
72 if (session.processedTokens > parserChunkSize || session.didSeeScript) {
75 if (!session.startTime)
76 session.startTime = currentTime();
78 session.processedTokens = 0;
79 session.didSeeScript = false;
81 double elapsedTime = currentTime() - session.startTime;
83 session.needsYield = true;
85 ++session.processedTokens
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5BytestreamSession.java 29 * Socks5BytestreamSession class represents a SOCKS5 Bytestream session.
38 /* flag to indicate if this session is a direct or mediated connection */
47 * Returns <code>true</code> if the session is established through a direct connection between
48 * the initiator and target, <code>false</code> if the session is mediated over a SOCKS proxy.
50 * @return <code>true</code> if session is a direct connection, <code>false</code> if session is
58 * Returns <code>true</code> if the session is mediated over a SOCKS proxy, <code>false</code>
59 * if this session is established through a direct connection between the initiator and target.
61 * @return <code>true</code> if session is mediated over a SOCKS5 proxy, <code>false</code> if
62 * session is a direct connection
    [all...]
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
FwdLockEngine.h 48 * @param uniqueId Unique identifier for a session
62 * @param uniqueId Unique identifier for a session
74 * @param uniqueId Unique identifier for a session
84 * @param uniqueId Unique identifier for a session
94 * @param uniqueId Unique identifier for a session
103 * @param uniqueId Unique identifier for a session
114 * @param uniqueId Unique identifier for a session
125 * @param uniqueId Unique identifier for a session
141 * @param uniqueId Unique identifier for a session
152 * @param uniqueId Unique identifier for a session
    [all...]
  /external/chromium_org/chrome/browser/chromeos/
session_length_limiter_unittest.cc 111 // Clears the session state by resetting |user_activity_| and
313 // session start time is set and the pref indicating user activity is cleared
316 // Pref indicating user activity not set. Session start time not set.
324 // Pref indicating user activity set. Session start time not set.
332 // Pref indicating user activity not set. Session start time in the future.
340 // Pref indicating user activity set. Session start time in the future.
348 // Pref indicating user activity not set. Session start time valid.
356 // Pref indicating user activity set. Session start time valid.
365 // Verifies that when instructed to wait for initial user activity, the session
371 // Pref indicating user activity not set. Session start time not set
    [all...]
  /external/chromium_org/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,
36 // event tracing session.
62 // Max string len for name and session name is 1024 per documentation.
65 // max length for name and session name.
86 // log levels and enable bit masks under the session.
92 // Start a session with given name and properties.
95 // Starts a session tracing to a file with some default properties.
100 // Starts a realtime session with some default properties.
104 // Enables "provider" at "level" for this session
138 TRACEHANDLE session() const { return session_; } function in class:base::win::EtwTraceController
    [all...]
  /external/chromium_org/chrome/common/extensions/api/
sessions.json 8 "description": "Use the <code>chrome.sessions</code> API to query and restore tabs and windows from a browsing session.",
24 "id": "Session",
28 "tab": {"$ref": "tabs.Tab", "optional": true, "description": "The $ref:tabs.Tab, if this entry describes a tab. Either this or $ref:Session.window will be set."},
29 "window": {"$ref": "windows.Window", "optional": true, "description": "The $ref:windows.Window, if this entry describes a window. Either this or $ref:Session.tab will be set."}
37 "sessions": {"type": "array", "items": {"$ref": "Session"}, "description": "A list of open window sessions for the foreign device, sorted from most recently to least recently modified session."}
57 "name": "sessions", "type": "array", "items": { "$ref": "Session" }, "description": "The list of closed entries in reverse order that they were closed (the most recently closed tab or window will be at index <code>0</code>).The entries may contain either tabs or windows."
78 "name": "devices", "type": "array", "items": { "$ref": "Device" }, "description": "The list of $ref:Device objects for each synced session, sorted in order from device with most recently modified session to device with least recently modified session. $ref:tabs.Tab objects are sorted by recency in the $ref:windows.Window of the $ref:Session object (…)
    [all...]
  /frameworks/base/media/java/android/media/
MediaSyncEvent.java 23 * only when the playback on a particular audio session is complete.
24 * The audio session ID is retrieved from a player (e.g {@link MediaPlayer}, {@link AudioTrack} or
37 * (meaning the media has been presented to the user) on the specified session.
38 * A synchronization of this type requires a source audio session ID to be set via
50 * presented to the user on a particular audio session.
73 * Sets the event source audio session ID.
75 * <p>The audio session ID specifies on which audio session the synchronization event should be
78 * For instance, the audio session ID can be retrieved via
80 * @param audioSessionId the audio session ID of the event source being monitored
    [all...]
  /external/okhttp/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/chromium/chrome/browser/sync/engine/
cleanup_disabled_types_command.cc 18 void CleanupDisabledTypesCommand::ExecuteImpl(sessions::SyncSession* session) {
24 if (session->routing_info().count(model_type))
30 // on the first sync session (when there's no previous routing info) we pay
42 // | before another sync session,..)
44 session->context()->previous_session_routing_info();
52 syncable::ScopedDirLookup dir(session->context()->directory_manager(),
53 session->context()->account_name());
model_changing_syncer_command.cc 14 void ModelChangingSyncerCommand::ExecuteImpl(sessions::SyncSession* session) {
15 work_session_ = session;
20 for (size_t i = 0; i < session->workers().size(); ++i) {
21 ModelSafeWorker* worker = session->workers()[i];
33 sessions::SyncSession* session) {
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ForeignSessionHelper.java 23 * Callback interface for getting notified when foreign session sync is updated.
27 * This method will be called every time foreign session sync is updated.
37 * Represents synced foreign session.
66 * session.
100 ForeignSession session = new ForeignSession(tag, name, deviceType, modifiedTime); local
101 sessions.add(session);
102 return session;
107 ForeignSession session, long timestamp, int sessionId) {
109 session.windows.add(window);
151 * Sets callback instance that will be called on every foreign session sync update
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
oauth2_login_manager.h 34 // Session restore states.
36 // Session restore is not started.
38 // Session restore is being prepared.
40 // Session restore is in progress. We are currently issuing calls to verify
43 // Session restore is completed.
45 // Session restore failed.
47 // Session restore failed due to connection or service errors.
51 // Session restore strategy.
54 // Restore session from generated OAuth2 refresh token.
56 // Restore session from saved OAuth2 refresh token from TokenServices
    [all...]
  /external/chromium_org/remoting/host/
desktop_session_win.h 33 // the target session, via |WorkerProcessIpcDelegate|, and monitors session
40 // Creates a desktop session instance that attaches to the physical console.
48 // Creates a desktop session instance that attaches to a virtual console.
58 // session |id| and the interface for monitoring session attach/detach events.
75 // Starts monitoring for session attach/detach events for |terminal_id|.
78 // Stops monitoring for session attach/detach events.
81 // Asks DaemonProcess to terminate this session.
84 // Injects a secure attention sequence into the session
    [all...]
  /external/chromium_org/remoting/protocol/
authenticator.h 34 // Authenticator may exchange multiple messages before session is
36 // delivered either in a session description inside session-initiate
37 // and session-accept messages or in a session-info
38 // message. Session-info messages are used only if authenticators need
60 // Session is authenticated successufully.
63 // Session is rejected.
119 // Called when session-initiate stanza is received to create
120 // authenticator for the new session. |first_message| specifie
    [all...]
  /external/openssh/
session.h 1 /* $OpenBSD: session.h,v 1.30 2008/05/08 12:21:16 djm Exp $ */
30 typedef struct Session Session;
31 struct Session {
73 void session_destroy_all(void (*)(Session *));
74 void session_pty_cleanup2(Session *);
76 Session *session_new(void);
77 Session *session_by_tty(char *);
78 void session_close(Session *);

Completed in 1429 milliseconds

1 2 3 45 6 7 8 91011>>