HomeSort by relevance Sort by last modified time
    Searched defs:sessions (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium/chrome/browser/sync/engine/
syncer_command.h 13 namespace sessions { namespace in namespace:browser_sync
35 void Execute(sessions::SyncSession* session);
38 virtual void ExecuteImpl(sessions::SyncSession* session) = 0;
40 void SendNotifications(sessions::SyncSession* session);
build_and_process_conflict_sets_command.h 28 namespace sessions { namespace in namespace:browser_sync
39 virtual void ModelChangingExecuteImpl(sessions::SyncSession* session);
42 bool BuildAndProcessConflictSets(sessions::SyncSession* session);
46 Cryptographer* cryptographer, sessions::StatusController* status,
54 sessions::StatusController* status);
56 sessions::ConflictProgress* conflict_progress);
60 sessions::ConflictProgress* conflict_progress);
63 sessions::ConflictProgress* conflict_progress);
66 sessions::ConflictProgress* conflict_progress);
69 sessions::ConflictProgress* conflict_progress)
    [all...]
syncer_proto_util.h 29 namespace sessions { namespace in namespace:browser_sync
48 sessions::SyncSession* session);
109 sessions::SyncSession* session);
114 sessions::SyncSession* session,
model_changing_syncer_command.h 12 namespace sessions { namespace in namespace:browser_sync
32 virtual void ExecuteImpl(sessions::SyncSession* session);
45 virtual bool ModelNeutralExecuteImpl(sessions::SyncSession* session);
51 virtual void ModelChangingExecuteImpl(sessions::SyncSession* session) = 0;
58 sessions::SyncSession* work_session_;
conflict_resolver.h 29 namespace sessions { namespace in namespace:browser_sync
43 sessions::StatusController* status);
72 sessions::StatusController* status);
83 sessions::StatusController* status);
update_applicator.h 24 namespace sessions { namespace in namespace:browser_sync
55 sessions::ConflictProgress* conflict_progress,
56 sessions::UpdateProgress* update_progress);
syncer_types.h 24 namespace sessions { namespace in namespace:browser_sync
109 const sessions::SyncSessionSnapshot* snapshot;
  /external/chromium/chrome/browser/sync/sessions/
test_util.h 11 #include "chrome/browser/sync/sessions/sync_session.h"
16 namespace sessions { namespace in namespace:browser_sync
19 void SimulateHasMoreToSync(sessions::SyncSession* session,
21 void SimulateDownloadUpdatesFailed(sessions::SyncSession* session,
23 void SimulateCommitFailed(sessions::SyncSession* session,
25 void SimulateSuccess(sessions::SyncSession* session,
27 void SimulateThrottledImpl(sessions::SyncSession* session,
29 void SimulatePollIntervalUpdateImpl(sessions::SyncSession* session,
41 } // namespace sessions
sync_session_context.cc 5 #include "chrome/browser/sync/sessions/sync_session_context.h"
8 #include "chrome/browser/sync/sessions/session_state.h"
12 namespace sessions { namespace in namespace:browser_sync
39 } // namespace sessions
test_util.cc 5 #include "chrome/browser/sync/sessions/test_util.h"
8 namespace sessions { namespace in namespace:browser_sync
11 void SimulateHasMoreToSync(sessions::SyncSession* session,
17 void SimulateDownloadUpdatesFailed(sessions::SyncSession* session,
25 void SimulateCommitFailed(sessions::SyncSession* session,
36 void SimulateSuccess(sessions::SyncSession* session,
45 void SimulateThrottledImpl(sessions::SyncSession* session,
50 void SimulatePollIntervalUpdateImpl(sessions::SyncSession* session,
56 } // namespace sessions
ordered_commit_set.cc 5 #include "chrome/browser/sync/sessions/ordered_commit_set.h"
12 namespace sessions { namespace in namespace:browser_sync
101 } // namespace sessions
ordered_commit_set_unittest.cc 6 #include "chrome/browser/sync/sessions/ordered_commit_set.h"
25 namespace sessions { namespace in namespace:browser_sync
118 } // namespace sessions
status_controller_unittest.cc 5 #include "chrome/browser/sync/sessions/sync_session.h"
10 namespace sessions { namespace in namespace:browser_sync
224 } // namespace sessions
sync_session.cc 5 #include "chrome/browser/sync/sessions/sync_session.h"
10 namespace sessions { namespace in namespace:browser_sync
33 // When we coalesce sessions, the sync update source gets overwritten with the
111 } // namespace sessions
ordered_commit_set.h 18 namespace sessions { namespace in namespace:browser_sync
114 } // namespace sessions
session_state_unittest.cc 5 #include "chrome/browser/sync/sessions/session_state.h"
16 namespace sessions { namespace in namespace:browser_sync
178 } // namespace sessions
sync_session.h 27 #include "chrome/browser/sync/sessions/ordered_commit_set.h"
28 #include "chrome/browser/sync/sessions/session_state.h"
29 #include "chrome/browser/sync/sessions/status_controller.h"
30 #include "chrome/browser/sync/sessions/sync_session_context.h"
41 namespace sessions { namespace in namespace:browser_sync
54 // Silenced intervals can be out of phase with individual sessions, so the
101 // sessions.
183 } // namespace sessions
sync_session_context.h 42 namespace sessions { namespace in namespace:browser_sync
138 scoped_ptr<sessions::SyncSessionSnapshot> previous_session_snapshot_;
165 } // namespace sessions
  /external/chromium/chrome/browser/sync/glue/
session_model_associator_unittest.cc 10 #include "chrome/browser/sessions/session_types.h"
151 // The sessions don't have valid windows, lookup should not succeed.
152 std::vector<const ForeignSession*> sessions; local
153 ASSERT_FALSE(tracker.LookupAllForeignSessions(&sessions));
sync_backend_host.h 46 namespace sessions { namespace in namespace:browser_sync
218 const sessions::SyncSessionSnapshot* GetLastSessionSnapshot() const;
277 const sessions::SyncSessionSnapshot* snapshot);
476 sessions::SyncSessionSnapshot* snapshot);
644 scoped_ptr<sessions::SyncSessionSnapshot> last_snapshot_;
  /external/chromium/chrome/browser/sync/
profile_sync_service_harness.h 20 namespace sessions { namespace in namespace:browser_sync
121 const browser_sync::sessions::SyncSessionSnapshot*
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
AbstractSessionContext.java 46 /** Identifies OpenSSL sessions. */
49 private final Map<ByteArray, SSLSession> sessions field in class:AbstractSessionContext
75 * Returns the collection of sessions ordered from oldest to newest
78 synchronized (sessions) {
79 SSLSession[] array = sessions.values().toArray(
80 new SSLSession[sessions.size()]);
126 synchronized (sessions) {
127 int size = sessions.size();
130 Iterator<SSLSession> i = sessions.values().iterator();
147 synchronized (sessions) {
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
InBandBytestreamManager.java 159 private final Map<String, InBandBytestreamSession> sessions = new ConcurrentHashMap<String, InBandBytestreamSession>(); field in class:InBandBytestreamManager
420 this.sessions.put(sessionID, inBandBytestreamSession);
504 * Returns the sessions map.
506 * @return the sessions map
509 return sessions;
541 this.sessions.clear();
  /external/chromium/chrome/browser/ui/webui/
foreign_session_handler.cc 15 #include "chrome/browser/sessions/session_restore.h"
77 // syncing sessions.
90 std::vector<const ForeignSession*> sessions; local
98 if (!associator->GetAllForeignSessions(&sessions)) {
106 sessions.begin(); i != sessions.end() &&
  /libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
ClientSessionContextTest.java 98 Set<SSLSession> sessions = new HashSet<SSLSession>(); local
102 sessions.add(context.getSession(id));
106 for (SSLSession s : sessions) {
109 assertEquals(expected, sessions);

Completed in 292 milliseconds

1 2