HomeSort by relevance Sort by last modified time
    Searched defs:Sync (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/chromium_org/media/formats/common/
offset_byte_queue.cc 24 Sync();
36 Sync();
60 void OffsetByteQueue::Sync() {
  /external/chromium_org/third_party/WebKit/Source/core/html/imports/
HTMLImport.h 101 Sync = 0,
111 bool isSync() const { return SyncMode(m_sync) == Sync; }
128 explicit HTMLImport(SyncMode sync)
129 : m_sync(sync)
  /external/chromium_org/tools/cr/cr/commands/
sync.py 5 """A module for the sync command."""
13 """The implementation of the sync command.
15 This command is a very thin shim over the gclient sync, and should remain so.
30 self.help = 'Sync the source tree'
31 self.description = 'Run gclient sync with the right environment.'
40 self.Sync(cr.context.remains)
43 def Sync(args):
48 # one to do a sync in
49 cr.Host.Execute('{GCLIENT_BINARY}', 'sync', *args)
  /libcore/luni/src/main/java/java/util/concurrent/
CountDownLatch.java 132 private static final class Sync extends AbstractQueuedSynchronizer {
135 Sync(int count) {
160 private final Sync sync; field in class:CountDownLatch
171 this.sync = new Sync(count);
202 sync.acquireSharedInterruptibly(1);
248 return sync.tryAcquireSharedNanos(1, unit.toNanos(timeout));
262 sync.releaseShared(1);
273 return sync.getCount()
    [all...]
Semaphore.java 130 private final Sync sync; field in class:Semaphore
137 abstract static class Sync extends AbstractQueuedSynchronizer {
140 Sync(int permits) {
192 static final class NonfairSync extends Sync {
207 static final class FairSync extends Sync {
236 sync = new NonfairSync(permits);
251 sync = fair ? new FairSync(permits) : new NonfairSync(permits);
283 sync.acquireSharedInterruptibly(1);
306 sync.acquireShared(1)
    [all...]
  /cts/tests/app/src/android/app/cts/
CTSActivityTestCaseBase.java 24 private Sync mSync;
25 static class Sync {
33 mSync = new Sync();
  /external/chromium_org/third_party/libwebp/utils/
thread.h 61 int (*Sync)(WebPWorker* const worker);
64 // function, but not be changed afterward until the next call to Sync().
68 // mechanism while still using the WebPWorker structs. Sync() must
thread.c 172 // signal to the main thread that we're done (for Sync())
211 static int Sync(WebPWorker* const worker) {
251 ok = Sync(worker);
291 Init, Reset, Sync, Launch, Execute, End
297 winterface->Sync == NULL || winterface->Launch == NULL ||
  /external/webp/src/utils/
thread.h 61 int (*Sync)(WebPWorker* const worker);
64 // function, but not be changed afterward until the next call to Sync().
68 // mechanism while still using the WebPWorker structs. Sync() must
thread.c 172 // signal to the main thread that we're done (for Sync())
211 static int Sync(WebPWorker* const worker) {
251 ok = Sync(worker);
291 Init, Reset, Sync, Launch, Execute, End
297 winterface->Sync == NULL || winterface->Launch == NULL ||
  /cts/tests/tests/app/src/android/app/cts/
LocalActivityManagerTest.java 31 private Sync mSync = new Sync();
32 private static class Sync {
40 mSync = new Sync();
AlarmManagerTest.java 45 class Sync {
  /development/testrunner/
adb_interface.py 452 def Sync(self, retry_count=3, runtime_restart=False):
453 """Perform a adb sync.
458 retry_count: number of times to retry sync before failing
459 runtime_restart: stop runtime during sync and restart afterwards, useful
476 output = self.SendCommand("sync", retry_count=retry_count)
484 output = self.SendCommand("sync", retry_count=retry_count)
489 output = self.SendCommand("sync", retry_count=retry_count)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BufferedTokenStream.cs 184 Sync(_p);
188 protected virtual void Sync(int i) {
262 Sync(i);
275 Sync(0);
365 Sync(i);
368 Sync(i);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BufferedTokenStream.cs 212 Sync(_p);
216 protected virtual void Sync(int i)
298 Sync(i);
313 Sync(0);
417 Sync(i);
421 Sync(i);
  /external/chromium_org/third_party/android_testrunner/
adb_interface.py 457 def Sync(self, retry_count=3, runtime_restart=False):
458 """Perform a adb sync.
463 retry_count: number of times to retry sync before failing
464 runtime_restart: stop runtime during sync and restart afterwards, useful
481 output = self.SendCommand("sync", retry_count=retry_count)
489 output = self.SendCommand("sync", retry_count=retry_count)
494 output = self.SendCommand("sync", retry_count=retry_count)
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 68 private final Sync<V> sync = new Sync<V>(); field in class:AbstractFuture
91 return sync.get(unit.toNanos(timeout));
111 return sync.get();
116 return sync.isDone();
121 return sync.isCancelled();
126 if (!sync.cancel()) {
161 * {@link AbstractFuture.Sync#COMPLETED} and invoke the listeners if the
168 boolean result = sync.set(value)
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
RemoteCallbackListTest.java 35 private Sync mSync = new Sync();
71 private static class Sync {
  /external/chromium_org/media/formats/mp2t/
ts_packet.cc 17 int TsPacket::Sync(const uint8* buf, int size) {
41 DVLOG_IF(1, k != 0) << "SYNC: nbytes_skipped=" << k;
  /external/chromium_org/third_party/leveldatabase/
env_chromium_stdio.cc 224 Status ChromiumWritableFile::Sync() {
225 TRACE_EVENT0("leveldb", "ChromiumEnvStdio::Sync");
231 // Sync even if fflush gave an error; perhaps the data actually got out,
env_chromium_win.cc 172 // On Windows no need to sync parent directory. It's metadata will be
173 // updated via the creation of the new file, without an explicit sync.
215 Status ChromiumWritableFileWin::Sync() {
216 TRACE_EVENT0("leveldb", "ChromiumEnvWin::Sync");
  /external/chromium_org/third_party/leveldatabase/src/db/
log_test.cc 47 virtual Status Sync() { return Status::OK(); }
  /external/lldb/source/Host/common/
File.cpp 450 File::Sync ()
  /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...]
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_custom_dictionary.cc 18 #include "sync/api/sync_change.h"
19 #include "sync/api/sync_data.h"
20 #include "sync/api/sync_error_factory.h"
21 #include "sync/protocol/sync.pb.h"
242 Sync(dictionary_change);
254 Sync(dictionary_change);
329 // Send local changes to the sync server.
332 result.set_error(Sync(to_change_remotely));
382 "Processing sync changes failed on change type "
    [all...]

Completed in 632 milliseconds

1 2 3