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

1 2 3 4 5 6 7 8 910

  /external/deqp/external/openglcts/modules/gl/
gl4cSyncTests.hpp 39 namespace Sync
65 * behaves like Flush was inserted immediately after the creation of sync. This shall
105 } /* Sync namespace */
gl4cSyncTests.cpp 52 namespace Sync
56 /** @brief Sync Tests Group constructor.
60 Tests::Tests(deqp::Context& context) : TestCaseGroup(context, "sync", "Sync Tests Suite")
64 /** @brief Sync Tests initializer. */
67 addChild(new Sync::FlushCommandsTest(m_context));
72 /** @brief Sync Flush Commands Test constructor.
77 : deqp::TestCase(context, "flush_commands", "Sync Flush Commands Test")
82 /** @brief Iterate Sync Flush Commands Test cases.
114 glw::GLsync sync = 0 local
    [all...]
  /external/ltp/testcases/kernel/io/disktest/
io.c 174 int Sync(fd_t fd)
  /external/perfetto/infra/git_mirror_bot/
mirror_aosp_to_ghub_repo.py 111 def Sync():
186 Sync()
  /external/tensorflow/tensorflow/core/common_runtime/sycl/
sycl_device.cc 91 Status SYCLDevice::Sync() {
  /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...]
Semaphore.java 165 private final Sync sync; field in class:Semaphore
172 abstract static class Sync extends AbstractQueuedSynchronizer {
175 Sync(int permits) {
227 static final class NonfairSync extends Sync {
242 static final class FairSync extends Sync {
271 sync = new NonfairSync(permits);
286 sync = fair ? new FairSync(permits) : new NonfairSync(permits);
318 sync.acquireSharedInterruptibly(1);
341 sync.acquireShared(1)
    [all...]
  /prebuilts/go/darwin-x86/src/os/
file_posix.go 120 // Sync commits the current contents of the file to stable storage.
123 func (f *File) Sync() error {
124 if err := f.checkValid("sync"); err != nil {
128 return f.wrapErr("sync", e)
file_plan9.go 221 // Sync commits the current contents of the file to stable storage.
224 func (f *File) Sync() error {
  /prebuilts/go/linux-x86/src/os/
file_posix.go 120 // Sync commits the current contents of the file to stable storage.
123 func (f *File) Sync() error {
124 if err := f.checkValid("sync"); err != nil {
128 return f.wrapErr("sync", e)
  /cts/tests/app/app/src/android/app/stubs/
CTSActivityTestCaseBase.java 25 private Sync mSync;
26 static class Sync {
34 mSync = new Sync();
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_compilation_device.cc 118 Status XlaCompilationDevice::Sync() { return Status::OK(); }
  /external/webp/src/utils/
thread_utils.h 58 int (*Sync)(WebPWorker* const worker);
61 // function, but not be changed afterward until the next call to Sync().
65 // mechanism while still using the WebPWorker structs. Sync() must
  /bootable/recovery/minui/
graphics_adf.cpp 27 #include <sync/sync.h>
154 void MinuiBackendAdf::Sync(GRSurfaceAdf* surf) {
162 perror("adf sync fence wait error\n");
178 Sync(&surfaces[current_surface]);
  /external/tensorflow/tensorflow/core/lib/io/
zlib_outputbuffer.cc 200 Status ZlibOutputBuffer::Sync() {
202 return file_->Sync();
  /test/vts/drivers/hal/libcodecoverage/
GcdaFile.cpp 56 void GcdaFile::Sync(unsigned base, unsigned length) {
  /cts/tests/app/src/android/app/cts/
LocalActivityManagerTest.java 33 private Sync mSync = new Sync();
34 private static class Sync {
42 mSync = new Sync();
  /development/testrunner/
adb_interface.py 460 def Sync(self, retry_count=3, runtime_restart=False):
461 """Perform a adb sync.
466 retry_count: number of times to retry sync before failing
467 runtime_restart: stop runtime during sync and restart afterwards, useful
484 output = self.SendCommand("sync", retry_count=retry_count)
492 output = self.SendCommand("sync", retry_count=retry_count)
497 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/guava/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 68 private final Sync<V> sync = new Sync<V>(); field in class:AbstractFuture
96 return sync.get(unit.toNanos(timeout));
116 return sync.get();
121 return sync.isDone();
126 return sync.isCancelled();
131 if (!sync.cancel(mayInterruptIfRunning)) {
160 return sync.wasInterrupted();
176 * {@link AbstractFuture.Sync#COMPLETED} and invoke the listeners if th
    [all...]
  /external/libvpx/libvpx/test/
vp9_thread_test.cc 54 EXPECT_NE(vpx_get_worker_interface()->sync(&worker_), 0);
66 EXPECT_NE(vpx_get_worker_interface()->sync(&worker_), 0);
71 EXPECT_NE(vpx_get_worker_interface()->sync(&worker_), 0);
85 EXPECT_FALSE(vpx_get_worker_interface()->sync(&worker_));
93 EXPECT_NE(vpx_get_worker_interface()->sync(&worker_), 0);
139 case 2: winterface.sync = NULL; break;
203 int Sync(VPxWorker *const worker) { return !worker->had_error; }
216 impl::Init, impl::Reset, impl::Sync, impl::Launch, impl::Execute, impl::End
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsISelLowering.h 86 Sync,
  /external/tensorflow/tensorflow/core/common_runtime/gpu/
gpu_util.cc 349 Status GPUUtil::Sync(Device* gpu_device) {
350 VLOG(1) << "GPUUtil::Sync";
366 return errors::Internal("GPU sync failed");
  /external/toolchain-utils/automation/clients/helper/
perforce.py 178 def Sync(self, revision=None):
182 return cmd.Shell('g4', 'sync', sync_arg)

Completed in 1635 milliseconds

1 2 3 4 5 6 7 8 910