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

1 2 3 4 5

  /cts/tests/app/src/android/app/cts/
CTSActivityTestCaseBase.java 24 private Sync mSync;
25 static class Sync {
33 mSync = new Sync();
  /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...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CommonTokenStream.cs 87 Sync(_p);
90 Sync(_p);
137 Sync(i);
141 Sync(i);
156 Sync(0);
160 Sync(i);
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/chromium_org/third_party/WebKit/Source/core/html/imports/
HTMLImport.h 100 Sync = 0,
110 bool isSync() const { return SyncMode(m_sync) == Sync; }
127 explicit HTMLImport(SyncMode sync)
128 : m_sync(sync)
  /external/chromium_org/media/formats/common/
offset_byte_queue.cc 24 Sync();
36 Sync();
60 void OffsetByteQueue::Sync() {
offset_byte_queue.h 54 void Sync();
  /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();
  /external/chromium_org/media/formats/mp2t/
ts_packet.h 22 static int Sync(const uint8* buf, int size);
  /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 ||
  /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.
  /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/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...]
ReentrantReadWriteLock.java 195 final Sync sync; field in class:ReentrantReadWriteLock
212 sync = fair ? new FairSync() : new NonfairSync();
224 abstract static class Sync extends AbstractQueuedSynchronizer {
309 Sync() {
639 * Nonfair version of Sync
641 static final class NonfairSync extends Sync {
659 * Fair version of Sync
661 static final class FairSync extends Sync {
676 private final Sync sync field in class:ReentrantReadWriteLock.ReadLock
885 private final Sync sync; field in class:ReentrantReadWriteLock.WriteLock
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CommonTokenStream.cs 149 Sync(i);
154 Sync(i);
BufferedTokenStream.cs 212 Sync(_p);
216 protected virtual void Sync(int i)
298 Sync(i);
313 Sync(0);
417 Sync(i);
421 Sync(i);
  /cts/tests/tests/os/src/android/os/cts/
RemoteCallbackListTest.java 35 private Sync mSync = new Sync();
71 private static class Sync {
  /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...]
  /external/chromium_org/third_party/leveldatabase/
env_chromium_stdio.h 26 virtual leveldb::Status Sync();
  /external/chromium_org/third_party/leveldatabase/src/db/
builder.cc 57 s = file->Sync();
  /external/chromium_org/third_party/usb_ids/
usb.ids 1107 551a PC Sync Keypad
1109 551c Sync Tenkey
    [all...]

Completed in 1224 milliseconds

1 2 3 4 5