HomeSort by relevance Sort by last modified time
    Searched defs:sync (Results 76 - 100 of 422) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
stdio_sync_filebuf.h 151 sync() function in class:stdio_sync_filebuf
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
stdio_sync_filebuf.h 161 sync() function in class:stdio_sync_filebuf
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
stdio_sync_filebuf.h 161 sync() function in class:stdio_sync_filebuf
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_streambuf.c 184 basic_streambuf<_CharT, _Traits>::sync() { return 0; } function in class:_Traits
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_streambuf.c 184 basic_streambuf<_CharT, _Traits>::sync() { return 0; } function in class:_Traits
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
stdio_sync_filebuf.h 161 sync() function in class:stdio_sync_filebuf
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
stdio_sync_filebuf.h 161 sync() function in class:stdio_sync_filebuf
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
stdio_sync_filebuf.h 160 sync() function in class:stdio_sync_filebuf
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dumbdbm.py 116 sync = _commit variable in class:_Database
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dumbdbm.py 116 sync = _commit variable in class:_Database
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TimerTest.java 29 Object sync = new Object(); field in class:TimerTest
71 synchronized (sync) {
72 sync.notify();
103 synchronized (sync) {
105 sync.wait(1000);
129 synchronized (sync) {
131 sync.wait(1000);
155 synchronized (sync) {
157 sync.wait(1000);
179 synchronized (sync) {
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReentrantLock.java 80 private final Sync sync; field in class:ReentrantLock
87 abstract static class Sync extends AbstractQueuedSynchronizer {
167 * Sync object for non-fair locks
169 static final class NonfairSync extends Sync {
189 * Sync object for fair locks
191 static final class FairSync extends Sync {
228 sync = new NonfairSync();
238 sync = fair ? new FairSync() : new NonfairSync();
256 sync.lock()
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
TimerTest.java 31 private final Object sync = new Object(); field in class:TimerTest
76 synchronized (sync) {
77 sync.notify();
218 synchronized (sync) {
219 sync.wait(500);
232 synchronized (sync) {
233 sync.wait(500);
245 synchronized (sync) {
246 sync.wait(200);
248 sync.wait(200)
    [all...]
  /cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
Test3DetailFragment.java 43 private final Object sync = new Object(); field in class:Test3DetailFragment
82 synchronized (sync) {
123 synchronized (sync) {
  /development/ide/emacs/
android-host.el 27 ;; (global-set-key [f8] 'android-adb-sync)
29 ;; or rely on autocompletion M-x and-sync will expand to
30 ;; M-x android-adb-sync
35 ;; C-x a s android-adb-sync
58 (define-key map (kbd "s") 'android-adb-sync)
83 (defun android-adb-sync ()
84 "Execute 'adb sync'."
86 ;; Always force root and remount, this way sync always works even on
90 (android-adb-command "sync" 'p))
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
FileDescriptorTest.java 53 * @tests java.io.FileDescriptor#sync()
62 fd.sync();
64 assertEquals("Bytes were not written after sync", length, fis
69 fd.sync();
70 assertEquals("Bytes were not written after sync", length, fis
75 fd.sync();
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
DelayedSyncController.java 5 package org.chromium.chrome.browser.sync;
19 import org.chromium.sync.notifier.SyncStatusHelper;
20 import org.chromium.sync.signin.AccountManagerHelper;
23 * A class for controlling when a sync should be performed immediately, and when it should be
48 Log.d(TAG, "No delayed sync.");
51 Log.d(TAG, "Handling delayed sync.");
85 * If there is a delayed sync, it will be cleared.
100 Log.d(TAG, "Delaying sync.");
110 Log.d(TAG, "Manual sync requested.");
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/sync/
DelayedSyncControllerTest.java 5 package org.chromium.chrome.browser.sync;
24 import org.chromium.sync.signin.AccountManagerHelper;
52 @Feature({"Sync"})
54 // Sync should trigger for manual requests when Chrome is in the foreground.
60 // Sync should trigger for manual requests when Chrome is in the background.
67 @Feature({"Sync"})
75 @Feature({"Sync"})
84 @Feature({"Sync"})
91 // Trying to perform sync when Chrome is in the background should create a delayed sync
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
autofill_data_type_controller_unittest.cc 12 #include "chrome/browser/sync/glue/autofill_data_type_controller.h"
13 #include "chrome/browser/sync/glue/data_type_controller_mock.h"
14 #include "chrome/browser/sync/glue/shared_change_processor_mock.h"
15 #include "chrome/browser/sync/profile_sync_components_factory_mock.h"
16 #include "chrome/browser/sync/profile_sync_service_factory.h"
17 #include "chrome/browser/sync/profile_sync_service_mock.h"
26 #include "sync/api/sync_error.h"
283 ProfileSyncService* sync = ProfileSyncServiceFactory::GetForProfile( local
287 sync->OnExperimentsChanged(experiments);
  /external/chromium_org/sync/android/java/src/org/chromium/sync/internal_api/pub/base/
ModelType.java 5 package org.chromium.sync.internal_api.pub.base;
115 * Converts string representations of types to sync to {@link ModelType}s.
133 // Drop invalid sync types.
134 Log.w(TAG, "Could not translate sync type to model type: " + syncType);
142 * Converts a set of sync types {@link String} to a set of {@link ObjectId}.
  /external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
InvalidationIntentProtocol.java 5 package org.chromium.sync.notifier;
15 import org.chromium.sync.internal_api.pub.base.ModelType;
30 "org.chromium.sync.notifier.ACTION_REGISTER_TYPES";
38 * String-list-valued intent extra of the syncable types to sync.
85 * Sync-specific objects are filtered out of the request since Sync types
93 // Add all non-Sync objects to new lists.
  /external/chromium_org/sync/android/java/src/org/chromium/sync/signin/
ChromeSigninController.java 5 package org.chromium.sync.signin;
123 + "sync notifications will not work", exception);
125 Log.w(TAG, "Device does not support GCM; sync notifications will not work",
  /external/chromium_org/sync/android/javatests/src/org/chromium/sync/notifier/
InvalidationPreferencesTest.java 5 package org.chromium.sync.notifier;
17 import org.chromium.sync.internal_api.pub.base.ModelType;
39 @Feature({"Sync"})
53 @Feature({"Sync"})
66 @Feature({"Sync"})
79 @Feature({"Sync"})
  /external/chromium_org/sync/test/android/javatests/src/org/chromium/sync/test/util/
MockSyncContentResolverDelegate.java 5 package org.chromium.sync.test.util;
16 import org.chromium.sync.notifier.SyncContentResolverDelegate;
72 public void setMasterSyncAutomatically(boolean sync) {
73 if (mMasterSyncAutomatically == sync) return;
75 mMasterSyncAutomatically = sync;
93 public void setSyncAutomatically(Account account, String authority, boolean sync) {
99 ". Can not set sync state to " + sync);
101 if (sync) {
  /external/chromium_org/tools/perf/page_sets/endure/
indexeddb_app_worker.js 113 syncTimeoutId = setTimeout(sync, SYNC_TIMEOUT);
119 function sync() { function
124 log('sync ' + sync_id + ' started');
127 log('sync ' + sync_id +
140 var transaction = db.transaction('sync-chunks', 'readwrite');
141 var store = transaction.objectStore('sync-chunks');
145 log('sync ' + sync_id + ' finished');
147 syncTimeoutId = setTimeout(sync, SYNC_TIMEOUT);
171 var transaction = db.transaction(['sync-chunks', 'docs'], 'readwrite');
172 var syncStore = transaction.objectStore('sync-chunks')
    [all...]

Completed in 227 milliseconds

1 2 34 5 6 7 8 91011>>