HomeSort by relevance Sort by last modified time
    Searched refs:SYNC (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/chrome/browser/extensions/api/storage/
settings_namespace.h 17 SYNC, // "sync" i.e. chrome.storage.sync
settings_namespace.cc 15 const char kSyncNamespace[] = "sync";
22 case SYNC: return kSyncNamespace;
34 return SYNC;
settings_apitest.cc 21 #include "sync/api/sync_change.h"
22 #include "sync/api/sync_change_processor.h"
23 #include "sync/api/sync_error_factory.h"
24 #include "sync/api/sync_error_factory_mock.h"
44 using settings_namespace::SYNC;
87 // The recipient of all sync changes.
250 LoadAndReplyWhenSatisfied(SYNC,
252 ReplyWhenSatisfied(SYNC, "noop", "setFoo");
253 ReplyWhenSatisfied(SYNC, "assertFoo", "assertFoo");
254 ReplyWhenSatisfied(SYNC, "clear", "noop")
    [all...]
settings_frontend.cc 72 static_cast<size_t>(api::storage::sync::QUOTA_BYTES),
73 static_cast<size_t>(api::storage::sync::QUOTA_BYTES_PER_ITEM),
74 static_cast<size_t>(api::storage::sync::MAX_ITEMS)
113 caches_[settings_namespace::SYNC] =
115 settings_namespace::SYNC,
143 CacheMap::const_iterator it = caches_.find(settings_namespace::SYNC);
sync_or_local_value_store_cache.cc 16 #include "chrome/browser/sync/glue/sync_start_util.h"
34 settings_namespace_ == settings_namespace::SYNC);
74 // same way that writes from sync ignore quota).
75 // But only if it's local storage (bad stuff would happen if sync'ed
settings_test_util.cc 37 return GetStorage(extension_id, settings_namespace::SYNC, frontend);
settings_frontend_unittest.cc 196 util::GetStorage(id, settings::SYNC, frontend_.get());
200 // Sync storage should run out after ~100K.
236 // Sync storage should still run out after ~100K; the unlimitedStorage
237 // permission can't apply to sync.
281 id, settings::SYNC, base::Bind(&UnlimitedSyncStorageTestCallback));
syncable_settings_storage.cc 11 #include "sync/api/sync_data.h"
12 #include "sync/protocol/extension_setting_specifics.pb.h"
129 // Sync-related methods.
179 // Treat this as a list of changes to sync and use ProcessSyncChanges.
188 // Sync and local values are the same, no changes to send.
190 // Sync value is different, update local setting with new value.
237 DCHECK(!sync_changes.empty()) << "No sync changes for " << extension_id_;
243 std::string("Sync is inactive for ") + extension_id_,
264 std::string("Error getting current sync state for ") +
282 // Already a value; hopefully a local change has beaten sync in
    [all...]
  /external/chromium_org/ipc/
