OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SyncSession
(Results
1 - 25
of
67
) sorted by null
1
2
3
/external/chromium/chrome/browser/sync/engine/
model_changing_syncer_command.h
13
class
SyncSession
;
32
virtual void ExecuteImpl(sessions::
SyncSession
* session);
42
// *without* a ModelSafeGroup restriction in place on the
SyncSession
.
45
virtual bool ModelNeutralExecuteImpl(sessions::
SyncSession
* session);
48
// operates on the model. This is invoked with a
SyncSession
ModelSafeGroup
51
virtual void ModelChangingExecuteImpl(sessions::
SyncSession
* session) = 0;
58
sessions::
SyncSession
* work_session_;
syncer_command.h
14
class
SyncSession
;
24
//
SyncSession
session = ...;
35
void Execute(sessions::
SyncSession
* session);
38
virtual void ExecuteImpl(sessions::
SyncSession
* session) = 0;
40
void SendNotifications(sessions::
SyncSession
* session);
build_commit_command.h
21
virtual void ExecuteImpl(sessions::
SyncSession
* session);
24
void AddExtensionsActivityToMessage(sessions::
SyncSession
* session,
cleanup_disabled_types_command.h
36
virtual void ExecuteImpl(sessions::
SyncSession
* session);
post_commit_message_command.h
19
virtual void ExecuteImpl(sessions::
SyncSession
* session);
store_timestamps_command.h
32
virtual void ExecuteImpl(sessions::
SyncSession
* session);
syncer_end_command.h
26
virtual void ExecuteImpl(sessions::
SyncSession
* session);
process_updates_command.h
36
virtual bool ModelNeutralExecuteImpl(sessions::
SyncSession
* session);
37
virtual void ModelChangingExecuteImpl(sessions::
SyncSession
* session);
syncer_command.cc
13
using sessions::
SyncSession
;
18
void SyncerCommand::Execute(
SyncSession
* session) {
23
void SyncerCommand::SendNotifications(
SyncSession
* session) {
apply_updates_command.h
25
virtual void ModelChangingExecuteImpl(sessions::
SyncSession
* session);
clear_data_command.h
27
virtual void ExecuteImpl(sessions::
SyncSession
* session);
resolve_conflicts_command.h
26
virtual void ModelChangingExecuteImpl(sessions::
SyncSession
* session);
model_changing_syncer_command.cc
14
void ModelChangingSyncerCommand::ExecuteImpl(sessions::
SyncSession
* session) {
33
sessions::
SyncSession
* session) {
download_updates_command.h
21
// from the server, place the result in the
SyncSession
for further processing.
25
// the
SyncSession
. DownloadUpdatesCommand will fetch updates for
28
// in the
SyncSession
. Only one server request is performed per Execute
44
virtual void ExecuteImpl(sessions::
SyncSession
* session);
syncer_end_command.cc
17
void SyncerEndCommand::ExecuteImpl(sessions::
SyncSession
* session) {
/external/chromium_org/sync/sessions/
test_util.h
22
sessions::
SyncSession
* session);
26
sessions::
SyncSession
* session);
30
sessions::
SyncSession
* session);
34
sessions::
SyncSession
* session);
39
sessions::
SyncSession
* session);
42
sessions::
SyncSession
* session);
45
sessions::
SyncSession
* session);
48
sessions::
SyncSession
* session);
52
sessions::
SyncSession
* session);
54
sessions::
SyncSession
* session)
[
all
...]
sync_session.cc
19
SyncSession
*
SyncSession
::Build(SyncSessionContext* context,
21
return new
SyncSession
(context, delegate);
24
SyncSession
::
SyncSession
(
32
SyncSession
::~
SyncSession
() {}
34
SyncSessionSnapshot
SyncSession
::TakeSnapshot() const {
38
SyncSessionSnapshot
SyncSession
::TakeSnapshotWithSource(
70
void
SyncSession
::SendSyncCycleEndEventNotification
[
all
...]
test_util.cc
14
sessions::
SyncSession
* session) {
24
sessions::
SyncSession
* session) {
34
sessions::
SyncSession
* session) {
43
sessions::
SyncSession
* session) {
51
sessions::
SyncSession
* session) {
61
sessions::
SyncSession
* session) {
68
sessions::
SyncSession
* session) {
79
sessions::
SyncSession
* session) {
85
sessions::
SyncSession
* session) {
92
sessions::
SyncSession
* session)
[
all
...]
sync_session.h
6
// store with a sync server. A
SyncSession
instance is passed as a stateful
7
// bundle throughout the sync cycle. The
SyncSession
is not reused across
36
class SYNC_EXPORT_PRIVATE
SyncSession
{
90
static
SyncSession
* Build(SyncSessionContext* context,
92
~
SyncSession
();
116
SyncSession
(SyncSessionContext* context, Delegate* delegate);
127
DISALLOW_COPY_AND_ASSIGN(
SyncSession
);
/external/chromium/chrome/browser/sync/sessions/
test_util.h
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,
test_util.cc
11
void SimulateHasMoreToSync(sessions::
SyncSession
* session,
17
void SimulateDownloadUpdatesFailed(sessions::
SyncSession
* session,
25
void SimulateCommitFailed(sessions::
SyncSession
* session,
30
// See implementation of
SyncSession
::HasMoreToSync.
36
void SimulateSuccess(sessions::
SyncSession
* session,
45
void SimulateThrottledImpl(sessions::
SyncSession
* session,
50
void SimulatePollIntervalUpdateImpl(sessions::
SyncSession
* session,
sync_session.cc
12
SyncSession
::
SyncSession
(SyncSessionContext* context, Delegate* delegate,
25
SyncSession
::~
SyncSession
() {}
27
void
SyncSession
::Coalesce(const
SyncSession
& session) {
54
void
SyncSession
::ResetTransientState() {
58
SyncSessionSnapshot
SyncSession
::TakeSnapshot() const {
93
SyncSourceInfo
SyncSession
::TestAndSetSource() {
101
bool
SyncSession
::HasMoreToSync() const
[
all
...]
sync_session.h
6
// store with a sync server. A
SyncSession
instance is passed as a stateful
12
// via
SyncSession
instances.
43
class
SyncSession
{
83
SyncSession
(SyncSessionContext* context,
88
~
SyncSession
();
102
void Coalesce(const
SyncSession
& session);
162
DISALLOW_COPY_AND_ASSIGN(
SyncSession
);
170
ScopedSetSessionWriteTransaction(
SyncSession
* session,
179
SyncSession
* session_;
/external/chromium_org/sync/engine/
syncer.h
50
sessions::
SyncSession
* session);
60
sessions::
SyncSession
* session);
67
sessions::
SyncSession
* session);
70
void ApplyUpdates(sessions::
SyncSession
* session);
73
sessions::
SyncSession
* session,
82
sessions::
SyncSession
* session);
84
void HandleCycleBegin(sessions::
SyncSession
* session);
86
sessions::
SyncSession
* session,
download.h
24
class
SyncSession
;
33
sessions::
SyncSession
* session,
50
sessions::
SyncSession
* session,
67
sessions::
SyncSession
* session,
82
sessions::
SyncSession
* session,
Completed in 88 milliseconds
1
2
3