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

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython2/Demo/tkinter/guido/
ss1.py 549 self.sync()
556 self.sync()
792 self.sync()
794 def sync(self): member in class:SheetGUI
  /external/python/cpython2/Lib/bsddb/
dbobj.py 218 def sync(self, *args, **kwargs): member in class:DB
219 return self._cobj.sync(*args, **kwargs)
  /external/python/cpython3/Tools/demo/
ss1.py 534 self.sync()
541 self.sync()
777 self.sync()
779 def sync(self): member in class:SheetGUI
  /frameworks/av/media/extractors/mpeg2/
MPEG2TSExtractor.cpp 360 // We're keeping the size of the sync points at most 5mb per a track.
482 ALOGW("No sync point to seek to.");
491 // Determine the sync point to seek.
503 ALOGW("Next sync not found; starting from the latest sync.");
514 ALOGW("Previous sync not found; starting from the earliest "
515 "sync.");
539 // Fast-forward to sync frame.
550 int32_t sync; local
551 if (meta->findInt32("isSync", &sync) && sync)
    [all...]
  /frameworks/base/media/java/android/media/
MediaSync.java 43 * MediaSync sync = new MediaSync();
44 * sync.setSurface(surface);
45 * Surface inputSurface = sync.createInputSurface();
50 * sync.setAudioTrack(audioTrack);
51 * sync.setCallback(new MediaSync.Callback() {
53 * public void onAudioBufferConsumed(MediaSync sync, ByteBuffer audioBuffer, int bufferId) {
57 * // This needs to be done since sync is paused on creation.
58 * sync.setPlaybackParams(new PlaybackParams().setSpeed(1.f));
66 * sync.queueAudio(audioByteBuffer, bufferId, audioPresentationTimeUs); // non-blocking.
72 * sync.setPlaybackParams(new PlaybackParams().setSpeed(0.f))
582 final MediaSync sync = this; local
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/
XMLParser.java 138 _errHandler.sync(this);
148 _errHandler.sync(this);
154 _errHandler.sync(this);
164 _errHandler.sync(this);
218 _errHandler.sync(this);
228 _errHandler.sync(this);
314 _errHandler.sync(this);
369 _errHandler.sync(this);
425 _errHandler.sync(this);
435 _errHandler.sync(this)
    [all...]
  /frameworks/native/libs/gui/
GLConsumer.cpp 276 // Do whatever sync ops we need to do before releasing the slot.
418 // Do whatever sync ops we need to do before releasing the old slot.
678 EGLSyncKHR sync = eglCreateSyncKHR(dpy, local
680 if (sync == EGL_NO_SYNC_KHR) {
686 int fenceFd = eglDupNativeFenceFDANDROID(dpy, sync);
687 eglDestroySyncKHR(dpy, sync);
999 EGLSyncKHR sync = eglCreateSyncKHR(dpy, local
    [all...]
  /frameworks/native/services/surfaceflinger/RenderEngine/
RenderEngine.cpp 223 EGLSyncKHR sync = eglCreateSyncKHR(mEGLDisplay, EGL_SYNC_NATIVE_FENCE_ANDROID, nullptr); local
224 if (sync == EGL_NO_SYNC_KHR) {
225 ALOGW("failed to create EGL native fence sync: %#x", eglGetError());
233 base::unique_fd fenceFd(eglDupNativeFenceFDANDROID(mEGLDisplay, sync));
234 eglDestroySyncKHR(mEGLDisplay, sync);
236 ALOGW("failed to dup EGL native fence sync: %#x", eglGetError());
248 EGLSyncKHR sync = eglCreateSyncKHR(mEGLDisplay, EGL_SYNC_FENCE_KHR, nullptr); local
249 if (sync == EGL_NO_SYNC_KHR) {
250 ALOGW("failed to create EGL fence sync: %#x", eglGetError());
254 EGLint result = eglClientWaitSyncKHR(mEGLDisplay, sync, EGL_SYNC_FLUSH_COMMANDS_BIT_KHR
277 EGLSyncKHR sync = eglCreateSyncKHR(mEGLDisplay, EGL_SYNC_NATIVE_FENCE_ANDROID, attribs); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
PreferencesTest.java 411 public void sync() throws BackingStoreException { method in class:PreferencesTest.MockPreferences
  /libcore/ojluni/src/main/java/java/io/
RandomAccessFile.java 294 // BEGIN Android-added: Sync after rws/rwd write
298 fd.sync();
310 // END Android-added: Sync after rws/rwd write
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/locks/
ReentrantReadWriteLock.java 225 final Sync sync; field in class:ReentrantReadWriteLock
242 sync = fair ? new FairSync() : new NonfairSync();
254 abstract static class Sync extends AbstractQueuedSynchronizer {
339 Sync() {
669 * Nonfair version of Sync
671 static final class NonfairSync extends Sync {
689 * Fair version of Sync
691 static final class FairSync extends Sync {
706 private final Sync sync field in class:ReentrantReadWriteLock.ReadLock
920 private final Sync sync; field in class:ReentrantReadWriteLock.WriteLock
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/
dbobj.py 218 def sync(self, *args, **kwargs): member in class:DB
219 return self._cobj.sync(*args, **kwargs)
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/
dbobj.py 218 def sync(self, *args, **kwargs): member in class:DB
219 return self._cobj.sync(*args, **kwargs)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbobj.py 218 def sync(self, *args, **kwargs): member in class:DB
219 return self._cobj.sync(*args, **kwargs)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbobj.py 218 def sync(self, *args, **kwargs): member in class:DB
219 return self._cobj.sync(*args, **kwargs)
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldPreferencesTest.java 109 p.sync();
1110 public void sync() throws BackingStoreException { method in class:OldPreferencesTest.MockPreferences
    [all...]
  /bionic/libc/kernel/uapi/drm/
via_drm.h 196 drm_via_blitsync_t sync; member in struct:drm_via_dmablit
  /bionic/libc/kernel/uapi/linux/
firewire-cdev.h 225 __u32 sync; member in struct:fw_cdev_start_iso
if.h 136 sync_serial_settings __user * sync; member in union:if_settings::__anon668
  /external/ImageMagick/MagickCore/
distort.c 2330 sync; local
3046 sync; local
    [all...]
effect.c 1112 sync; local
3184 sync; local
    [all...]
enhance.c 3480 sync; local
    [all...]
image.c 558 sync;
597 sync=SyncCacheViewAuthenticPixels(append_view,exception);
598 if (sync == MagickFalse)
552 sync; local
1083 sync; local
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
BaseTest.java 538 protected void sync(int i) { method in class:BaseTest.FilteringTokenStream
539 super.sync(i);
  /external/iproute2/include/uapi/linux/
if.h 215 sync_serial_settings *sync; member in union:if_settings::__anon21895

Completed in 630 milliseconds

1 2 3 4 5 6 7 8 91011>>