Searched defs:sync (Results 1 - 25 of 48) sorted by relevance

12

/external/astl/src/
H A Dstdio_filebuf.cpp47 int stdio_filebuf::sync() { function in class:android::stdio_filebuf
/external/chromium/chrome/browser/resources/sync_internals/
H A Dchrome_sync.js8 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
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DInterp.java54 protected void sync(int i) { method in class:Interp.FilteringTokenStream
55 super.sync(i);
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAddressParametersHeader.java74 * @param sync
77 protected AddressParametersHeader(String name, boolean sync) { argument
78 super(name,sync);
H A DParametersHeader.java69 protected ParametersHeader(String hdrName, boolean sync) { argument
71 this.parameters = new NameValueList(sync);
/external/oprofile/daemon/
H A Dopd_extended.h53 int (*sync)(struct sfile *); member in struct:opd_ext_sfile_handlers
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DTimerTaskTest.java24 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);
H A DTimerTest.java29 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...]
/external/clang/test/CodeGen/
H A Dbuiltins-ptx.c95 void sync() { function
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DLookaheadStream.h80 public void consume() { sync(1); remove(); }
86 public void sync(int need) { function in class:FastQueue
119 sync(k);
/external/e2fsprogs/include/nonunix/
H A Dunistd.h38 // no-oped sync
39 __inline void sync(void){}; function
/external/webkit/Source/WebCore/storage/
H A DStorageNamespaceImpl.cpp189 void StorageNamespaceImpl::sync() function in class:WebCore::StorageNamespaceImpl
194 it->second->sync();
H A DStorageAreaImpl.cpp250 void StorageAreaImpl::sync() function in class:WebCore::StorageAreaImpl
H A DStorageAreaSync.cpp45 // If the StorageArea undergoes rapid changes, don't sync each change to disk.
46 // Instead, queue up a batch of items to sync and actually do the sync at the following interval.
49 // A sane limit on how many items we'll schedule to sync all at once. This makes it
170 // Do not schedule another sync if we're still trying to complete the
336 void StorageAreaSync::sync(bool clearItems, const HashMap<String, String>& items) function in class:WebCore::StorageAreaSync
426 sync(clearItems, items);
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DWebRequest.h93 void setSync(bool sync) { m_isSync = sync; } argument
/external/webkit/Source/WebKit/chromium/src/
H A DStorageNamespaceProxy.cpp104 void StorageNamespaceProxy::sync() function in class:WebCore::StorageNamespaceProxy
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBufferedTokenStream.java120 sync(p);
124 protected void sync(int i) { method in class:BufferedTokenStream
126 //System.out.println("sync("+i+") needs "+n);
175 sync(i);
184 protected void setup() { sync(0); p = 0; }
266 sync(i);
269 sync(i);
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractFuture.java68 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()) {
168 boolean result = sync.set(value);
186 boolean result = sync.setException(checkNotNull(throwable));
/external/stlport/src/
H A Diostream.cpp296 bool _STLP_CALL ios_base::sync_with_stdio(bool sync) { argument
302 if (sync == _S_is_synced) return sync;
305 // just set the sync flag and exit
307 _S_is_synced = sync;
308 return sync;
316 if (sync)
321 if (sync) {
344 _S_is_synced = sync;
H A Dstdio_streambuf.cpp144 int stdio_streambuf_base::sync() { function in class:stdio_streambuf_base
/external/stlport/stlport/stl/
H A D_streambuf.c184 basic_streambuf<_CharT, _Traits>::sync() { return 0; } function in class:_Traits
/external/zlib/contrib/iostream/
H A Dzfstream.cpp12 sync();
106 sync();
206 int gzfilebuf::sync() { function in class:gzfilebuf
/external/zlib/contrib/iostream3/
H A Dzfstream.cc34 this->sync();
114 // Attempt to sync and close gzipped file
115 if (this->sync() == -1)
269 // First make sure stuff is sync'ed, for safety
270 if (this->sync() == -1)
299 gzfilebuf::sync() function in class:gzfilebuf
/external/jmonkeyengine/engine/src/core/com/jme3/system/
H A DNullContext.java100 public void sync(int fps) { method in class:NullContext
134 sync(frameRate);
/external/nist-sip/java/gov/nist/core/
H A DNameValueList.java71 public NameValueList(boolean sync) { argument
73 if (sync)

Completed in 310 milliseconds

12