HomeSort by relevance Sort by last modified time
    Searched defs:sync (Results 51 - 75 of 841) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/skqp/src/gpu/gl/
GrGLSemaphore.h 24 GrGLsync sync,
28 sema->setSync(sync);
34 GrGLsync sync() const { return fSync; } function in class:GrGLSemaphore
35 void setSync(const GrGLsync& sync) { fSync = sync; }
  /frameworks/base/core/java/android/webkit/
CookieSyncManager.java 34 * To set up for sync, the host application has to call<p>
46 * To get instant sync instead of waiting for the timer to trigger, the host can
49 * <pre class="prettyprint">CookieSyncManager.getInstance().sync()</pre><p>
51 * The sync interval is 5 minutes, so you will want to force syncs
53 * WebViewClient#onPageFinished}. Note that even sync() happens
59 * To manually force a sync you can use the CookieManager
61 * replacement for {@link #sync}.
107 * sync() forces sync manager to sync no
111 public void sync() { method in class:CookieSyncManager
    [all...]
WebSyncManager.java 41 * sync() forces sync manager to sync now
43 public void sync() { method in class:WebSyncManager
47 * resetSync() resets sync manager's timer
53 * startSync() requests sync manager to start sync
59 * stopSync() requests sync manager to stop sync. remove any SYNC_MESSAGE in
60 * the queue to break the sync loo
    [all...]
  /frameworks/base/libs/hwui/utils/
StringUtils.h 58 virtual int sync() { function in class:android::uirenderer::LogcatStream::LogcatStreamBuf
  /frameworks/rs/
spec.h 26 int sync; member in struct:__anon46771
  /hardware/libhardware/modules/input/evdev/
MouseInputMapper.cpp 34 // The order of these definitions MUST remain in sync with the order they are
102 sync(event.when);
150 void MouseInputMapper::sync(nsecs_t when) { function in class:android::MouseInputMapper
SwitchInputMapper.cpp 85 sync(event.when);
105 void SwitchInputMapper::sync(nsecs_t when) { function in class:android::SwitchInputMapper
  /libcore/ojluni/src/main/java/java/util/concurrent/
CountDownLatch.java 162 private static final class Sync extends AbstractQueuedSynchronizer {
165 Sync(int count) {
190 private final Sync sync; field in class:CountDownLatch
201 this.sync = new Sync(count);
232 sync.acquireSharedInterruptibly(1);
278 return sync.tryAcquireSharedNanos(1, unit.toNanos(timeout));
292 sync.releaseShared(1);
303 return sync.getCount()
    [all...]
  /prebuilts/go/darwin-x86/src/sync/
mutex.go 5 // Package sync provides basic synchronization primitives such as mutual
11 package sync package
15 "sync/atomic"
121 throw("sync: inconsistent mutex state")
143 throw("sync: inconsistent mutex state")
184 throw("sync: unlock of unlocked mutex")
runtime.go 5 package sync package
49 // Ensure that sync and runtime agree on size of notifyList.
  /prebuilts/go/linux-x86/src/sync/
mutex.go 5 // Package sync provides basic synchronization primitives such as mutual
11 package sync package
15 "sync/atomic"
121 throw("sync: inconsistent mutex state")
143 throw("sync: inconsistent mutex state")
184 throw("sync: unlock of unlocked mutex")
runtime.go 5 package sync package
49 // Ensure that sync and runtime agree on size of notifyList.
  /prebuilts/jdk/jdk8/darwin-x86/sample/scripting/scriptpad/src/resources/
conc.js 52 // check if there is a build in sync function, define one if missing
53 if (typeof sync === "undefined") {
54 var sync = function(func, obj) { function in function:var
56 throw "sync(function [,object]) parameter count mismatch";
74 sync.docString = "synchronize a function, optionally on an object";
80 * can be called only within a sync method
92 * can be called only within a sync method
104 * can be called only within a sync method
189 Function.prototype.sync = function (lock) {
313 __put__: sync(function(name, value)
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/scripting/scriptpad/src/resources/
conc.js 52 // check if there is a build in sync function, define one if missing
53 if (typeof sync === "undefined") {
54 var sync = function(func, obj) { function in function:var
56 throw "sync(function [,object]) parameter count mismatch";
74 sync.docString = "synchronize a function, optionally on an object";
80 * can be called only within a sync method
92 * can be called only within a sync method
104 * can be called only within a sync method
189 Function.prototype.sync = function (lock) {
313 __put__: sync(function(name, value)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TimerTaskTest.java 30 private final Object sync = new Object(); field in class:TimerTaskTest.TimerTestTask
53 synchronized (sync) {
54 sync.notify();
184 synchronized (testTask.sync) {
186 testTask.sync.wait(500);
206 synchronized (testTask.sync) {
208 testTask.sync.wait(500);
  /packages/apps/Dialer/java/com/android/voicemail/impl/sync/
SyncOneTask.java 17 package com.android.voicemail.impl.sync;
69 service.sync(this, phone, voicemail, VoicemailStatus.edit(getContext(), phone));
SyncTask.java 17 package com.android.voicemail.impl.sync;
30 /** System initiated sync request. */
34 // Try sync for a total of 5 times, should take around 5 minutes before finally giving up.
67 service.sync(this, phone, null, retryPolicy.getVoicemailStatusEditor());
OmtpVvmSyncReceiver.java 17 package com.android.voicemail.impl.sync;
43 VvmLog.v(TAG, "Sync intent received");
  /external/ImageMagick/Magick++/lib/
Pixels.cpp 92 void Magick::Pixels::sync(void) function in class:Magick::Pixels
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
EventWithExceptionDebuggee.java 51 sync(); method
55 private void sync() { method in class:EventWithExceptionDebuggee
  /external/eigen/Eigen/src/Core/products/
Parallelizer.h 76 GemmParallelInfo() : sync(-1), users(0), lhs_start(0), lhs_length(0) {}
78 Index volatile sync; member in struct:Eigen::internal::GemmParallelInfo
  /external/libvpx/libvpx/vpx_util/
vpx_thread.c 46 // signal to the main thread that we're done (for sync())
84 static int sync(VPxWorker *const worker) { function
124 ok = sync(worker);
163 static VPxWorkerInterface g_worker_interface = { init, reset, sync,
168 winterface->reset == NULL || winterface->sync == NULL ||
  /external/owasp/sanitizer/tools/
update_tree_in_svn.py 28 def sync(src_to_dest): function
130 sync([(sys.argv[1], sys.argv[2])])
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SyncFailedExceptionTest.java 38 fd.sync();
  /libcore/ojluni/src/main/java/java/io/
FileDescriptor.java 115 * system, sync will not return until all in-memory modified copies
119 * sync is meant to be used by code that requires physical
122 * might use sync to ensure that all changes to a file caused
125 * sync only affects buffers downstream of this FileDescriptor. If
129 * OutputStream.flush) before that data will be affected by sync.
137 public native void sync() throws SyncFailedException; method in class:FileDescriptor

Completed in 637 milliseconds

1 23 4 5 6 7 8 91011>>