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

1 2 3

  /external/chromium/app/sql/
transaction.h 19 // constructor will roll back the transaction. If you want to commit, you
20 // need to manually call Commit before this goes out of scope.
40 // false if sqlite could not commit it, or if another transaction in the
43 bool Commit();
transaction.cc 41 bool Transaction::Commit() {
43 NOTREACHED() << "Attempting to commit a nonexistent transaction. "
transaction_unittest.cc 43 TEST_F(SQLTransactionTest, Commit) {
52 t.Commit();
104 inner1.Commit();
  /external/v8/test/cctest/
test-platform-win32.cc 21 CHECK(vm->Commit(block_addr, block_size, false));
test-platform-linux.cc 75 CHECK(vm->Commit(block_addr, block_size, false));
test-platform-nullos.cc 74 CHECK(vm->Commit(block_addr, block_size, false));
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
roll.py 42 steps.Commit,
download.py 101 steps.Commit,
104 long_help = """land commits the current working copy diff (just as svn or git commit would).
125 steps.Commit,
265 steps.Commit,
390 help_text = "Revert the given revision(s) in the working copy and optionally commit the revert and re-open the original bug"
405 steps.Commit,
  /external/chromium/chrome/browser/net/
sqlite_persistent_cookie_store.cc 95 // Commit pending operations as soon as possible.
98 // Commit any pending operations and close the database. This must be called
145 // Commit our pending operations to the database.
147 void Commit(Task* completion_task);
149 void Commit();
167 // Number of cookies that have actually been saved. Updated during Commit().
328 transaction.Commit();
362 transaction.Commit();
393 // Commit every 30 seconds.
395 // Commit right away if we have more than 512 outstanding operations
    [all...]
  /external/webkit/Source/WebCore/platform/haiku/
PasteboardHaiku.cpp 108 be_clipboard->Commit();
124 be_clipboard->Commit();
208 be_clipboard->Commit();
223 be_clipboard->Commit();
ClipboardHaiku.cpp 62 be_clipboard->Commit();
73 be_clipboard->Commit();
110 be_clipboard->Commit();
  /external/chromium/chrome/browser/history/
archived_database.cc 72 return transaction.Commit();
top_sites_database.cc 157 transaction.Commit();
225 transaction.Commit();
362 return transaction.Commit();
history_database.cc 129 return committer.Commit() ? sql::INIT_OK : sql::INIT_FAILURE;
text_database.cc 244 return committer.Commit();
  /external/webkit/Source/WebKit/win/
MemoryStream.h 77 virtual HRESULT STDMETHODCALLTYPE Commit(
MemoryStream.cpp 210 HRESULT STDMETHODCALLTYPE MemoryStream::Commit(
  /external/chromium/third_party/libjingle/source/talk/base/
diskcache.h 130 void Commit() { rollback_ = false; }
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
commit.py 38 class Commit(AbstractStep):
41 return ('There are %s local commits%s. Everything will be committed as a single commit. '
42 'To avoid this prompt, set "git config webkit-patch.commit-should-always-squash true".' % (
48 raise Exception("Attempted to commit with a commit message shorter than 50 characters. Either your patch is missing a ChangeLog or webkit-patch may have a bug.")
71 # This will correctly interrupt the rest of the commit process.
72 raise ScriptError(message="Did not commit")
76 raise ScriptError("You need to specify the username on %s to perform the commit as." % e.server_host)
80 raise ScriptError("You need to specify the password for %s on %s to perform the commit." % (username, e.server_host))
__init__.py 40 from webkitpy.tool.steps.commit import Commit
  /external/chromium/chrome/browser/sync/util/
user_settings.cc 250 transaction.Commit();
328 transaction.Commit();
387 transaction.Commit();
  /external/chromium/base/win/
win_util.cc 119 result = property_store->Commit();
  /external/chromium/chrome/browser/webdata/
web_database.cc 135 // If the migration fails we return an error to caller and do not commit
141 return transaction.Commit() ? sql::INIT_OK : sql::INIT_FAILURE;
  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocatorSymbian.cpp 96 // Commit what was previously reserved via reserveUncommitted()
97 void OSAllocator::commit(void* address, size_t bytes, bool, bool executable) function in class:WTF::OSAllocator
99 // For code chunks, we commit (early) in reserveUncommitted(), so NOOP
102 dataAllocatorInstance()->commit(address, bytes);
116 commit(base, bytes, writable, executable);
121 // The PageAllocatorSymbian class helps map OSAllocator calls for reserve/commit/decommit
130 // - OSAllocator::commit() actually calls RChunk.commit() and commits *all or part* of the region
177 // Actually commit memory from the OS, after a previous call to reserve()
178 bool PageAllocatorSymbian::commit(void* address, size_t bytes) function in class:WTF::PageAllocatorSymbian
    [all...]
  /external/chromium/chrome/common/
sqlite_utils.h 53 // goes out of scope if the caller has not already called Commit or Rollback.
81 int Commit() {
82 return EndCommand("COMMIT");

Completed in 437 milliseconds

1 2 3