/frameworks/native/opengl/include/EGL/ |
D | eglext.h | 141 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/ |
D | EGL_ANDROID_native_fence_sync.txt | 39 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/ |
D | JetPlayer.java | 330 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/ |
D | BaseIWindow.java | 76 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/ |
D | AtomicFile.java | 123 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/ |
D | eglApi.cpp | 788 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/ |
D | runtests.sh | 100 function sync() function 103 $adb sync data | tee -a $log 112 sync
|
/frameworks/native/opengl/libs/GLES_trace/ |
D | dev.make | 9 sync: 13 adb sync
|
/frameworks/base/docs/html/training/cloudsync/ |
D | index.jd | 11 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/ |
D | AtomicFile.java | 129 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/ |
D | AtomicFile.java | 91 FileUtils.sync(str); in finishWrite() 103 FileUtils.sync(str); in failWrite() 125 FileUtils.sync(fos); in truncate()
|
/frameworks/base/core/java/android/view/ |
D | IWindow.aidl | 66 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/ |
D | BridgeWindow.java | 72 boolean sync) { in dispatchWallpaperOffsets() argument 78 int z, Bundle extras, boolean sync) { in dispatchWallpaperCommand() argument
|
/frameworks/av/include/media/ |
D | JetPlayer.h | 56 int setMuteFlags(EAS_U32 muteFlags, bool sync); 57 int setMuteFlag(int trackNum, bool muteFlag, bool sync);
|
/frameworks/base/services/java/com/android/server/ |
D | RandomBlock.java | 65 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/ |
D | FileUtils.java | 68 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/ |
D | WallpaperService.java | 113 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/ |
D | rs.spec | 75 sync 81 sync 94 sync 131 sync 143 sync
|
D | spec.h | 26 int sync; member
|
/frameworks/av/media/libmedia/ |
D | JetPlayer.cpp | 434 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/ |
D | calendar-provider.jd | 46 <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 …]
|
D | contacts-provider.jd | 108 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/ |
D | SurfaceTexture.cpp | 471 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/ |
D | spec.h | 26 int sync; member
|
/frameworks/base/docs/html/training/ |
D | building-connectivity.jd | 10 sync your app's data, and more.</p>
|