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

1 2 3 4 5

  /external/selinux/libselinux/utils/
togglesebool.c 11 /* Attempt to rollback the transaction. No need to check error
13 static __attribute__ ((__noreturn__)) void rollback(int argc, char **argv) function
50 rollback(i, argv);
60 rollback(i, argv);
70 rollback(i, argv);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_split_tmp.h 63 const unsigned rollback = first - incr; local
69 * seg_start = N * (seg_max - rollback) = N' * incr,
103 seg_start += seg_max - rollback;
125 seg_start += seg_max - rollback;
148 seg_start += seg_max - rollback;
  /external/python/cpython2/Lib/sqlite3/test/
py25tests.py 31 def rollback(self): member in class:MyConnection
34 sqlite.Connection.rollback(self)
55 self.con.rollback()
60 """Is a rollback called in the context manager?"""
  /prebuilts/gdb/darwin-x86/lib/python2.7/sqlite3/test/
py25tests.py 31 def rollback(self): member in class:MyConnection
34 sqlite.Connection.rollback(self)
55 self.con.rollback()
60 """Is a rollback called in the context manager?"""
  /prebuilts/gdb/linux-x86/lib/python2.7/sqlite3/test/
py25tests.py 31 def rollback(self): member in class:MyConnection
34 sqlite.Connection.rollback(self)
55 self.con.rollback()
60 """Is a rollback called in the context manager?"""
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
py25tests.py 31 def rollback(self): member in class:MyConnection
34 sqlite.Connection.rollback(self)
55 self.con.rollback()
60 """Is a rollback called in the context manager?"""
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
py25tests.py 31 def rollback(self): member in class:MyConnection
34 sqlite.Connection.rollback(self)
55 self.con.rollback()
60 """Is a rollback called in the context manager?"""
  /frameworks/base/core/java/com/android/internal/util/
JournaledFile.java 69 * Call {@link #commit} to commit the changes, or {@link #rollback} to forget the changes.
109 public void rollback() { method in class:JournaledFile
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/
FileHook.py 101 def rollback(self): member in class:RecoverMgr
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
TokenRewriteStream.as 101 /** Rollback the instruction stream for a program so that
105 public function rollback(instructionIndex:int, programName:String = DEFAULT_PROGRAM_NAME):void { function
114 rollback(MIN_TOKEN_INDEX, programName);
  /external/guice/extensions/persist/src/com/google/inject/persist/jpa/
JpaLocalTxnInterceptor.java 73 //commit transaction only if rollback didnt occur
124 * Returns True if rollback DID NOT HAPPEN (i.e. if commit should continue).
127 * @param e The exception to test for rollback
134 //check rollback clauses
137 //if one matched, try to perform a rollback
141 //check ignore clauses (supercedes rollback clause)
143 //An exception to the rollback clause was found, DON'T rollback
151 //rollback only if nothing matched the ignore check
153 txn.rollback();
    [all...]
  /external/tensorflow/tensorflow/core/lib/db/
sqlite.cc 129 sqlite3_stmt* rollback = PrepareRawOrDie(sqlite, "ROLLBACK"); local
130 *db = new Sqlite(sqlite, begin, commit, rollback);
249 // Rollback should only return an error if there's no transaction.
  /test/vti/dashboard/src/main/java/com/android/vts/api/
TestAcknowledgmentRestServlet.java 110 txn.rollback();
115 logger.log(Level.WARNING, "Transaction rollback forced acknowledgment post.");
116 txn.rollback();
UserFavoriteRestServlet.java 105 "Transaction rollback forced for favorite creation: " + test);
106 txn.rollback();
148 "Transaction rollback forced for favorite update: " + favoriteKey);
149 txn.rollback();
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Connection1.java 155 public void rollback() throws SQLException { method in class:TestHelper_Connection1
158 public void rollback(Savepoint savepoint) throws SQLException { method in class:TestHelper_Connection1
  /external/autotest/server/cros/servo/
chrome_cr50.py 178 def rollback(self, eraseflashinfo=True, chip_bid=None, chip_flags=None): member in class:ChromeCr50
179 """Set the reset counter high enough to force a rollback then reboot
184 eraseflashinfo: True if eraseflashinfo should be run before rollback
186 board id should be erased during rollback
188 None if the board id should be erased during rollback
190 if (not self.has_command('rollback') or not
192 raise error.TestError("need image with 'rollback' and "
207 self.send_command('rollback')
216 raise error.TestError("Failed to rollback to inactive image")
  /external/autotest/tko/
db.py 207 def rollback(self): member in class:db_sql
208 """Rollback the sql transaction."""
209 self.con.rollback()
  /external/guice/extensions/persist/lib/
jta.jar 
  /external/selinux/libselinux/src/
booleans.c 492 static void rollback(SELboolean * boollist, int end) function
509 rollback(boollist, i);
  /libcore/ojluni/src/main/java/java/sql/
Connection.java 194 * the method <code>commit</code> or the method <code>rollback</code>.
239 * commit/rollback permanent and releases any database locks
264 void rollback() throws SQLException; method in interface:Connection
760 void rollback(Savepoint savepoint) throws SQLException; method in interface:Connection
    [all...]
  /test/vti/dashboard/src/main/java/com/android/vts/job/
VtsCoverageAlertJobServlet.java 337 txn.rollback();
350 txn.rollback();
VtsProfilingStatsJobServlet.java 205 tx.rollback();
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
TokenRewriteStream.java 187 public void rollback(int instructionIndex) { method in class:TokenRewriteStream
188 rollback(DEFAULT_PROGRAM_NAME, instructionIndex); method
191 /** Rollback the instruction stream for a program so that
195 public void rollback(String programName, int instructionIndex) { method in class:TokenRewriteStream
208 rollback(programName, MIN_TOKEN_INDEX); method
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
streams.py 1094 def rollback(self, *args): member in class:TokenRewriteStream
1096 Rollback the instruction stream for a program so that
1119 self.rollback(programName, self.MIN_TOKEN_INDEX)
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCConnection.java 215 rollback(); method
306 public void rollback() throws SQLException { method in class:JDBCConnection
314 db.exec("ROLLBACK", null);
324 db.exec("ROLLBACK", null);
413 public void rollback(Savepoint x) throws SQLException { method in class:JDBCConnection

Completed in 1319 milliseconds

1 2 3 4 5