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

12345

/frameworks/native/opengl/libs/GLES_trace/
H A Ddev.make4 sync:
8 adb sync
/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}.
102 * sync() forces sync manager to sync no
106 public void sync() { method in class:CookieSyncManager
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java72 public void dispatchWallpaperOffsets(float x, float y, float xStep, float yStep, boolean sync) { argument
73 if (sync) {
93 int z, Bundle extras, boolean sync) {
94 if (sync) {
92 dispatchWallpaperCommand(String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/rs/
H A Dspec.h26 int sync; member in struct:__anon1634
/frameworks/base/core/java/android/view/
H A DIWindow.aidl66 void dispatchWallpaperOffsets(float x, float y, float xStep, float yStep, boolean sync);
69 int z, in Bundle extras, boolean 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/support/v4/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/core/java/android/app/
H A DIUiAutomationConnection.aidl38 boolean injectInputEvent(in InputEvent event, boolean sync);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindow.java67 boolean sync) {
73 int z, Bundle extras, boolean sync) {
66 dispatchWallpaperOffsets(float x, float y, float xStep, float yStep, boolean sync) argument
72 dispatchWallpaperCommand(String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/native/opengl/include/EGL/
H A Deglext.h142 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync);
143 EGLAPI EGLint EGLAPIENTRY eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout);
144 EGLAPI EGLBoolean EGLAPIENTRY eglSignalSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode);
145 EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint *value);
148 typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync);
149 typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout);
150 typedef EGLBoolean (EGLAPIENTRYP PFNEGLSIGNALSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode);
151 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint *value);
221 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncNV (EGLSyncNV sync);
222 EGLAPI EGLBoolean EGLAPIENTRY eglFenceNV (EGLSyncNV sync);
[all...]
/frameworks/base/core/java/android/util/
H A DAtomicFile.java35 * been completely written and sync'd to disk before removing its backup.
123 * returned by {@link #startWrite()}. This will close, sync, and
129 FileUtils.sync(str);
146 FileUtils.sync(str);
163 FileUtils.sync(fos);
/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/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
H A DIMediaPlayer.h65 virtual status_t setSyncSettings(const AVSyncSettings& sync, float videoFpsHint) = 0;
66 virtual status_t getSyncSettings(AVSyncSettings* sync /* nonnull */,
H A DMediaPlayerInterface.h192 virtual status_t setSyncSettings(const AVSyncSettings& sync, float /* videoFps */) { argument
193 // By default, players only support setting sync source to default; all other sync
195 if (sync.mSource != AVSYNC_SOURCE_DEFAULT) {
201 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) {
202 *sync = AVSyncSettings();
/frameworks/av/include/media/stagefright/
H A DUtils.h84 void writeToAMessage(sp<AMessage> msg, const AVSyncSettings &sync, float videoFpsHint);
86 const sp<AMessage> &msg, AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
/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/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/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/
H A DXMLParser.java93 _errHandler.sync(this);
102 _errHandler.sync(this);
107 _errHandler.sync(this);
116 _errHandler.sync(this);
170 _errHandler.sync(this);
179 _errHandler.sync(this);
264 _errHandler.sync(this);
313 _errHandler.sync(this);
377 _errHandler.sync(this);
386 _errHandler.sync(thi
[all...]
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiAutomatorBridge.java69 public boolean injectInputEvent(InputEvent event, boolean sync) { argument
70 return mUiAutomation.injectInputEvent(event, sync);
/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp212 status_t setSyncSettings(const AVSyncSettings& sync, float videoFpsHint) argument
216 data.writeInt32((int32_t)sync.mSource);
217 data.writeInt32((int32_t)sync.mAudioAdjustMode);
218 data.writeFloat(sync.mTolerance);
224 status_t getSyncSettings(AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */)
235 *sync = settings;
535 AVSyncSettings sync; local
536 sync.mSource = (AVSyncSource)data.readInt32();
537 sync.mAudioAdjustMode = (AVSyncAudioAdjustMode)data.readInt32();
538 sync
545 AVSyncSettings sync; local
[all...]

Completed in 559 milliseconds

12345