OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:syncoperation
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncOperationTest.java
25
import com.android.server.content.
SyncOperation
;
47
SyncOperation
op1 = new
SyncOperation
(account1, 0,
49
SyncOperation
.REASON_PERIODIC,
59
SyncOperation
op2 = new
SyncOperation
(account1, 0,
61
SyncOperation
.REASON_PERIODIC,
71
SyncOperation
op3 = new
SyncOperation
(account1, 0,
73
SyncOperation
.REASON_PERIODIC
[
all
...]
SyncStorageEngineTest.java
86
account, 0,
SyncOperation
.REASON_PERIODIC, authority, time0,
99
SyncOperation
.REASON_PERIODIC, SyncStorageEngine.SOURCE_LOCAL,
[
all
...]
/frameworks/base/services/java/com/android/server/content/
SyncQueue.java
50
// A Map of SyncOperations operationKey ->
SyncOperation
that is designed for
51
// quick lookup of an enqueued
SyncOperation
.
52
private final HashMap<String,
SyncOperation
> mOperationsMap = Maps.newHashMap();
74
SyncOperation
syncOperation
= new
SyncOperation
(
79
syncOperation
.pendingOperation = op;
80
add(
syncOperation
, op);
84
public boolean add(
SyncOperation
operation) {
89
* Adds a
SyncOperation
to the queue and creates a PendingOperation object to track that sync
[
all
...]
SyncManager.java
229
SyncOperation
.REASON_BACKGROUND_DATA_SETTINGS_CHANGED,
243
scheduleSync(null, UserHandle.USER_ALL,
SyncOperation
.REASON_ACCOUNTS_UPDATED, null,
406
SyncOperation
.REASON_SERVICE_CHANGED,
570
* {@link
SyncOperation
#REASON_BACKGROUND_DATA_SETTINGS_CHANGED}
571
* {@link
SyncOperation
#REASON_ACCOUNTS_UPDATED}
572
* {@link
SyncOperation
#REASON_SERVICE_CHANGED}
573
* {@link
SyncOperation
#REASON_PERIODIC}
574
* {@link
SyncOperation
#REASON_IS_SYNCABLE}
575
* {@link
SyncOperation
#REASON_SYNC_AUTO}
576
* {@link
SyncOperation
#REASON_MASTER_SYNC_AUTO
[
all
...]
SyncOperation.java
34
public class
SyncOperation
implements Comparable {
86
public
SyncOperation
(Account account, int userId, int reason, int source, String authority,
121
SyncOperation
(
SyncOperation
other) {
139
* Make sure the bundle attached to this
SyncOperation
doesn't have unnecessary
285
SyncOperation
other = (
SyncOperation
) o;
SyncStorageEngine.java
597
requestSync(account, userId,
SyncOperation
.REASON_SYNC_AUTO, providerName,
650
requestSync(account, userId,
SyncOperation
.REASON_IS_SYNCABLE, providerName,
[
all
...]
Completed in 69 milliseconds