HomeSort by relevance Sort by last modified time
    Searched defs:commit (Results 1 - 25 of 227) sorted by null

1 2 3 4 5 6 7 8 910

  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocatorWin.cpp 57 void OSAllocator::commit(void* address, size_t bytes, bool writable, bool executable) function in class:WTF::OSAllocator
OSAllocatorPosix.cpp 40 // To support the "reserve then commit" model, we have to initially decommit.
89 void OSAllocator::commit(void* address, size_t bytes, bool, bool) function in class:WTF::OSAllocator
94 // Non-MADV_FREE_REUSE reservations automatically commit on demand.
PageReservation.h 43 Before using memory it must be committed by calling commit, which is passed start
46 memory to its devommitted state. Commit should only be called on memory that is
77 void commit(void* start, size_t size) function in class:WTF::PageReservation
85 OSAllocator::commit(start, size, m_writable, m_executable);
  /external/webkit/Source/WebCore/platform/sql/
SQLiteTransaction.cpp 67 void SQLiteTransaction::commit() function in class:WebCore::SQLiteTransaction
71 m_inProgress = !m_db.executeCommand("COMMIT");
101 // the auto-commit flag should be off in the middle of a transaction
  /frameworks/ex/common/java/com/android/common/
SharedPreferencesCompat.java 26 * falling back to commit when apply isn't available.
50 editor.commit();
  /cts/tests/tests/preference2/src/android/preference2/cts/
PreferenceFragmentActivity.java 38 transaction.commit();
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/ui/
ImageGridActivity.java 36 ft.commit();
  /external/webkit/Source/WebCore/storage/
IDBTransactionBackendImpl.cpp 160 void IDBTransactionBackendImpl::commit() function in class:WebCore::IDBTransactionBackendImpl
163 // commit steps below. We therefore take a self reference to keep ourselves
169 m_transaction->commit();
201 // queue is empty. Commit the transaction.
202 commit();
SQLTransactionSync.cpp 168 ExceptionCode SQLTransactionSync::commit() function in class:WebCore::SQLTransactionSync
177 m_sqliteTransaction->commit();
180 // If the commit failed, the transaction will still be marked as "in progress"
190 // The commit was successful. If the transaction modified this database, notify the delegates.
  /frameworks/av/media/libeffects/testlibs/
AudioPeakingFilter.cpp 55 commit(true);
62 commit(true);
87 void AudioPeakingFilter::commit(bool immediate) { function in class:android::AudioPeakingFilter
AudioShelvingFilter.cpp 61 commit(true);
67 commit(true);
89 void AudioShelvingFilter::commit(bool immediate) { function in class:android::AudioShelvingFilter
  /packages/apps/Music/src/com/android/music/
SharedPreferencesCompat.java 26 * falling back to commit when apply isn't available.
52 editor.commit();
  /development/samples/training/basic/FragmentBasics/src/com/example/fragments/
MainActivity.java 51 .add(R.id.fragment_container, firstFragment).commit();
83 // Commit the transaction
84 transaction.commit();
  /external/replicaisland/src/com/replica/replicaisland/
SetPreferencesActivity.java 74 editor.commit();
  /frameworks/base/core/java/com/android/internal/util/
JournaledFile.java 60 * Call {@link #commit} to commit the changes, or {@link #rollback} to forget the changes.
87 * Commit changes.
89 public void commit() { method in class:JournaledFile
91 throw new IllegalStateException("no file to commit");
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectVisibleCalendarsActivity.java 49 ft.commit();
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
UsageBarPreference.java 65 public void commit() { method in class:UsageBarPreference
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentArguments.java 47 ft.commit();
FragmentDialogOrActivity.java 45 ft.commit();
FragmentMenu.java 67 ft.commit();
93 ft.commit();
FragmentStack.java 52 ft.add(R.id.simple_fragment, newFragment).commit();
77 ft.commit();
FragmentTabs.java 94 ft.commit();
PersistentState.java 124 editor.commit();
  /development/samples/ApiDemos/src/com/example/android/apis/appwidget/
ExampleAppWidgetConfigure.java 110 prefs.commit();
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentDialogOrActivitySupport.java 44 ft.commit();

Completed in 383 milliseconds

1 2 3 4 5 6 7 8 910