HomeSort by relevance Sort by last modified time
    Searched full:transaction (Results 251 - 275 of 1579) sorted by null

<<11121314151617181920>>

  /packages/apps/Mms/src/com/android/mms/transaction/
RetrieveTransaction.java 18 package com.android.mms.transaction;
60 public class RetrieveTransaction extends Transaction implements Runnable {
94 // Attach the transaction to the instance of RetryScheduler.
122 * @see com.android.mms.transaction.Transaction#process()
146 // Mark this transaction as failed to prevent duplicate
166 // Since it's not critical, it won't fail the transaction.
185 // Don't mark the transaction as failed if we failed to send it.
270 // If the Transaction-ID isn't set in the M-Retrieve.conf, it means
  /external/chromium_org/chrome/browser/history/
archived_database.cc 10 #include "sql/transaction.h"
54 sql::Transaction transaction(&db_);
55 if (!transaction.Begin())
74 return transaction.Commit();
top_sites_database.cc 17 #include "sql/transaction.h"
395 // Scope initialization in a transaction so we can't be partially
397 sql::Transaction transaction(db_.get());
398 // TODO(shess): Failure to open transaction is bad, address it.
399 if (!transaction.Begin())
420 if (!transaction.Commit())
484 sql::Transaction transaction(db_.get());
485 transaction.Begin()
    [all...]
  /external/chromium_org/chrome/utility/local_discovery/
service_discovery_client_impl.h 73 scoped_ptr<net::MDnsTransaction>* transaction,
104 scoped_ptr<net::MDnsTransaction>* transaction);
145 // Respond to transaction finishing for SRV records.
149 // Respond to transaction finishing for TXT records.
153 // Respond to transaction finishing for A records.
  /external/chromium_org/components/webdata/common/
web_database.cc 11 #include "sql/transaction.h"
91 sql::Transaction transaction(&db_);
92 if (!transaction.Begin())
120 return transaction.Commit() ? sql::INIT_OK : sql::INIT_FAILURE;
  /external/chromium_org/net/dns/
dns_test_util.cc 76 // Using WeakPtr to cleanly cancel when transaction is destroyed.
176 MockTransaction* transaction = variable
178 if (transaction->delayed())
179 delayed_transactions_.push_back(transaction->AsWeakPtr());
180 return scoped_ptr<DnsTransaction>(transaction);
  /external/chromium_org/third_party/sqlite/src/test/
walcrash2.test 23 # existed at one point: If a process crashes mid-transaction, it may have
25 # If the transaction were to be explicitly rolled back at this point, the
27 # if the process crashes, the transaction is implicitly rolled back and
41 # walcrash2-1.1: Create a database. Commit a transaction that adds 8 frames
45 # walcrash2-1.2: Have an external process open a transaction, add 8 entries
lock.test 64 execsql {BEGIN TRANSACTION}
159 # If one thread has a transaction another thread cannot start
160 # a transaction. -> Not true in version 3.0. But if one thread
164 execsql {BEGIN TRANSACTION}
166 execsql {BEGIN TRANSACTION} db2
178 # If the other thread (the one that does not hold the transaction with
259 execsql {BEGIN TRANSACTION}
260 set r [catch {execsql {BEGIN TRANSACTION}} msg]
263 } {1 {cannot start a transaction within a transaction}}
    [all...]
lock4.test 76 # Begin a transaction on test.db.
85 # Wait until the second process has started its transaction on test2.db.
103 # The other process has committed its transaction on test2.db by
  /external/e2fsprogs/e2fsck/
revoke.c 20 * transaction's revoked blocks to the journal
22 * + Recovery: during recovery we record the transaction ID of all
29 * single transaction:
33 * cancel the revoke before the transaction commits.
40 * in the current transaction, so any revoke for that block in the
41 * transaction must have happened after the block was journaled and so
78 journal replay, this involves recording the transaction ID of the
79 last transaction to revoke this block. */
263 * crash after this current transaction commits. Any subsequent
264 * metadata writes of the buffer in this transaction cancel th
    [all...]