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

1 2 3 45 6 7 8 91011>>

  /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...]
  /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;
152 Session* session
    [all...]
  /external/chromium_org/chrome/browser/sessions/
session_service_factory.h 18 // Returns the session service for |profile|. This may return NULL. If this
19 // profile supports a session service (it isn't incognito), and the session
20 // service hasn't yet been created, this forces creation of the session
27 // Returns the session service for |profile|, but do not create it if it
28 // doesn't exist. This returns NULL if the profile is incognito or if session
33 // If |profile| has a session service, it is shut down. To properly record the
34 // current state this forces creation of the session service, then shuts it
39 // For test use: force setting of the session service for a given profile.
40 // This will delete a previous session service for this profile if it exists
    [all...]
  /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
42 // Unique tag for each session.
47 // Type of device this session is from.
50 // Last time this session was modified remotely.
53 // Map of windows that make up this session. Windowws are owned by the session
58 // in the NTP handler for foreign sessions for matching session
    [all...]
  /external/chromium_org/sync/engine/
model_changing_syncer_command.h 33 // SyncerCommand implementation. Sets work_session to session.
34 virtual SyncerError ExecuteImpl(sessions::SyncSession* session) OVERRIDE;
42 const sessions::SyncSession& session) const {
43 return GetGroupsToChange(session);
47 // This should return the set of groups in |session| that need to be
49 // session.GetEnabledGroups(). Subclasses can guarantee this either
50 // by calling one of the session.GetEnabledGroups*() functions and
55 const sessions::SyncSession& session) const = 0;
62 sessions::SyncSession* session) = 0;
68 // worry about storing the session or setting it. They are given work_session
    [all...]
download.cc 83 SyncSession* session,
86 StatusController* status = session->mutable_status_controller();
87 bool need_encryption_key = ShouldRequestEncryptionKey(session->context());
92 session);
111 syncable::Directory* dir = session->context()->directory();
118 process_updates.Execute(session);
121 store_timestamps.Execute(session);
127 SyncSession* session,
131 message->set_share(session->context()->account_name());
142 AppendClientDebugInfoIfNeeded(session, debug_info)
    [all...]
download.h 27 // the session's StatusController. It constructs the type of request used to
30 sessions::SyncSession* session,
36 // the session's StatusController. It constructs the type of request used to
39 sessions::SyncSession* session,
45 // the session's status controller. It constructs the type of request used for
48 sessions::SyncSession* session,
54 sessions::SyncSession* session,
  /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/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...]
  /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());
  /external/chromium_org/chrome/test/webdriver/commands/
create_session.cc 36 // Session manages its own liftime, so do not call delete.
37 Session* session = new Session(); local
38 Error* error = session->Init(dict);
49 stream << SessionManager::GetInstance()->url_base() << "/session/"
50 << session->id();
  /external/chromium_org/chrome/test/webdriver/
webdriver_session_manager.cc 11 void SessionManager::Add(Session* session) {
13 map_[session->id()] = session;
22 std::map<std::string, Session*>::iterator it;
31 Session* SessionManager::GetSession(const std::string& id) const {
32 std::map<std::string, Session*>::const_iterator it;
  /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)
450 Session* session = it->second; local
464 Session* session = it->second; local
558 Session* session = GetSession(session_id); local
645 Session* session = GetSession(session_id); local
    [all...]
  /external/chromium_org/net/tools/quic/
quic_dispatcher.cc 81 QuicSession* session; local
92 session = CreateQuicSession(guid, client_address, fd_, epoll_server_);
94 if (session == NULL) {
95 DLOG(INFO) << "Failed to create session for " << guid;
105 DLOG(INFO) << "Created new session for " << guid;
106 session_map_.insert(make_pair(guid, session));
108 session = it->second;
111 session->connection()->ProcessUdpPacket(
116 QuicSession* session = it->second; local
117 write_blocked_list_.RemoveBlockedObject(session->connection())
159 QuicSession* session = session_map_.begin()->second; local
193 QuicServerSession* session = new QuicServerSession( local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/
session_length_limiter.cc 23 // The minimum session time limit that can be set.
26 // The maximum session time limit that can be set.
30 // the current user's session when requested. This can be replaced with a mock
74 // If this is a user login, set the session start time in local state to the
75 // current time. If this a browser restart after a crash, set the session
85 // Ensure that the session start time is persisted to local state.
91 // Listen for changes to the session length limit.
98 // Handle the current session length limit, if any.
118 // If no session length limit is set, destroy the timer.
123 // Clamp the session length limit to the valid range
    [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 1084 milliseconds

1 2 3 45 6 7 8 91011>>