Searched refs:commit (Results 1 - 25 of 84) sorted by relevance

1234

/frameworks/base/core/jni/
H A Dandroid_nio_utils.h51 * @param commit JNI_FALSE if the pointer was just read, and JNI_TRUE if
55 jboolean commit);
59 AutoBufferPointer(JNIEnv* env, jobject nioBuffer, jboolean commit);
H A Dandroid_nio_utils.cpp56 jboolean commit) {
58 commit ? 0 : JNI_ABORT);
64 jboolean commit) {
66 fCommit = commit;
55 nio_releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) argument
63 AutoBufferPointer(JNIEnv* env, jobject nioBuffer, jboolean commit) argument
H A Dandroid_opengl_GLES10Ext.cpp186 static void Release(JNIEnv* _env, jbyteArray array, jbyte* data, jboolean commit) { argument
187 _env->ReleaseByteArrayElements(array, data, commit ? 0 : JNI_ABORT);
192 static void Release(JNIEnv* _env, jbooleanArray array, jboolean* data, jboolean commit) { argument
193 _env->ReleaseBooleanArrayElements(array, data, commit ? 0 : JNI_ABORT);
198 static void Release(JNIEnv* _env, jcharArray array, jchar* data, jboolean commit) { argument
199 _env->ReleaseCharArrayElements(array, data, commit ? 0 : JNI_ABORT);
204 static void Release(JNIEnv* _env, jshortArray array, jshort* data, jboolean commit) { argument
205 _env->ReleaseShortArrayElements(array, data, commit ? 0 : JNI_ABORT);
210 static void Release(JNIEnv* _env, jintArray array, jint* data, jboolean commit) { argument
211 _env->ReleaseIntArrayElements(array, data, commit
216 Release(JNIEnv* _env, jlongArray array, jlong* data, jboolean commit) argument
222 Release(JNIEnv* _env, jfloatArray array, jfloat* data, jboolean commit) argument
228 Release(JNIEnv* _env, jdoubleArray array, jdouble* data, jboolean commit) argument
235 releaseArrayPointer(JNIEnv *_env, JTYPEARRAY array, NTYPEARRAY data, jboolean commit) argument
240 releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DTunerActivity.java27 .commit();
/frameworks/support/v4/gingerbread/android/support/v4/content/
H A DEditorCompatGingerbread.java30 editor.commit();
/frameworks/base/core/java/android/content/pm/
H A DIPackageInstallerSession.aidl33 void commit(in IntentSender statusReceiver);
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A Dcommon.cpp160 static void Release(JNIEnv* _env, jbyteArray array, jbyte* data, jboolean commit) { argument
161 _env->ReleaseByteArrayElements(array, data, commit ? 0 : JNI_ABORT);
166 static void Release(JNIEnv* _env, jbooleanArray array, jboolean* data, jboolean commit) { argument
167 _env->ReleaseBooleanArrayElements(array, data, commit ? 0 : JNI_ABORT);
172 static void Release(JNIEnv* _env, jcharArray array, jchar* data, jboolean commit) { argument
173 _env->ReleaseCharArrayElements(array, data, commit ? 0 : JNI_ABORT);
178 static void Release(JNIEnv* _env, jshortArray array, jshort* data, jboolean commit) { argument
179 _env->ReleaseShortArrayElements(array, data, commit ? 0 : JNI_ABORT);
184 static void Release(JNIEnv* _env, jintArray array, jint* data, jboolean commit) { argument
185 _env->ReleaseIntArrayElements(array, data, commit
190 Release(JNIEnv* _env, jlongArray array, jlong* data, jboolean commit) argument
196 Release(JNIEnv* _env, jfloatArray array, jfloat* data, jboolean commit) argument
202 Release(JNIEnv* _env, jdoubleArray array, jdouble* data, jboolean commit) argument
209 releaseArrayPointer(JNIEnv *_env, JTYPEARRAY array, NTYPEARRAY data, jboolean commit) argument
214 releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) argument
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DAudioPeakingFilter.cpp55 commit(true);
62 commit(true);
87 void AudioPeakingFilter::commit(bool immediate) { function in class:android::AudioPeakingFilter
H A DAudioShelvingFilter.cpp61 commit(true);
67 commit(true);
89 void AudioShelvingFilter::commit(bool immediate) { function in class:android::AudioShelvingFilter
H A DAudioShelvingFilter.h68 // Sets gain value. Actual change will only take place upon commit().
77 // commit().
90 void commit(bool immediate = false);
H A DAudioEqualizer.h105 // Sets gain value. Actual change will only take place upon commit().
118 // commit().
130 // Sets bandwidth value. Actual change will only take place upon commit().
167 // Change will not be applied until commit() is called.
177 void commit(bool immediate = false);
H A DAudioPeakingFilter.h62 // Sets gain value. Actual change will only take place upon commit().
70 // Sets bandwidth value. Actual change will only take place upon commit().
78 // Sets frequency value. Actual change will only take place upon commit().
96 void commit(bool immediate = false);
H A DAudioEqualizer.cpp101 commit(true);
216 void AudioEqualizer::commit(bool immediate) { function in class:android::AudioEqualizer
217 ALOGV("AudioEqualizer::commit(immediate=%d)", immediate);
218 mpLowShelf->commit(immediate);
220 mpPeakingFilters[i].commit(immediate);
222 mpHighShelf->commit(immediate);
/frameworks/base/core/java/android/content/
H A DUndoOperation.java93 public abstract void commit(); method in class:UndoOperation
H A DSharedPreferences.java67 * back to the original {@link SharedPreferences} until you call {@link #commit}
73 * {@link #commit} or {@link #apply} are called.
85 * back once {@link #commit} or {@link #apply} is called.
98 * {@link #commit} or {@link #apply} are called.
110 * {@link #commit} or {@link #apply} are called.
122 * {@link #commit} or {@link #apply} are called.
134 * once {@link #commit} or {@link #apply} are called.
146 * will be done in the actual preferences once {@link #commit} is
162 * preferences. Once commit is called, the only remaining preferences
181 * time, the last one to call commit win
190 boolean commit(); method in interface:SharedPreferences.Editor
[all...]
/frameworks/ex/common/java/com/android/common/
H A DSharedPreferencesCompat.java26 * falling back to commit when apply isn't available.
50 editor.commit();
/frameworks/base/core/java/com/android/internal/util/
H A DJournaledFile.java69 * Call {@link #commit} to commit the changes, or {@link #rollback} to forget the changes.
98 public void commit() { method in class:JournaledFile
100 throw new IllegalStateException("no file to commit");
/frameworks/base/tests/MusicBrowserDemo/src/com/example/android/musicbrowserdemo/
H A DMainActivity.java44 fm.beginTransaction().add(android.R.id.content, new AppListFragment()).commit();
/frameworks/support/v4/java/android/support/v4/content/
H A DSharedPreferencesCompat.java37 editor.commit();
/frameworks/base/core/java/android/app/
H A DFragmentTransaction.java246 * Schedules a commit of this transaction. The commit does
251 * prior to its containing activity saving its state. If the commit is
253 * because the state after the commit can be lost if the activity needs to
255 * situations where it may be okay to lose the commit.</p>
261 public abstract int commit(); method in class:FragmentTransaction
264 * Like {@link #commit} but allows the commit to be executed after an
265 * activity's state is saved. This is dangerous because the commit can
H A DDialogFragment.java230 ft.commit();
249 * {@link FragmentTransaction#commit() FragmentTransaction.commit()}.
256 mBackStackId = transaction.commit();
301 ft.commit();
/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/
H A DMainActivity.java46 .commit();
/frameworks/support/v17/preference-leanback/src/android/support/v17/preference/
H A DLeanbackSettingsFragment.java113 transaction.commit();
135 .commit();
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeSharedPreferences.java118 public boolean commit() {
/frameworks/support/v4/java/android/support/v4/app/
H A DDialogFragment.java139 ft.commit();
149 * {@link FragmentTransaction#commit() FragmentTransaction.commit()}.
156 mBackStackId = transaction.commit();
201 ft.commit();

Completed in 643 milliseconds

1234