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

1 2 3 4 5 6 7 8 91011

  /bionic/libc/arch-arm/syscalls/
sync.S 6 ENTRY(sync) function
15 END(sync)
  /bionic/libc/arch-mips/syscalls/
sync.S 4 .globl sync
6 .ent sync
8 sync: label
22 .end sync
  /bionic/libc/arch-x86/syscalls/
sync.S 6 ENTRY(sync) function
21 END(sync)
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/output.streams/ostream.manip/
flush.pass.cpp 35 sync() function in class:testbuf
endl.pass.cpp 55 sync() function in class:testbuf
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/output.streams/ostream.unformatted/
flush.pass.cpp 34 sync() function in class:testbuf
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/output.streams/ostream_sentry/
destruct.pass.cpp 30 int virtual sync() function in struct:testbuf1
construct.pass.cpp 30 int virtual sync() function in struct:testbuf1
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
PeriodicSyncTest.java 21 PeriodicSync sync = new PeriodicSync(a, "auth", local
24 assertThat(sync.account, is(a));
25 assertThat(sync.authority, equalTo("auth"));
26 assertThat(sync.period, equalTo(120l));
27 assertNotNull(sync.extras);
  /frameworks/base/core/tests/overlaytests/
runtests.sh 100 function sync() function
103 $adb sync data | tee -a $log
109 # build and sync
112 sync
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/input.streams/istream/istream_sentry/
ctor.pass.cpp 46 int virtual sync() function in struct:testbuf
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/input.streams/istream.unformatted/
sync.pass.cpp 12 // int sync();
43 int sync() function in struct:testbuf
55 assert(is.sync() == 0);
61 assert(is.sync() == 0);
  /external/chromium/chrome/browser/resources/sync_internals/
chrome_sync.js 8 chrome.sync = chrome.sync || {};
66 chrome.sync.onSyncServiceStateChanged = new Event();
69 chrome.sync.onSyncNotificationStateChange = new Event();
70 chrome.sync.onSyncIncomingNotification = new Event();
73 chrome.sync.onChangesApplied = new Event();
74 chrome.sync.onChangesComplete = new Event();
75 chrome.sync.onSyncCycleCompleted = new Event();
76 chrome.sync.onAuthError = new Event();
77 chrome.sync.onUpdatedToken = new Event()
    [all...]
  /cts/tests/tests/openglperf/jni/
OpenGlPerfNativeJni.cpp 18 #define EGL_EGLEXT_PROTOTYPES // for egl*Sync*
29 EGLSyncKHR sync);
31 EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout);
66 EGLSyncKHR sync = mEglCreateSyncKHR(dpy, EGL_SYNC_FENCE_KHR, NULL); local
67 if (sync == EGL_NO_SYNC_KHR) {
71 EGLint result = mEglClientWaitSyncKHR(dpy, sync, EGL_SYNC_FLUSH_COMMANDS_BIT_KHR, waitTimeInNs);
79 mEglDestroySyncKHR(dpy, sync);
  /external/oprofile/daemon/
opd_extended.h 53 int (*sync)(struct sfile *); member in struct:opd_ext_sfile_handlers
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCookieSyncManager.java 37 public void sync() { method in class:ShadowCookieSyncManager
  /external/webkit/Source/WebKit/chromium/src/
StorageNamespaceProxy.cpp 104 void StorageNamespaceProxy::sync() function in class:WebCore::StorageNamespaceProxy
  /frameworks/rs/
spec.h 26 int sync; member in struct:__anon20305
  /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...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TimerTaskTest.java 24 Object sync = new Object(), start = new Object(); field in class:TimerTaskTest
51 synchronized (sync) {
52 sync.notify();
179 synchronized (sync) {
181 sync.wait(500);
197 synchronized (sync) {
199 sync.wait(500);
  /libcore/luni/src/test/java/tests/api/java/util/
TimerTaskTest.java 30 private final Object sync = new Object(); field in class:TimerTaskTest.TimerTestTask
53 synchronized (sync) {
54 sync.notify();
181 synchronized (testTask.sync) {
183 testTask.sync.wait(500);
199 synchronized (testTask.sync) {
201 testTask.sync.wait(500);
  /external/eigen/Eigen/src/Core/products/
Parallelizer.h 76 GemmParallelInfo() : sync(-1), users(0), rhs_start(0), rhs_length(0) {}
78 int volatile sync; member in struct:Eigen::internal::GemmParallelInfo
  /libcore/luni/src/main/java/java/io/
FileDescriptor.java 69 public void sync() throws SyncFailedException { method in class:FileDescriptor
  /cts/tests/tests/webkit/src/android/webkit/cts/
CookieSyncManagerTest.java 65 csm1.sync();
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
LookaheadStream.h 80 public void consume() { sync(1); remove(); }
86 public void sync(int need) { function in class:FastQueue
119 sync(k);

Completed in 4703 milliseconds

1 2 3 4 5 6 7 8 91011