Searched defs:sync (Results 1 - 23 of 23) sorted by relevance

/packages/apps/Dialer/java/com/android/voicemail/impl/sync/
H A DOmtpVvmSyncReceiver.java17 package com.android.voicemail.impl.sync;
H A DVoicemailProviderChangeReceiver.java16 package com.android.voicemail.impl.sync;
H A DUploadTask.java17 package com.android.voicemail.impl.sync;
65 service.sync(
H A DSyncOneTask.java17 package com.android.voicemail.impl.sync;
73 service.sync(this, mSyncType, mPhone, mVoicemail, VoicemailStatus.edit(getContext(), mPhone));
H A DSyncTask.java17 package com.android.voicemail.impl.sync;
30 /** System initiated sync request. */
34 // Try sync for a total of 5 times, should take around 5 minutes before finally giving up.
71 service.sync(this, mSyncType, mPhone, null, mRetryPolicy.getVoicemailStatusEditor());
H A DVoicemailStatusQueryHelper.java16 package com.android.voicemail.impl.sync;
H A DVvmAccountManager.java16 package com.android.voicemail.impl.sync;
H A DVvmNetworkRequest.java17 package com.android.voicemail.impl.sync;
H A DOmtpVvmSyncService.java16 package com.android.voicemail.impl.sync;
42 import com.android.voicemail.impl.sync.VvmNetworkRequest.NetworkWrapper;
43 import com.android.voicemail.impl.sync.VvmNetworkRequest.RequestFailedException;
55 /** Signifies a sync with both uploading to the server and downloading from the server. */
75 public void sync( method in class:OmtpVvmSyncService
H A DVoicemailsQueryHelper.java16 package com.android.voicemail.impl.sync;
H A DVvmNetworkRequestCallback.java16 package com.android.voicemail.impl.sync;
/packages/apps/Email/provider_src/com/android/email/service/
H A DPopImapSyncAdapterService.java89 // TODO: actually use a sync flag when creating the mailboxes. Right now we use an
102 private static void sync(final Context context, final long mailboxId, method in class:PopImapSyncAdapterService
120 LogUtils.d(TAG, "About to sync mailbox: " + mailbox.mDisplayName);
124 // Set mailbox sync state
184 // Always clear our sync state and update sync time.
206 LogUtils.d(TAG, "Upload sync request for " + acct.mDisplayName);
229 sync(context, mailboxId, extras, syncResult, false, 0);
235 // We update our folder structure on every sync.
240 // Get the id for the mailbox we want to sync
[all...]
H A DEmailServiceStub.java80 /** Small projection for just the columns required for a sync. */
304 // Otherwise the UI could show the empty state until the sync
365 // result. If we start doing this from sync, it's important to let the sync manager
374 // If we just created the inbox, sync it
418 public int sync(final long accountId, final Bundle syncExtras) { method in class:EmailServiceStub
H A DEmailServiceUtils.java86 * is deleted out from under us while a sync or other operation is in progress. It would
283 * @param email Whether the user wants to sync email on this account.
284 * @param calendar Whether the user wants to sync calendar on this account.
285 * @param contacts Whether the user wants to sync contacts on this account.
302 * @param email Whether the user wants to sync email on this account.
303 * @param calendar Whether the user wants to sync calendar on this account.
304 * @param contacts Whether the user wants to sync contacts on this account.
387 // Get sync keys for calendar/contacts
442 // Restore sync keys for contacts/calendar
658 * @param accountType sync adapte
740 public int sync(final long accountId, final Bundle syncExtras) { method in class:EmailServiceUtils.NullService
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
H A DBuffer.java72 public void sync() { method in class:Buffer
/packages/apps/TV/tests/common/src/com/android/tv/testing/uihelper/
H A DUiDeviceUtils.java101 boolean sync) {
102 assertPressKey(instrumentation, KeyEvent.ACTION_DOWN, keyCode, sync);
106 boolean sync) {
107 assertPressKey(instrumentation, KeyEvent.ACTION_UP, keyCode, sync);
111 boolean sync) {
116 injectEvent(instrumentation, event, sync));
120 boolean sync) {
121 return getUiAutomation(instrumentation).injectInputEvent(event, sync);
100 assertPressKeyDown(Instrumentation instrumentation, int keyCode, boolean sync) argument
105 assertPressKeyUp(Instrumentation instrumentation, int keyCode, boolean sync) argument
110 assertPressKey(Instrumentation instrumentation, int action, int keyCode, boolean sync) argument
119 injectEvent(Instrumentation instrumentation, KeyEvent event, boolean sync) argument
/packages/apps/Camera2/src/com/android/camera/
H A DSurfaceTextureRenderer.java93 * @param sync set <code>true</code> if the caller needs it to be
96 public void draw(boolean sync) { argument
101 if (sync) {
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
H A DEmailServiceProxy.java253 * service or its sync adapters and 3) not stored in the EmailProvider database (e.g. contact
334 public int sync(final long accountId, final Bundle syncExtras) { method in class:EmailServiceProxy
338 mReturn = mService.sync(accountId, syncExtras);
340 }, "sync");
343 // This occurs if sync times out.
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
H A DSyncMessagesAction.java56 * Action used to sync messages from smsmms db to local database
73 * Start a full sync (backed off a few seconds to avoid pulling sending/receiving messages).
91 * Start an incremental sync to pull messages since last sync (backed off a few seconds)..
93 public static void sync() { method in class:SyncMessagesAction
103 sync(startTimestamp);
107 * Start an incremental sync when the application starts up (no back off as not yet
115 sync(startTimestamp);
118 private static void sync(final long startTimestamp) { method in class:SyncMessagesAction
125 // Lower bound is end of previous sync
[all...]
/packages/apps/Messaging/src/com/android/messaging/datamodel/
H A DSyncManager.java43 * This class manages message sync with the Telephony SmsProvider/MmsProvider.
86 * Timestamp of in progress sync - used to keep track of whether sync is running
91 * Timestamp of current sync batch upper bound - used to determine if message makes batch dirty
96 * Timestamp of messages inserted since sync batch started - used to determine if batch dirty
104 * a full sync.
109 * Start an incremental sync (backed off a few seconds)
111 public static void sync() { method in class:SyncManager
112 SyncMessagesAction.sync();
116 * Start an incremental sync (wit
[all...]
/packages/apps/Music/src/com/android/music/
H A DMusicPicker.java581 * @param sync If true, this query should be done synchronously and the
586 Cursor doQuery(boolean sync, String filterstring) { argument
602 if (sync) {
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationCursor.java151 /** Whether or not sync from underlying provider should be deferred */
1057 public void sync() { method in class:ConversationCursor
1062 LogUtils.i(LOG_TAG, "[sync() %s; no requery cursor]", mName);
1068 LogUtils.i(LOG_TAG, "[sync() %s]", mName);
1878 * Data in the underlying provider has changed; a refresh is required to sync up
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...

Completed in 462 milliseconds