Searched refs:sync (Results 1 - 25 of 124) sorted by relevance

12345

/frameworks/base/media/jni/
H A Dandroid_media_MediaSync.cpp124 static sp<JMediaSync> setMediaSync(JNIEnv *env, jobject thiz, const sp<JMediaSync> &sync) { argument
126 if (sync != NULL) {
127 sync->incStrong(thiz);
133 env->SetLongField(thiz, gFields.context, (jlong)sync.get());
174 sp<JMediaSync> sync = getMediaSync(env, thiz); local
175 if (sync == NULL) {
191 status_t err = sync->setSurface(bufferProducer);
207 sp<JMediaSync> sync = getMediaSync(env, thiz); local
208 if (sync == NULL) {
222 status_t err = sync
238 sp<JMediaSync> sync = getMediaSync(env, thiz); local
259 sp<JMediaSync> sync = getMediaSync(env, thiz); local
274 sp<JMediaSync> sync = getMediaSync(env, thiz); local
302 sp<JMediaSync> sync = getMediaSync(env, thiz); local
317 sp<JMediaSync> sync = getMediaSync(env, thiz); local
368 sp<JMediaSync> sync = getMediaSync(env, thiz); local
390 sp<JMediaSync> sync = getMediaSync(env, thiz); local
441 sp<JMediaSync> sync = getMediaSync(env, thiz); local
472 sp<JMediaSync> sync = getMediaSync(env, thiz); local
508 sp<JMediaSync> sync = new JMediaSync(); local
[all...]
H A Dandroid_media_SyncParams.cpp60 sync.mSource = (AVSyncSource)env->GetIntField(params, fields.sync_source);
61 sync.mAudioAdjustMode = (AVSyncAudioAdjustMode)env->GetIntField(params, fields.audio_adjust_mode);
62 sync.mTolerance = env->GetFloatField(params, fields.tolerance);
77 env->SetIntField(params, fields.sync_source, (jint)sync.mSource);
78 env->SetIntField(params, fields.audio_adjust_mode, (jint)sync.mAudioAdjustMode);
79 env->SetFloatField(params, fields.tolerance, (jfloat)sync.mTolerance);
H A Dandroid_media_SyncParams.h27 AVSyncSettings sync; member in struct:android::SyncParams
/frameworks/base/core/java/android/webkit/
H A DWebSyncManager.java41 * 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...]
H A DCookieSyncManager.java34 * 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...]
/frameworks/rs/
H A Dspec.h26 int sync; member in struct:__anon2078
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java78 public void dispatchWallpaperOffsets(float x, float y, float xStep, float yStep, boolean sync) { argument
79 if (sync) {
110 int z, Bundle extras, boolean sync) {
111 if (sync) {
109 dispatchWallpaperCommand(String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/support/compat/java/android/support/v4/util/
H A DAtomicFile.java33 * been completely written and sync'd to disk before removing its backup.
117 * returned by {@link #startWrite()}. This will close, sync, and
123 sync(str);
140 sync(str);
203 static boolean sync(FileOutputStream stream) { method in class:AtomicFile
206 stream.getFD().sync();
/frameworks/base/media/java/android/media/
H A DJetPlayer.java74 // to keep in sync with the JetPlayer class constants
81 // to keep in sync with external/sonivox/arm-wt-22k/lib_src/jet_data.h
93 // to keep in sync with values used in external/sonivox/arm-wt-22k/Android.mk
326 * @param sync if false, the new mute flags will be applied as soon as possible by the JET
332 public boolean setMuteFlags(int muteFlags, boolean sync) { argument
333 return native_setMuteFlags(muteFlags, sync);
342 * @param sync if false, the new mute flags will be applied as soon as possible by the JET
348 public boolean setMuteArray(boolean[] muteArray, boolean sync) { argument
351 return native_setMuteArray(muteArray, sync);
359 * @param sync i
365 setMuteFlag(int trackId, boolean muteFlag, boolean sync) argument
553 native_setMuteFlags(int muteFlags, boolean sync) argument
554 native_setMuteArray(boolean[]muteArray, boolean sync) argument
555 native_setMuteFlag(int trackId, boolean muteFlag, boolean sync) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DAtomicFile.java33 * been completely written and sync'd to disk before removing its backup.
91 FileUtils.sync(str);
103 FileUtils.sync(str);
125 FileUtils.sync(fos);
/frameworks/base/core/java/android/view/
H A DIWindow.aidl69 void dispatchWallpaperOffsets(float x, float y, float xStep, float yStep, boolean sync);
72 int z, in Bundle extras, boolean sync);
/frameworks/av/include/media/
H A DJetPlayer.h36 // to keep in sync with the JetPlayer class constants
57 int setMuteFlags(EAS_U32 muteFlags, bool sync);
58 int setMuteFlag(int trackNum, bool muteFlag, bool sync);
79 Mutex mMutex; // mutex to sync the render and playback thread with the JET calls
/frameworks/av/media/libmedia/include/media/
H A DJetPlayer.h36 // to keep in sync with the JetPlayer class constants
57 int setMuteFlags(EAS_U32 muteFlags, bool sync);
58 int setMuteFlag(int trackNum, bool muteFlag, bool sync);
79 Mutex mMutex; // mutex to sync the render and playback thread with the JET calls
/frameworks/base/core/java/android/app/
H A DIUiAutomationConnection.aidl38 boolean injectInputEvent(in InputEvent event, boolean sync);
/frameworks/base/services/core/java/com/android/server/
H A DRandomBlock.java65 void toFile(String filename, boolean sync) throws IOException { argument
69 out = new RandomAccessFile(filename, sync ? "rws" : "rw");
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DTestIWindow.java73 boolean sync)
80 boolean sync) throws RemoteException {
72 dispatchWallpaperOffsets(float x, float y, float xStep, float yStep, boolean sync) argument
79 dispatchWallpaperCommand(String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindow.java70 boolean sync) {
76 int z, Bundle extras, boolean sync) {
69 dispatchWallpaperOffsets(float x, float y, float xStep, float yStep, boolean sync) argument
75 dispatchWallpaperCommand(String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/native/libs/vr/libvrflinger/
H A Dacquired_buffer.cpp4 #include <sync/sync.h>
/frameworks/base/services/core/java/com/android/server/wm/
H A DWallpaperWindowToken.java63 String action, int x, int y, int z, Bundle extras, boolean sync) {
67 wallpaper.mClient.dispatchWallpaperCommand(action, x, y, z, extras, sync);
69 sync = false;
75 void updateWallpaperOffset(int dw, int dh, boolean sync) { argument
79 if (wallpaperController.updateWallpaperOffset(wallpaper, dw, dh, sync)) {
85 sync = false;
62 sendWindowWallpaperCommand( String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/
H A DXMLParser.java138 _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(thi
[all...]
/frameworks/native/opengl/include/EGL/
H A Deglext.h149 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync);
150 EGLAPI EGLint EGLAPIENTRY eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout);
151 EGLAPI EGLBoolean EGLAPIENTRY eglSignalSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode);
152 EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint *value);
155 typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync);
156 typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout);
157 typedef EGLBoolean (EGLAPIENTRYP PFNEGLSIGNALSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode);
158 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint *value);
228 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncNV (EGLSyncNV sync);
229 EGLAPI EGLBoolean EGLAPIENTRY eglFenceNV (EGLSyncNV sync);
[all...]
/frameworks/base/core/java/android/util/
H A DAtomicFile.java37 * been completely written and sync'd to disk before removing its backup.
125 * returned by {@link #startWrite()}. This will close, sync, and
131 FileUtils.sync(str);
148 FileUtils.sync(str);
165 FileUtils.sync(fos);
/frameworks/base/core/java/android/content/
H A DIContentService.aidl60 * Start a sync given a request.
62 void sync(in SyncRequest request);
67 /** Cancel a sync, providing information about the sync to be cancelled. */
82 * @param sync true if the provider should be synced when tickles are received for it
84 void setSyncAutomatically(in Account account, String providerName, boolean sync);
85 void setSyncAutomaticallyAsUser(in Account account, String providerName, boolean sync,
92 * @param cname component to identify sync service, must be null if account/providerName are
102 * @param pollFrequency the period that a sync should be performed, in seconds. If this is
112 * @param pollFrequency the period that a sync shoul
[all...]
/frameworks/av/include/media/stagefright/
H A DUtils.h90 void writeToAMessage(const sp<AMessage> &msg, const AVSyncSettings &sync, float videoFpsHint);
92 const sp<AMessage> &msg, AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
/frameworks/av/media/libstagefright/foundation/include/
H A DUtils.h90 void writeToAMessage(const sp<AMessage> &msg, const AVSyncSettings &sync, float videoFpsHint);
92 const sp<AMessage> &msg, AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);

Completed in 6118 milliseconds

12345