HomeSort by relevance Sort by last modified time
    Searched refs:Commit (Results 26 - 50 of 70) sorted by null

12 3

  /external/v8/src/
platform-nullos.cc 290 bool VirtualMemory::Commit(void* address, size_t size, bool executable) {
platform.h 347 bool Commit(void* address, size_t size, bool is_executable);
platform-openbsd.cc 342 bool VirtualMemory::Commit(void* address, size_t size, bool executable) {
platform-cygwin.cc 327 // This causes VirtualMemory::Commit to not always commit the memory region
348 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
platform-freebsd.cc 374 bool VirtualMemory::Commit(void* address, size_t size, bool executable) {
platform-macos.cc 375 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
platform-solaris.cc 357 bool VirtualMemory::Commit(void* address, size_t size, bool executable) {
spaces.h 418 // Reserves a range of virtual memory, but does not commit any of it.
536 // Commit a contiguous block of memory from the initial chunk. Assumes that
    [all...]
spaces.cc 238 // Commit the requested memory at the start of the current allocation block.
246 if (!code_range_->Commit(current.start, *allocated, true)) {
534 if (!initial_chunk_->Commit(start, size, owner->executable() == EXECUTABLE)) {
560 if (!initial_chunk_->Commit(start, size, executable)) return false;
    [all...]
platform-linux.cc 572 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
platform-win32.cc     [all...]
  /external/chromium/chrome/browser/history/
history_backend.h 332 friend class CommitLaterTask; // The commit task needs to call Commit().
416 // ScheduleCommit). This function does the commit to write any new changes to
420 void Commit();
422 // Schedules a commit to happen in the future. We do this so that many
424 // already a commit scheduled for the future, this will do nothing.
427 // Cancels the scheduled commit, if any. If there is no scheduled commit,
543 // A commit has been scheduled to occur sometime in the future. We can check
544 // non-null-ness to see if there is a commit scheduled in the future, and w
    [all...]
history_backend.cc 72 // The number of milliseconds we'll wait to do a commit, so that things are
141 history_backend_->Commit();
220 // Commit the long-running transaction.
261 // Any scheduled commit will have a reference to us, we must make it
    [all...]
in_memory_url_index_unittest.cc 75 transaction.Commit();
98 transaction.Commit();
thumbnail_database.cc 119 if (!transaction.Commit()) {
  /external/chromium/chrome/browser/password_manager/
login_database.cc 90 if (!transaction.Commit()) {
  /external/chromium/chrome/browser/webdata/
web_data_service.h 541 // Commit any pending transaction and deletes the database.
544 // Commit the current transaction and creates a new one.
545 void Commit();
550 // Schedule a commit if one is not already pending.
646 // Whether we should commit the database.
web_data_service.cc 624 void WebDataService::Commit() {
645 ScheduleTask(NewRunnableMethod(this, &WebDataService::Commit));
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
directory_backing_store.cc 431 return (SQLITE_OK == transaction.Commit());
525 // COMMIT TRANSACTION rolls back on failure.
526 if (SQLITE_OK == transaction.Commit())
690 transaction.Commit();
    [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp 222 TPA.Commit();
231 TPA.Commit();
247 // Commit to parsing the template-id.
248 TPA.Commit();
674 PA.Commit();
    [all...]
ParseTemplate.cpp     [all...]
ParseStmt.cpp     [all...]
  /external/chromium/chrome/browser/
jumplist_win.cc 222 // 5. Commit the transaction.
237 result = property_store->Commit();
449 // This update request is applied into the JumpList when we commit this
470 // Commit this transaction and send the updated JumpList to Windows.
  /external/chromium/third_party/libjingle/source/talk/base/
httpclient.cc 458 lock.Commit();
  /external/clang/include/clang/Parse/
Parser.h 558 /// after the token consumption is done, Commit() or Revert() is called to
559 /// either "commit the consumed tokens" or revert to the previously marked
578 void Commit() {
590 assert(!isActive && "Forgot to call Commit or Revert!");
    [all...]

Completed in 477 milliseconds

12 3