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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteTransaction.cpp 50 // Call BEGIN IMMEDIATE for a write transaction to acquire
52 // transaction (on another connection) could make changes
53 // to the same DB file before this transaction gets to execute
54 // any statements. If that happens, this transaction will fail.
99 // the auto-commit flag should be off in the middle of a transaction
  /external/chromium_org/third_party/sqlite/src/test/
tkt35xx.test 13 # When a transaction rolls back, make sure that dirty pages in the
79 # Show that the transaction has not been rolled back.
81 } {1 {cannot start a transaction within a transaction}}
88 # was not defined, then the statement would pass and the transaction
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/
ARM_DELIVERY.TXT 1 The contents of this transaction was created by Hedley Francis
10 quoting transaction reference <97413>.
21 This transaction contains deliverables which are designated as being of
47 In addition to the data versions listed above, this transaction contains
54 files included in this transaction, together with their checksums.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/
ARM_DELIVERY.TXT 1 The contents of this transaction was created by Hedley Francis
10 quoting transaction reference <97414>.
21 This transaction contains deliverables which are designated as being of
47 In addition to the data versions listed above, this transaction contains
54 files included in this transaction, together with their checksums.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/
ARM_DELIVERY.TXT 1 The contents of this transaction was created by Hedley Francis
10 quoting transaction reference <97412>.
21 This transaction contains deliverables which are designated as being of
47 In addition to the data versions listed above, this transaction contains
54 files included in this transaction, together with their checksums.
  /external/chromium/net/http/
