/external/nist-sip/java/gov/nist/javax/sip/stack/ |
SIPTransactionStack.java | 150 // Hiwater mark for client transaction table. These defaults can be 333 // Set to true if the client CANCEL transaction should be checked before sending 359 // is not tracked. If you want to track the original transaction you need to specify 452 // Create the transaction collections 564 * Retrieve a transaction from our table of transactions with pending retransmission alerts. 567 * @return -- the RetransmissionAlert enabled transaction corresponding to the given dialog 623 * Create a dialog and add this transaction to it. 625 * @param transaction -- tx to add to the dialog. 628 public SIPDialog createDialog(SIPTransaction transaction) { 632 if (transaction instanceof SIPClientTransaction) 983 SIPTransaction transaction = (SIPTransaction) li.next(); local 993 SIPTransaction transaction = (SIPTransaction) li.next(); local 1604 SIPTransaction transaction = (SIPTransaction) transactionErrorEvent.getSource(); local [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/ |
MainPanel.java | 139 FragmentTransaction transaction = getChildFragmentManager().beginTransaction(); local 141 transaction.setCustomAnimations(R.anim.slide_in_right, R.anim.slide_out_right); 143 transaction.setCustomAnimations(R.anim.slide_in_left, R.anim.slide_out_left); 145 transaction.replace(R.id.category_panel_container, category, CategoryPanel.FRAGMENT_TAG); 146 transaction.commitAllowingStateLoss(); 260 FragmentTransaction transaction = null; local 265 transaction = getChildFragmentManager().beginTransaction(); 270 transaction = getFragmentManager().beginTransaction(); 279 transaction.replace(R.id.state_panel_container, statePanel, StatePanel.FRAGMENT_TAG); 284 transaction.remove(statePanel) [all...] |
/external/kernel-headers/original/linux/ |
jbd.h | 12 * Definitions for transaction data structures for the buffer cache 99 * the transaction, so that at all times we know how many buffers the 100 * outstanding updates on a transaction might possibly touch. 112 * We use the journal_t to keep track of all outstanding transaction 175 #define JFS_FLAG_DELETED 4 /* block deleted by this transaction */ 367 * @h_transaction: Which compound transaction is this update a part of? 382 /* Which compound transaction is this update a part of? */ 403 * tracks a compound transaction through its various states: 411 * FINISHED: We still have to keep the transaction for checkpointing. 413 * The transaction keeps track of all of the buffers modified by [all...] |
binder.h | 44 * between processes. The 'offsets' supplied as part of a binder transaction 119 * identifying the target and contents of the transaction. 122 size_t handle; /* target descriptor of command transaction */ 123 void *ptr; /* target descriptor of return transaction */ 126 unsigned int code; /* transaction command */ 128 /* General information about the transaction. */ 135 /* If this transaction is inline, the data immediately 141 /* transaction data */ 193 * The target of the last transaction (either a bcTRANSACTION or 199 * No parameters... always refers to the last transaction requeste [all...] |
/external/chromium_org/chrome/browser/history/ |
top_sites_database.cc | 13 #include "sql/transaction.h" 54 // Scope initialization in a transaction so we can't be partially 56 sql::Transaction transaction(db_.get()); 57 transaction.Begin(); 77 if (!transaction.Commit()) 176 sql::Transaction transaction(db_.get()); 177 transaction.Begin(); 187 transaction.Commit() [all...] |
/external/nist-sip/java/gov/nist/javax/sip/ |
EventScanner.java | 144 // transaction 152 + " transaction " 153 + eventWrapper.transaction 160 // transaction already exists. If the listener chose 193 "transaction already exists! " + tx); 199 "transaction already exists!!"); 205 // new transaction 206 SIPServerTransaction st = (SIPServerTransaction) eventWrapper.transaction; 210 // Set up a pointer to the transaction. 211 sipRequest.setTransaction(eventWrapper.transaction); [all...] |
/packages/apps/Mms/src/com/android/mms/transaction/ |
NotificationTransaction.java | 18 package com.android.mms.transaction; 20 import static com.android.mms.transaction.TransactionState.FAILED; 21 import static com.android.mms.transaction.TransactionState.INITIALIZED; 22 import static com.android.mms.transaction.TransactionState.SUCCESS; 67 * retrieval</b> response. The transaction service, upon succesful 68 * completion of this transaction, will trigger a retrieve transaction 71 public class NotificationTransaction extends Transaction implements Runnable { 98 // Attach the transaction to the instance of RetryScheduler. 127 * @see com.google.android.mms.pdu.Transaction#process( [all...] |
MmsSystemEventReceiver.java | 18 package com.android.mms.transaction; 48 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) { 49 Log.v(TAG, "wakeUpService: start transaction service ..."); 57 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) { 71 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) { 81 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
|
/external/chromium/net/http/ |
http_cache_transaction.cc | 102 HttpCache::Transaction::Transaction(HttpCache* cache) 124 io_callback_(this, &Transaction::OnIOComplete)), 126 cache_callback_(new CancelableCompletionCallback<Transaction>( 127 this, &Transaction::OnIOComplete))), 129 write_headers_callback_(new CancelableCompletionCallback<Transaction>( 130 this, &Transaction::OnIOComplete))) { 131 COMPILE_ASSERT(HttpCache::Transaction::kNumValidationHeaders == 136 HttpCache::Transaction::~Transaction() { [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBDatabase.cpp | 58 const char IDBDatabase::notVersionChangeTransactionErrorMessage[] = "The database is not running a version change transaction."; 62 const char IDBDatabase::transactionInactiveErrorMessage[] = "The transaction is not active."; 63 const char IDBDatabase::transactionFinishedErrorMessage[] = "The transaction has finished."; 111 void IDBDatabase::transactionCreated(IDBTransaction* transaction) 113 ASSERT(transaction); 114 ASSERT(!m_transactions.contains(transaction->id())); 115 m_transactions.add(transaction->id(), transaction); 117 if (transaction->isVersionChange()) { 119 m_versionChangeTransaction = transaction; 258 PassRefPtr<IDBTransaction> IDBDatabase::transaction(ScriptExecutionContext* context, const Vector<String>& scope, const String& modeString, ExceptionState& es) function in class:WebCore::IDBDatabase 294 RefPtr<IDBTransaction> transaction = IDBTransaction::create(context, transactionId, scope, mode, this); local 298 PassRefPtr<IDBTransaction> IDBDatabase::transaction(ScriptExecutionContext* context, const String& storeName, const String& mode, ExceptionState& es) function in class:WebCore::IDBDatabase [all...] |
IDBDatabase.idl | 41 [CallWith=ScriptExecutionContext, RaisesException] IDBTransaction transaction(DOMStringList storeNames, [Default=NullString] optional DOMString mode); 42 [CallWith=ScriptExecutionContext, RaisesException] IDBTransaction transaction(sequence<DOMString> storeNames, [Default=NullString] optional DOMString mode); 43 [CallWith=ScriptExecutionContext, RaisesException] IDBTransaction transaction(DOMString storeName, [Default=NullString] optional DOMString mode);
|
/development/samples/training/basic/FragmentBasics/src/com/example/fragments/ |
MainActivity.java | 76 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local 79 // and add the transaction to the back stack so the user can navigate back 80 transaction.replace(R.id.fragment_container, newFragment); 81 transaction.addToBackStack(null); 83 // Commit the transaction 84 transaction.commit();
|
/frameworks/base/core/java/android/os/ |
TransactionTooLargeException.java | 21 * The Binder transaction failed because it was too large. 24 * are transferred as {@link Parcel} objects stored in the Binder transaction buffer. 25 * If the arguments or the return value are too large to fit in the transaction buffer, 28 * The Binder transaction buffer has a limited fixed size, currently 1Mb, which 36 * the transaction buffer), or the service was unable to send its response back 38 * in the transaction buffer). It is not possible to tell which of these outcomes
|
/external/chromium_org/content/test/data/indexeddb/ |
delete_over_quota.html | 25 trans = db.transaction(db.objectStoreNames, "readwrite"); 35 trans = db.transaction(db.objectStoreNames, "readwrite"); 48 trans = db.transaction(db.objectStoreNames, "readonly");
|
cursor_prefetch.js | 19 window.trans = event.target.transaction; 27 var trans = db.transaction(['store'], 'readwrite'); 38 // Let the transaction finish. 46 var trans = db.transaction(['store'], 'readwrite'); 59 return; // Let the transaction finish. 79 var trans = db.transaction(['store'], 'readwrite'); 100 return; // Let the transaction finish. 129 var trans = db.transaction(['store'], 'readwrite'); 143 return; // Let the transaction finish. 163 // Make sure transaction terminates anyway [all...] |
quota_test.js | 59 debug("Starting new transaction."); 61 var trans = db.transaction(['test123'], 'readwrite'); 80 debug("Transaction finished."); 92 done("Transaction aborted. Data added: " + displaySize(dataAdded));
|
/external/chromium_org/sync/internal_api/public/ |
read_node.h | 22 // Create an unpopulated ReadNode on the given transaction. Call some flavor 24 explicit ReadNode(const BaseTransaction* transaction); 58 // The sync API transaction that is the parent of this node.
|
user_share.h | 21 // This encompasses all pieces required to build transaction objects on the
|
/external/chromium_org/sync/syncable/ |
syncable_base_transaction.h | 43 // called we set a bool in the transaction. The caller has to unwind the 44 // stack. When the destructor for the transaction is called it acts upon the 62 // be called from any thread. Holding the transaction lock ensures only one
|
/external/chromium_org/third_party/sqlite/src/test/ |
fts3shared.test | 38 # Open a write transaction and insert rows into the FTS3 table. This takes 57 # Verify that the first connection can commit its transaction. 63 # Verify that the second connection still has an open transaction.
|
tkt3093.test | 48 # busy callback, commit the transaction in db. This should clear 62 # Start a write transaction on db. 74 # Verify that everything worked as expected. The db transaction should 75 # have gone first and added entry 2. Then the db2 transaction would have
|
/external/chromium_org/tools/page_cycler/database/pseudo-random-transactions/ |
index.html | 53 db.transaction( 61 db.transaction( 69 db.transaction( 77 db.transaction(
|
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/ |
AccountManager.java | 12 * @param challengedTransaction - the transaction that is being challenged.
|
AuthenticationHelper.java | 38 * the transaction established by the challenged request 41 * transaction. 48 * @return a transaction containing a re-originated request with the 51 * if we get an exception white creating the new transaction
|
SecureAccountManager.java | 11 * @param challengedTransaction - the transaction that is being challenged.
|