HomeSort by relevance Sort by last modified time
    Searched refs:sessions (Results 26 - 50 of 213) sorted by null

12 3 4 5 6 7 8 9

  /external/chromium_org/sync/internal_api/public/
internal_components_factory.h 28 namespace sessions { namespace in namespace:syncer
94 sessions::SyncSessionContext* context,
97 virtual scoped_ptr<sessions::SyncSessionContext> BuildContext(
102 sessions::DebugInfoGetter* debug_info_getter,
  /external/chromium_org/sync/internal_api/public/sessions/
model_neutral_state.h 15 namespace sessions { namespace in namespace:syncer
60 } // namespace sessions
model_neutral_state.cc 5 #include "sync/internal_api/public/sessions/model_neutral_state.h"
8 namespace sessions { namespace in namespace:syncer
38 } // namespace sessions
  /external/chromium_org/sync/test/sessions/
mock_debug_info_getter.cc 5 #include "sync/test/sessions/mock_debug_info_getter.h"
8 namespace sessions { namespace in namespace:syncer
28 } // namespace sessions
test_scoped_session_event_listener.h 8 #include "sync/sessions/sync_session_context.h"
11 namespace sessions { namespace in namespace:syncer
32 } // namespace sessions
  /external/chromium_org/sync/internal_api/test/
test_internal_components_factory.cc 7 #include "sync/sessions/sync_session_context.h"
29 sessions::SyncSessionContext* context,
34 scoped_ptr<sessions::SyncSessionContext>
40 sessions::DebugInfoGetter* debug_info_getter,
46 return scoped_ptr<sessions::SyncSessionContext>(
47 new sessions::SyncSessionContext(
  /external/conscrypt/src/main/java/org/conscrypt/
AbstractSessionContext.java 52 /** Identifies OpenSSL sessions. */
55 private final Map<ByteArray, SSLSession> sessions field in class:AbstractSessionContext
79 * Returns the collection of sessions ordered from oldest to newest
82 synchronized (sessions) {
83 SSLSession[] array = sessions.values().toArray(
84 new SSLSession[sessions.size()]);
137 synchronized (sessions) {
138 int size = sessions.size();
141 Iterator<SSLSession> i = sessions.values().iterator();
159 synchronized (sessions) {
    [all...]
  /external/chromium_org/sync/internal_api/public/events/
normal_get_updates_request_event.h 18 namespace sessions { namespace in namespace:syncer
20 } // namespace sessions
27 const sessions::NudgeTracker& nudge_tracker,
poll_get_updates_request_event.h 18 namespace sessions { namespace in namespace:syncer
20 } // namespace sessions
  /external/chromium_org/chrome/browser/sessions/
session_service_test_helper.h 14 #include "components/sessions/session_id.h"
26 namespace sessions { namespace
71 const sessions::SerializedNavigationEntry& expected,
72 const sessions::SerializedNavigationEntry& actual);
tab_restore_service_delegate.h 13 #include "components/sessions/session_id.h"
23 namespace sessions { namespace
52 const std::vector<sessions::SerializedNavigationEntry>& navigations,
62 const std::vector<sessions::SerializedNavigationEntry>& navigations,
  /external/chromium_org/chrome/browser/sync/test/integration/performance/
sessions_sync_perf_test.cc 37 // Returns the number of open tabs in all sessions (local + foreign) for
85 SyncedSessionVector sessions; local
92 if (!GetSessionData(profile, &sessions)) {
98 sessions.push_back(local_session);
99 for (SyncedSessionVector::const_iterator it = sessions.begin();
100 it != sessions.end(); ++it) {
  /external/chromium_org/chrome/browser/sync/test/integration/
single_client_sessions_sync_test.cc 6 #include "chrome/browser/sessions/session_service.h"
7 #include "chrome/browser/sessions/session_types.h"
56 SyncedSessionVector sessions; local
57 ASSERT_FALSE(GetSessionData(0, &sessions));
58 ASSERT_EQ(0U, sessions.size());
83 for (std::vector<sessions::SerializedNavigationEntry>::const_iterator
117 for (std::vector<sessions::SerializedNavigationEntry>::const_iterator
sessions_helper.cc 19 #include "chrome/browser/sync/sessions/notification_service_sessions_router.h"
20 #include "chrome/browser/sync/sessions/sessions_sync_manager.h"
78 sessions::SerializedNavigationEntry nav;
246 SyncedSessionVector sessions; local
250 &sessions)) {
253 return sessions.size();
256 bool GetSessionData(int index, SyncedSessionVector* sessions) {
260 sessions)) {
263 SortSyncedSessions(sessions);
280 void SortSyncedSessions(SyncedSessionVector* sessions) {
345 SyncedSessionVector sessions; local
    [all...]
p2p_invalidation_forwarder.cc 10 #include "sync/internal_api/public/sessions/sync_session_snapshot.h"
27 const syncer::sessions::SyncSessionSnapshot& snap =
  /external/chromium_org/sync/engine/
sync_scheduler_unittest.cc 16 #include "sync/sessions/test_util.h"
40 using sessions::SyncSession;
41 using sessions::SyncSessionContext;
48 const sessions::NudgeTracker&,
49 sessions::SyncSession*));
54 MOCK_METHOD2(PollSyncShare, bool(ModelTypeSet, sessions::SyncSession*));
305 .WillOnce(DoAll(Invoke(sessions::test_util::SimulateNormalSuccess),
321 .WillOnce(DoAll(Invoke(sessions::test_util::SimulateNormalSuccess),
334 .WillOnce(DoAll(Invoke(sessions::test_util::SimulateConfigureSuccess),
364 .WillOnce(DoAll(Invoke(sessions::test_util::SimulateConfigureFailed)
    [all...]
get_updates_delegate.cc 19 sessions::StatusController* status_controller,
30 sessions::StatusController* status_controller,
46 const sessions::NudgeTracker& nudge_tracker)
86 sessions::StatusController* status_controller,
111 sessions::StatusController* status_controller,
163 sessions::StatusController* status_controller,
model_type_sync_worker_impl.h 78 sessions::StatusController* status) OVERRIDE;
79 virtual void ApplyUpdates(sessions::StatusController* status) OVERRIDE;
80 virtual void PassiveApplyUpdates(sessions::StatusController* status) OVERRIDE;
update_applicator.h 20 #include "sync/sessions/status_controller.h"
24 namespace sessions { namespace in namespace:syncer
directory_commit_contribution.h 17 #include "sync/sessions/directory_type_debug_info_emitter.h"
18 #include "sync/sessions/status_controller.h"
22 namespace sessions { namespace in namespace:syncer
24 } // namespace sessions
69 sessions::StatusController* status) OVERRIDE;
  /external/chromium_org/chrome/browser/sync/
open_tabs_ui_delegate.h 14 #include "chrome/browser/sessions/session_types.h"
16 #include "components/sessions/session_id.h"
28 // Builds a list of all foreign sessions. Caller does NOT own SyncedSession
30 // Returns true if foreign sessions were found, false otherwise.
32 std::vector<const SyncedSession*>* sessions) = 0;
51 // Sets |*local| to point to the sessions sync representation of the
  /external/chromium_org/components/sessions/
serialized_navigation_entry_test_helper.h 23 namespace sessions { namespace
60 } // sessions
  /external/chromium_org/sync/sessions/
status_controller_unittest.cc 5 #include "sync/sessions/sync_session.h"
10 namespace sessions { namespace in namespace:syncer
43 } // namespace sessions
  /external/chromium_org/chrome/browser/extensions/api/sessions/
sessions_api.cc 5 #include "chrome/browser/extensions/api/sessions/sessions_api.h"
16 #include "chrome/browser/extensions/api/sessions/session_id.h"
23 #include "chrome/browser/sessions/session_restore.h"
24 #include "chrome/browser/sessions/tab_restore_service_delegate.h"
25 #include "chrome/browser/sessions/tab_restore_service_factory.h"
45 namespace GetRecentlyClosed = api::sessions::GetRecentlyClosed;
46 namespace GetDevices = api::sessions::GetDevices;
47 namespace Restore = api::sessions::Restore;
52 "There are no recently closed sessions.";
56 const char kSessionSyncError[] = "Synced sessions are not available."
377 std::vector<const browser_sync::SyncedSession*> sessions; local
    [all...]
  /external/chromium_org/chrome/browser/ui/
browser_tab_restore_service_delegate.h 12 #include "chrome/browser/sessions/tab_restore_service_delegate.h"
34 const std::vector<sessions::SerializedNavigationEntry>& navigations,
44 const std::vector<sessions::SerializedNavigationEntry>& navigations,

Completed in 574 milliseconds

12 3 4 5 6 7 8 9