http_cache.cc 139 WorkItem(WorkItemOperation operation, Transaction* trans, ActiveEntry** entry)
142 WorkItem(WorkItemOperation operation, Transaction* trans,
148 // Calls back the transaction with the result of the operation.
173 bool Matches(Transaction* trans) const { return trans == trans_; }
178 Transaction* trans_;
217 // This class encapsulates a transaction whose only purpose is to write metadata
221 explicit MetadataWriter(HttpCache::Transaction* trans)
236 scoped_ptr<HttpCache::Transaction> transaction_;
447 HttpCache::Transaction* trans = new HttpCache::Transaction(this)
    [all...]
  /external/chromium_org/net/http/
http_cache.cc 135 WorkItem(WorkItemOperation operation, Transaction* trans, ActiveEntry** entry)
140 WorkItem(WorkItemOperation operation, Transaction* trans,
149 // Calls back the transaction with the result of the operation.
174 bool Matches(Transaction* trans) const { return trans == trans_; }
179 Transaction* trans_;
187 // This class encapsulates a transaction whose only purpose is to write metadata
191 explicit MetadataWriter(HttpCache::Transaction* trans)
208 scoped_ptr<HttpCache::Transaction> transaction_;
381 HttpCache::Transaction* trans =
382 new HttpCache::Transaction(priority, this, NULL)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
Database.cpp 149 void Database::transaction(PassOwnPtr<SQLTransactionCallback> callback, PassOwnPtr<SQLTransactionErrorCallback> errorCallback, PassOwnPtr<VoidCallback> successCallback) function in class:WebCore::Database
173 RefPtr<SQLTransaction> transaction = SQLTransaction::create(this, callback, successCallback, errorCallback, readOnly); local
174 RefPtr<SQLTransactionBackend> transactionBackend = backend()->runTransaction(transaction, readOnly, changeVersionData);
176 OwnPtr<SQLTransactionErrorCallback> callback = transaction->releaseErrorCallback();
187 static PassOwnPtr<DeliverPendingCallbackTask> create(PassRefPtr<SQLTransaction> transaction)
189 return adoptPtr(new DeliverPendingCallbackTask(transaction));
198 DeliverPendingCallbackTask(PassRefPtr<SQLTransaction> transaction)
199 : m_transaction(transaction)
206 void Database::scheduleTransactionCallback(SQLTransaction* transaction)
208 m_executionContext->postTask(DeliverPendingCallbackTask::create(transaction));
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPDialog.java 87 import javax.sip.Transaction;
263 // We store here the useful data from the first transaction without having to
264 // keep the whole transaction object for the duration of the dialog. It also
389 SIPServerTransaction transaction; field in class:SIPDialog.DialogTimerTask
391 public DialogTimerTask(SIPServerTransaction transaction) {
392 this.transaction = transaction;
403 SIPServerTransaction transaction = this.transaction; local
418 if (transaction != nul
653 SIPTransaction transaction = (SIPTransaction) this.getFirstTransaction(); local
    [all...]
SIPServerTransaction.java 72 * Represents a server transaction. Implements the following state machines.
120 * Figure 7: INVITE server transaction
176 // force the listener to see transaction
251 * The reliable provisional response is passed to the transaction layer periodically
253 * is defined in Section 17 of RFC 3261). Once passed to the server transaction, it is
255 * transaction layer will forward each retransmission passed from the UAS core.
261 // If the transaction has terminated,
274 // transaction abandons retransmitting the response
289 * This timer task will terminate the transaction if the listener does not respond in a
292 * fails to respond to a server transaction)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorPanel.java 124 FragmentTransaction transaction = null; local
130 transaction = getChildFragmentManager().beginTransaction();
136 transaction = getFragmentManager().beginTransaction();
141 transaction.setCustomAnimations(android.R.anim.fade_in, android.R.anim.fade_out);
146 transaction.replace(R.id.state_panel_container, statePanel, StatePanel.FRAGMENT_TAG);
153 transaction.remove(statePanel);
156 transaction.commit();
  /packages/apps/Mms/src/com/android/mms/transaction/
SendTransaction.java 18 package com.android.mms.transaction;
57 public class SendTransaction extends Transaction implements Runnable {
69 // Attach the transaction to the instance of RetryScheduler.
75 * @see com.android.mms.Transaction#process()
117 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
127 // Check whether the responding Transaction-ID is consistent
132 Log.e(TAG, "Inconsistent Transaction-ID: req="
RetryScheduler.java 18 package com.android.mms.transaction;
73 Transaction t = (Transaction) observable;
75 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
136 // Send Transaction case
159 // Notification Transaction case
174 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
270 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
295 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpserver.cc 72 HttpServer::Respond(HttpServerTransaction* transaction) {
73 int connection_id = transaction->connection_id();
75 connection->Respond(transaction);
77 delete transaction;
143 // It's possible that an object hosted inside this transaction signalled
165 HttpServer::Connection::Respond(HttpServerTransaction* transaction) {
167 current_ = transaction;
227 HttpServerTransaction* transaction = current_; local
229 server_->SignalHttpRequest(server_, transaction);
  /external/e2fsprogs/lib/ext2fs/
tdb.c 196 tdb_off_t recovery_start; /* offset of transaction recovery region */
246 struct tdb_transaction *transaction; member in struct:tdb_context
582 get the transaction lock
591 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_transaction_lock: failed to get transaction lock\n"));
600 release the transaction lock
1171 if ((tdb->transaction == NULL) && (tdb->map_ptr != NULL)) {
    [all...]
  /developers/build/prebuilts/gradle/AdvancedImmersiveMode/AdvancedImmersiveModeSample/src/main/java/com/example/android/advancedimmersivemode/
MainActivity.java 48 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
50 transaction.add(fragment, FRAGTAG);
51 transaction.commit();
  /developers/build/prebuilts/gradle/BasicAndroidKeyStore/BasicAndroidKeyStoreSample/src/main/java/com/example/android/basicandroidkeystore/
MainActivity.java 48 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
50 transaction.add(fragment, FRAGTAG);
51 transaction.commit();
  /developers/build/prebuilts/gradle/BasicGestureDetect/BasicGestureDetectSample/src/main/java/com/example/android/basicgesturedetect/
MainActivity.java 48 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
50 transaction.add(fragment, FRAGTAG);
51 transaction.commit();
  /developers/build/prebuilts/gradle/BasicImmersiveMode/BasicImmersiveModeSample/src/main/java/com/example/android/basicimmersivemode/
MainActivity.java 48 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
50 transaction.add(fragment, FRAGTAG);
51 transaction.commit();
  /developers/build/prebuilts/gradle/BatchStepSensor/BatchStepSensorSample/src/main/java/com/example/android/batchstepsensor/
MainActivity.java 48 FragmentTransaction transaction = fm.beginTransaction(); local
50 transaction.add(fragment, FRAGTAG);
51 transaction.commit();
  /developers/build/prebuilts/gradle/ImmersiveMode/ImmersiveModeSample/src/main/java/com/example/android/immersivemode/
MainActivity.java 48 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
50 transaction.add(fragment, FRAGTAG);
51 transaction.commit();
  /developers/build/prebuilts/gradle/RepeatingAlarm/RepeatingAlarmSample/src/main/java/com/example/android/repeatingalarm/
MainActivity.java 48 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
50 transaction.add(fragment, FRAGTAG);
51 transaction.commit();
  /developers/build/prebuilts/gradle/StorageClient/StorageClientSample/src/main/java/com/example/android/storageclient/
MainActivity.java 48 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
50 transaction.add(fragment, FRAGTAG);
51 transaction.commit();
  /developers/build/prebuilts/gradle/StorageProvider/StorageProviderSample/src/main/java/com/example/android/storageprovider/
MainActivity.java 48 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
50 transaction.add(fragment, FRAGTAG);
51 transaction.commit();
  /developers/build/templates/CardStream/_MODULE_/src/template/java/_PACKAGE_/
MainActivity.java.ftl 46 FragmentTransaction transaction = fm.beginTransaction();
48 transaction.add(fragment, FRAGTAG);
49 transaction.commit();

Completed in 1623 milliseconds

1 2 3 4 5 67 8 91011>>