Home
last modified time | relevance | path

Searched refs:sync (Results 1 – 25 of 103) sorted by relevance

12345

/frameworks/native/opengl/include/EGL/
Deglext.h141 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync);
142 EGLAPI EGLint EGLAPIENTRY eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTi…
143 EGLAPI EGLBoolean EGLAPIENTRY eglSignalSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode);
144 EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute…
147 typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync);
148 typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint …
149 typedef EGLBoolean (EGLAPIENTRYP PFNEGLSIGNALSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLenum…
150 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLi…
204 EGLBoolean eglDestroySyncNV (EGLSyncNV sync);
205 EGLBoolean eglFenceNV (EGLSyncNV sync);
[all …]
/frameworks/native/opengl/specs/
DEGL_ANDROID_native_fence_sync.txt39 This extension enables the creation of EGL fence sync objects that are
41 using a file descriptor. These EGL fence sync objects have nearly
47 object that behaves similarly to an EGL fence sync object. These native
89 "If <type> is EGL_SYNC_NATIVE_FENCE_ANDROID, an EGL native fence sync
95 The default values for the EGL native fence sync object attributes are as
115 "When a fence sync object is created or when an EGL native fence sync
120 with the newly created sync object.
122 After associating the fence command with an EGL native fence sync object,
127 new native fence object is signaled when the EGL native fence sync object
130 When the condition of the sync object is satisfied by the fence command,
[all …]
/frameworks/base/media/java/android/media/
DJetPlayer.java330 public boolean setMuteFlags(int muteFlags, boolean sync) { in setMuteFlags() argument
331 return native_setMuteFlags(muteFlags, sync); in setMuteFlags()
346 public boolean setMuteArray(boolean[] muteArray, boolean sync) { in setMuteArray() argument
349 return native_setMuteArray(muteArray, sync); in setMuteArray()
363 public boolean setMuteFlag(int trackId, boolean muteFlag, boolean sync) { in setMuteFlag() argument
364 return native_setMuteFlag(trackId, muteFlag, sync); in setMuteFlag()
551 private native final boolean native_setMuteFlags(int muteFlags, boolean sync); in native_setMuteFlags() argument
552 private native final boolean native_setMuteArray(boolean[]muteArray, boolean sync); in native_setMuteArray() argument
553 private native final boolean native_setMuteFlag(int trackId, boolean muteFlag, boolean sync); in native_setMuteFlag() argument
/frameworks/base/core/java/com/android/internal/view/
DBaseIWindow.java76 public void dispatchWallpaperOffsets(float x, float y, float xStep, float yStep, boolean sync) { in dispatchWallpaperOffsets() argument
77 if (sync) { in dispatchWallpaperOffsets()
97 int z, Bundle extras, boolean sync) { in dispatchWallpaperCommand() argument
98 if (sync) { in dispatchWallpaperCommand()
/frameworks/support/v4/java/android/support/v4/util/
DAtomicFile.java123 sync(str); in finishWrite()
140 sync(str); in failWrite()
203 static boolean sync(FileOutputStream stream) { in sync() method in AtomicFile
206 stream.getFD().sync(); in sync()
/frameworks/native/opengl/libs/EGL/
DeglApi.cpp788 static void queueSync(EGLSyncKHR sync) { in queueSync() argument
799 thread->mQueue.push_back(sync); in queueSync()
810 EGLSyncKHR sync; in threadLoop() local
817 sync = mQueue[0]; in threadLoop()
824 EGLint result = eglClientWaitSyncKHR(dpy, sync, 0, EGL_FOREVER_KHR); in threadLoop()
830 eglDestroySyncKHR(dpy, sync); in threadLoop()
880 EGLSyncKHR sync = EGL_NO_SYNC_KHR; in eglSwapBuffers() local
882 sync = eglCreateSyncKHR(dpy, EGL_SYNC_FENCE_KHR, NULL); in eglSwapBuffers()
884 if (sync != EGL_NO_SYNC_KHR) { in eglSwapBuffers()
885 FrameCompletionThread::queueSync(sync); in eglSwapBuffers()
[all …]
/frameworks/base/core/tests/overlaytests/
Druntests.sh100 function sync() function
103 $adb sync data | tee -a $log
112 sync
/frameworks/native/opengl/libs/GLES_trace/
Ddev.make9 sync:
13 adb sync
/frameworks/base/docs/html/training/cloudsync/
Dindex.jd11 helps you build rich cloud-enabled apps that sync their data to a remote web
12 service, making sure all your devices always stay in sync, and your valuable
31 efficiently sync with the server.</dd>
/frameworks/base/core/java/android/util/
DAtomicFile.java129 FileUtils.sync(str); in finishWrite()
146 FileUtils.sync(str); in failWrite()
163 FileUtils.sync(fos); in truncate()
/frameworks/base/core/java/com/android/internal/os/
DAtomicFile.java91 FileUtils.sync(str); in finishWrite()
103 FileUtils.sync(str); in failWrite()
125 FileUtils.sync(fos); in truncate()
/frameworks/base/core/java/android/view/
DIWindow.aidl66 void dispatchWallpaperOffsets(float x, float y, float xStep, float yStep, boolean sync); in dispatchWallpaperOffsets() argument
69 int z, in Bundle extras, boolean sync); in dispatchWallpaperCommand() argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeWindow.java72 boolean sync) { in dispatchWallpaperOffsets() argument
78 int z, Bundle extras, boolean sync) { in dispatchWallpaperCommand() argument
/frameworks/av/include/media/
DJetPlayer.h56 int setMuteFlags(EAS_U32 muteFlags, bool sync);
57 int setMuteFlag(int trackNum, bool muteFlag, bool sync);
/frameworks/base/services/java/com/android/server/
DRandomBlock.java65 void toFile(String filename, boolean sync) throws IOException { in toFile() argument
69 out = new RandomAccessFile(filename, sync ? "rws" : "rw"); in toFile()
/frameworks/base/core/java/android/os/
DFileUtils.java68 public static boolean sync(FileOutputStream stream) { in sync() method in FileUtils
71 stream.getFD().sync(); in sync()
115 out.getFD().sync(); in copyToFile()
/frameworks/base/core/java/android/service/wallpaper/
DWallpaperService.java113 boolean sync; field in WallpaperService.WallpaperCommand
282 boolean sync) {
289 if (sync) {
302 int z, Bundle extras, boolean sync) {
311 cmd.sync = sync;
834 boolean sync; in doOffsetsChanged()
840 sync = mPendingSync; in doOffsetsChanged()
859 if (sync) { in doOffsetsChanged()
872 cmd.extras, cmd.sync); in doCommand()
876 if (cmd.sync) { in doCommand()
/frameworks/rs/
Drs.spec75 sync
81 sync
94 sync
131 sync
143 sync
Dspec.h26 int sync; member
/frameworks/av/media/libmedia/
DJetPlayer.cpp434 int JetPlayer::setMuteFlags(EAS_U32 muteFlags, bool sync) in setMuteFlags() argument
437 return JET_SetMuteFlags(mEasData, muteFlags, sync); in setMuteFlags()
441 int JetPlayer::setMuteFlag(int trackNum, bool muteFlag, bool sync) in setMuteFlag() argument
444 return JET_SetMuteFlag(mEasData, trackNum, muteFlag, sync); in setMuteFlag()
/frameworks/base/docs/html/guide/topics/providers/
Dcalendar-provider.jd46 <li><a href="#sync-adapter">Sync Adapters</a></li>
64 <p>The Calender Provider API can be used by applications and sync adapters. The
67 a discussion of how sync adapters are different, see
68 <a href="#sync-adapter">Sync Adapters</a>.</p>
86 and sync adapters can get read/write access to the database tables that hold a
119 a single calendar, such as the name, color, sync information, and so on.</td>
158 which is set by the sync adapter that
172 …>. However, if you're not building a full-fledged calendar application or sync adapter, requesting…
180 <li><strong>Sync adapters.</strong> A sync adapter synchronizes the calendar data
184 there are columns that are reserved for the sync adapters to use.
[all …]
Dcontacts-provider.jd108 How to write a sync adapter for synchronizing data from your server to the
118 sample app is an example of using a sync adapter to transfer data between the Contacts
218 An account type that offers contacts data usually has an associated sync adapter that
229 This flag allows the Contacts Provider to maintain the row internally until sync
344 and can be used by any application or sync adapter that works with the Contacts Provider.
363 columns <code>SYNC1</code> through <code>SYNC4</code> that should only be used by sync
463 sync adapters are allowed to add contacts, and some columns in a contact row are read-only.
475 previously attached. If an application or sync adapter creates a new raw contact that
491 in response to an aggregation or sync. Even If this happens, the content URI
510 Provider from web services via <strong>sync adapters</strong>, which automate
[all …]
/frameworks/native/libs/gui/
DSurfaceTexture.cpp471 EGLSyncKHR sync = eglCreateSyncKHR(dpy, in syncForReleaseLocked() local
473 if (sync == EGL_NO_SYNC_KHR) { in syncForReleaseLocked()
479 int fenceFd = eglDupNativeFenceFDANDROID(dpy, sync); in syncForReleaseLocked()
480 eglDestroySyncKHR(dpy, sync); in syncForReleaseLocked()
784 EGLSyncKHR sync = eglCreateSyncKHR(dpy, in doGLFenceWaitLocked() local
786 if (sync == EGL_NO_SYNC_KHR) { in doGLFenceWaitLocked()
796 eglWaitSyncANDROID(dpy, sync, 0); in doGLFenceWaitLocked()
798 eglDestroySyncKHR(dpy, sync); in doGLFenceWaitLocked()
/frameworks/support/renderscript/v8/rs_support/
Dspec.h26 int sync; member
/frameworks/base/docs/html/training/
Dbuilding-connectivity.jd10 sync your app's data, and more.</p>

12345