ipc_message_macros.h 162 // "Sync" messages are just synchronous calls, the Send() call doesn't return
163 // until a reply comes back. To declare a sync message, use the IPC_SYNC_
262 IPC_MESSAGE_DECL(SYNC, CONTROL, msg_class, 0, 0, (), ())
265 IPC_MESSAGE_DECL(SYNC, CONTROL, msg_class, 0, 1, (), (type1_out))
268 IPC_MESSAGE_DECL(SYNC, CONTROL, msg_class, 0, 2, (), (type1_out, type2_out))
271 IPC_MESSAGE_DECL(SYNC, CONTROL, msg_class, 0, 3, (), (type1_out, type2_out, type3_out))
274 IPC_MESSAGE_DECL(SYNC, CONTROL, msg_class, 0, 4, (), (type1_out, type2_out, type3_out, type4_out))
277 IPC_MESSAGE_DECL(SYNC, CONTROL, msg_class, 1, 0, (type1_in), ())
280 IPC_MESSAGE_DECL(SYNC, CONTROL, msg_class, 1, 1, (type1_in), (type1_out))
283 IPC_MESSAGE_DECL(SYNC, CONTROL, msg_class, 1, 2, (type1_in), (type1_out, type2_out)
    [all...]
  /external/blktrace/
act_mask.c 19 DECLARE_MASK_MAP(SYNC),
  /external/chromium_org/third_party/skia/src/animator/
SkTDArray_Experimental.h 100 #define SYNC() fTData = (T (*)[kDebugArraySize]) fArray
102 #define SYNC()
110 T& operator[](int index) const { SYNC(); SkASSERT((unsigned)index < fCount); return ((T*) fArray)[index]; }
118 T* begin() const { SYNC(); return (T*) fArray; }
  /external/chromium_org/third_party/zlib/
inflate.h 52 SYNC /* looking for synchronization bytes to restart inflate() */
inflate.c     [all...]
  /external/qemu/distrib/zlib-1.2.3/
inflate.h 50 SYNC /* looking for synchronization bytes to restart inflate() */
inflate.c     [all...]
  /external/skia/src/animator/
SkTDArray_Experimental.h 100 #define SYNC() fTData = (T (*)[kDebugArraySize]) fArray
102 #define SYNC()
110 T& operator[](int index) const { SYNC(); SkASSERT((unsigned)index < fCount); return ((T*) fArray)[index]; }
118 T* begin() const { SYNC(); return (T*) fArray; }
  /external/zlib/src/
inflate.h 52 SYNC /* looking for synchronization bytes to restart inflate() */
inflate.c     [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
extension_settings_helper.cc 5 #include "chrome/browser/sync/test/integration/extension_settings_helper.h"
16 #include "chrome/browser/sync/test/integration/extensions_helper.h"
17 #include "chrome/browser/sync/test/integration/sync_datatype_helper.h"
18 #include "chrome/browser/sync/test/integration/sync_extension_helper.h"
54 extensions::settings_namespace::SYNC,
100 extensions::settings_namespace::SYNC,
  /system/extras/tests/sdcard/
testcase.h 46 enum Sync {NO_SYNC, FSYNC, SYNC};
84 Sync sync() const { return mSync; } function in class:android_test::TestCase
85 void setSync(Sync s);
141 Sync mSync;
162 StopWatch *mSyncTimer; // Used to time the sync/fsync calls.
sdcard_perf_test.cpp 119 {"sync", required_argument, 0, 'f'},
140 " -s --sync: fsync|sync Use fsync or sync in write test. Default: no sync call.\n"
251 if (strcmp("sync", optarg) == 0) {
252 testCase->setSync(TestCase::SYNC);
473 if (TestCase::FSYNC == testCase->sync())
479 else if (TestCase::SYNC == testCase->sync())
    [all...]
  /external/chromium_org/chrome/browser/search_engines/
template_url_service_sync_unittest.cc 25 #include "sync/api/sync_error_factory.h"
26 #include "sync/api/sync_error_factory_mock.h"
27 #include "sync/protocol/search_engine_specifics.pb.h"
28 #include "sync/protocol/sync.pb.h"
85 // back up to Sync.
154 // The recipient of all sync changes.
223 // Helper that creates some initial sync data. We cheat a little by specifying
246 // Our dummy ChangeProcessor used to inspect changes pushed to Sync.
262 // in the prepopulate data, which the sync tests don't care about (and woul
    [all...]
  /external/chromium_org/net/websockets/
websocket_channel_test.cc 416 SYNC,
435 // |async| is SYNC, the response will be returned synchronously. |error| is
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
LinkedTransferQueue.java 557 private static final int SYNC = 2; // for transfer, take
571 * @param how NOW, ASYNC, SYNC, or TIMED
    [all...]
  /external/zlib/src/test/
infcover.c 459 state->mode = SYNC; /* force an otherwise impossible situation */

Completed in 577 milliseconds

1 2