/external/chromium/net/proxy/ |
proxy_list.cc | 125 // be given this information by the network transaction. 127 // The advantage of this approach is when the network transaction 131 // And also, before failing the transaction wholesale, we could go back and
|
/external/chromium_org/chrome/browser/extensions/activity_log/ |
activity_database.cc | 20 #include "sql/transaction.h" 73 // Wrap the initialization in a transaction so that the db doesn't 75 sql::Transaction committer(&db_);
|
/external/chromium_org/chrome/browser/sync/glue/ |
bookmark_model_associator.h | 143 // their transaction versions. 144 // Returns a PERSISTENCE_ERROR if a transaction mismatch was detected where 145 // the native model has a newer transaction verison.
|
/external/chromium_org/content/browser/indexed_db/ |
indexed_db_dispatcher_host.h | 73 // These are called to map a 32-bit front-end (renderer-specific) transaction 74 // id to and from a back-end ("host") transaction id that encodes the process 79 // These are called to decode a host transaction ID, for diagnostic purposes.
|
/external/chromium_org/net/http/ |
http_auth_controller.h | 103 // Sets |identity_| to the next identity that the transaction should try. It 150 // makes sure we use the embedded identity only once for the transaction, 154 // True if default credentials have already been tried for this transaction
|
/external/chromium_org/net/url_request/ |
url_request_http_job_unittest.cc | 83 // transaction on start. 97 // its transaction. 122 // Creates a second transaction.
|
/external/chromium_org/sync/syncable/ |
entry.h | 22 // Entry e = transaction.GetById(id); 24 // Entry e(transaction, GET_BY_ID, id); 27 // to enforce that an entry never outlived its transaction if there were a copy
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DOMException.cpp | 66 { "ConstraintError", "A mutation operation in the transaction failed because a constraint was not satisfied.", 0 }, 68 { "TransactionInactiveError", "A request was placed against a transaction which is either currently not active, or which is finished.", 0 }, 69 { "ReadOnlyError", "A write operation was attempted in a read-only transaction.", 0 },
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBObjectStore.h | 53 static PassRefPtr<IDBObjectStore> create(const IDBObjectStoreMetadata& metadata, IDBTransaction* transaction) 55 return adoptRef(new IDBObjectStore(metadata, transaction)); 64 PassRefPtr<IDBTransaction> transaction() const { return m_transaction; } function in class:WebCore::IDBObjectStore
|
IDBRequest.h | 72 PassRefPtr<IDBTransaction> transaction() const { return m_transaction; } function in class:WebCore::IDBRequest 124 // Called by a version change transaction that has finished to set this 151 bool m_requestAborted; // May be aborted by transaction then receive async onsuccess; ignore vs. assert.
|
/external/chromium_org/third_party/sqlite/src/ext/rtree/ |
rtree3.test | 33 # rtree3-3a: Test OOM during a transaction to insert 100 pseudo-random rows. 35 # rtree3-3b: Test OOM during a transaction deleting all entries in the 55 BEGIN TRANSACTION;
|
/external/chromium_org/third_party/sqlite/src/test/ |
progress.test | 100 # Test that an active transaction remains active and not rolled back 104 # corruption. So the transaction is rolled back. 118 } {1 {cannot commit - no transaction is active}}
|
/external/clang/lib/ARCMigrate/ |
Internals.h | 120 class Transaction { 125 Transaction(TransformActions &TA) : TA(TA), Aborted(false) { 129 ~Transaction() {
|
TransZeroOutPropsInDealloc.cpp | 71 Transaction Trans(TA); 84 Transaction Trans(Pass.TA); 93 Transaction Trans(Pass.TA);
|
/frameworks/base/core/java/android/app/ |
IBackupAgent.aidl | 44 * @param token Opaque token identifying this transaction. This must 71 * @param token Opaque token identifying this transaction. This must 91 * @param token Opaque token identifying this transaction. This must
|
/frameworks/ex/common/java/com/android/common/content/ |
SQLiteContentProvider.java | 69 * The equivalent of the {@link #insert} method, but invoked within a transaction. 74 * The equivalent of the {@link #update} method, but invoked within a transaction. 80 * The equivalent of the {@link #delete} method, but invoked within a transaction.
|
/packages/apps/Contacts/src/com/android/contacts/detail/ |
ContactDetailLayoutController.java | 209 FragmentTransaction transaction = mFragmentManager.beginTransaction(); local 210 transaction.add(R.id.about_fragment_container, mDetailFragment, 212 transaction.add(R.id.updates_fragment_container, mUpdatesFragment, 214 transaction.commitAllowingStateLoss(); 229 FragmentTransaction transaction = mFragmentManager.beginTransaction(); local 230 transaction.add(R.id.about_fragment_container, mDetailFragment, 232 transaction.add(R.id.updates_fragment_container, mUpdatesFragment, 234 transaction.commitAllowingStateLoss(); 245 FragmentTransaction transaction = mFragmentManager.beginTransaction(); local 246 transaction.add(R.id.about_fragment_container, mDetailFragment [all...] |
/packages/apps/Nfc/res/values/ |
strings.xml | 50 <!-- String that is telling the user that his NFC transaction couldn't be completed with the 52 <string name="transaction_failure">This transaction couldn\'t be completed with <xliff:g id="app">%1$s</xliff:g>.</string> 53 <!-- String that is telling the user that his NFC transaction couldn't be completed with the
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
EmlViewerActivity.java | 80 final FragmentTransaction transaction = getFragmentManager().beginTransaction(); local 81 transaction.add(R.id.eml_root, EmlMessageViewFragment.newInstance( 83 transaction.commit();
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
SQLiteContentProvider.java | 61 * The equivalent of the {@link #insert} method, but invoked within a transaction. 67 * The equivalent of the {@link #update} method, but invoked within a transaction. 73 * The equivalent of the {@link #delete} method, but invoked within a transaction.
|
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteDatabase.java | 132 * thus ending the current transaction, and the command aborts with a 133 * return code of SQLITE_CONSTRAINT. If no transaction is active 134 * (other than the implied transaction that is created on every command) 141 * so changes from prior commands within the same transaction 395 * Begins a transaction in EXCLUSIVE mode. 398 * When the outer transaction is ended all of 399 * the work done in that transaction and all of the nested transactions will be committed or 400 * rolled back. The changes will be rolled back if any transaction is ended without being 420 * Begins a transaction in IMMEDIATE mode. Transactions can be nested. When 421 * the outer transaction is ended all of the work done in that transactio [all...] |
/external/chromium_org/sql/ |
connection.h | 114 // transaction, which means there may be less time spent initializing the 115 // next transaction because it doesn't have to re-aquire locks. 198 // database, as it openes a transaction on the meta table to force the 222 // - the connection has a transaction open. 272 // Transaction management. We maintain a virtual transaction stack to emulate 274 // limitation is you can't roll back a sub transaction: if any transaction 279 // Normally you should use sql::Transaction to manage a transaction, whic [all...] |
/external/nist-sip/java/gov/nist/javax/sip/ |
SipStackImpl.java | 166 * exactly match those associated with an ongoing transaction, but the request 167 * does not match that transaction (based on the matching rules in Section 169 * it to the server transaction. 182 * in-DIALOG transaction was a INVITE ServerTransaction then Dialog waits for 194 * Dialog forming Transaction). If set to true, the SipListener will get a DialogTerminatedEvent 200 * socket after a Server Transaction goes to the TERMINATED state. This allows a 210 * socket after a Client Transaction goes to the TERMINATED state. This allows a 212 * client transaction after the transaction has terminated at the expense of 246 * Maximum size of server transaction table. The low water mark is 80% of th [all...] |
/external/chromium/app/sql/ |
connection.cc | 149 // mark us as entering the nested transaction. 157 Statement begin(GetCachedStatement(SQL_FROM_HERE, "BEGIN TRANSACTION")); 167 NOTREACHED() << "Rolling back a nonexistent transaction"; 174 // Mark the outermost transaction as needing rollback. 184 NOTREACHED() << "Rolling back a nonexistent transaction";
|
/external/chromium/chrome/browser/password_manager/ |
login_database.cc | 11 #include "app/sql/transaction.h" 62 sql::Transaction transaction(&db_); 63 transaction.Begin(); 90 if (!transaction.Commit()) {
|