HomeSort by relevance Sort by last modified time
    Searched refs:transaction (Results 1 - 25 of 172) sorted by null

1 2 3 4 5 6 7

  /external/nist-sip/java/gov/nist/javax/sip/
EventWrapper.java 37 protected SIPTransaction transaction; field in class:EventWrapper
39 EventWrapper(EventObject sipEvent, SIPTransaction transaction) {
41 this.transaction = transaction;
DialogFilter.java 106 * @param transaction
109 SIPServerTransaction transaction) {
120 sipStack.addTransactionPendingAck(transaction);
122 transaction.sendResponse(sipResponse);
123 transaction.releaseSem();
126 transaction.releaseSem();
127 sipStack.removeTransaction(transaction);
135 * @param transaction
139 private void sendBadRequestResponse(SIPRequest sipRequest, SIPServerTransaction transaction,
150 sipStack.addTransactionPendingAck(transaction);
288 SIPServerTransaction transaction = (SIPServerTransaction) this.transactionChannel; local
1154 SIPClientTransaction transaction = (SIPClientTransaction) this.transactionChannel; local
1309 SIPClientTransaction transaction = (SIPClientTransaction) this.transactionChannel; local
    [all...]
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...]
SipProviderImpl.java 71 import javax.sip.Transaction;
168 public void handleEvent(EventObject sipEvent, SIPTransaction transaction) {
172 + transaction + "this.sipListener = "
185 EventWrapper eventWrapper = new EventWrapper(sipEvent, transaction);
284 "Transaction already assigned to request");
286 throw new TransactionUnavailableException ("Cannot create client transaction for " + Request.ACK);
312 "Transaction already exists!");
338 "could not find existing transaction for "
349 "Cannot resolve next hop -- transaction unavailable");
352 "Cannot resolve next hop -- transaction unavailable", ex)
457 SIPServerTransaction transaction = null; local
902 SIPTransaction transaction = (SIPTransaction) transactionErrorEvent local
    [all...]
  /external/guice/extensions/persist/lib/
jta.jar 
  /external/webrtc/webrtc/base/
httpserver_unittest.cc 26 HttpServerTransaction* transaction; member in struct:rtc::__anon49592::HttpServerMonitor
30 : transaction(NULL), server_closed(false), connection_closed(false) {
40 ASSERT_FALSE(transaction);
41 transaction = t;
42 transaction->response.set_success();
43 transaction->response.setHeader(HH_CONNECTION, "Close");
46 ASSERT_EQ(transaction, t);
47 transaction = NULL;
65 EXPECT_FALSE(monitor.transaction);
81 ASSERT_TRUE(NULL != monitor.transaction);
    [all...]
  /developers/build/prebuilts/gradle/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/server/
StoreBackend.java 27 * Verifies the authenticity of the provided transaction by confirming that it was signed with
30 * @param transaction the contents of the purchase transaction, its contents are
34 * @param transactionSignature the signature of the transaction's contents.
36 * true, the server can consider the transaction is successful.
38 boolean verify(Transaction transaction, byte[] transactionSignature);
41 * Verifies the authenticity of the provided transaction by password.
43 * @param transaction the contents of the purchase transaction, its contents are signed by th
    [all...]
StoreBackendImpl.java 36 private final Set<Transaction> mReceivedTransactions = new HashSet<>();
39 public boolean verify(Transaction transaction, byte[] transactionSignature) {
41 if (mReceivedTransactions.contains(transaction)) {
42 // It verifies the equality of the transaction including the client nonce
46 mReceivedTransactions.add(transaction);
47 PublicKey publicKey = mPublicKeys.get(transaction.getUserId());
50 verificationFunction.update(transaction.toByteArray());
52 // Transaction is verified with the public key associated with the user
63 public boolean verify(Transaction transaction, String password)
    [all...]
  /developers/samples/android/security/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/server/
StoreBackend.java 27 * Verifies the authenticity of the provided transaction by confirming that it was signed with
30 * @param transaction the contents of the purchase transaction, its contents are
34 * @param transactionSignature the signature of the transaction's contents.
36 * true, the server can consider the transaction is successful.
38 boolean verify(Transaction transaction, byte[] transactionSignature);
41 * Verifies the authenticity of the provided transaction by password.
43 * @param transaction the contents of the purchase transaction, its contents are signed by th
    [all...]
StoreBackendImpl.java 36 private final Set<Transaction> mReceivedTransactions = new HashSet<>();
39 public boolean verify(Transaction transaction, byte[] transactionSignature) {
41 if (mReceivedTransactions.contains(transaction)) {
42 // It verifies the equality of the transaction including the client nonce
46 mReceivedTransactions.add(transaction);
47 PublicKey publicKey = mPublicKeys.get(transaction.getUserId());
50 verificationFunction.update(transaction.toByteArray());
52 // Transaction is verified with the public key associated with the user
63 public boolean verify(Transaction transaction, String password)
    [all...]
  /development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/server/
StoreBackend.java 27 * Verifies the authenticity of the provided transaction by confirming that it was signed with
30 * @param transaction the contents of the purchase transaction, its contents are
34 * @param transactionSignature the signature of the transaction's contents.
36 * true, the server can consider the transaction is successful.
38 boolean verify(Transaction transaction, byte[] transactionSignature);
41 * Verifies the authenticity of the provided transaction by password.
43 * @param transaction the contents of the purchase transaction, its contents are signed by th
    [all...]
StoreBackendImpl.java 36 private final Set<Transaction> mReceivedTransactions = new HashSet<>();
39 public boolean verify(Transaction transaction, byte[] transactionSignature) {
41 if (mReceivedTransactions.contains(transaction)) {
42 // It verifies the equality of the transaction including the client nonce
46 mReceivedTransactions.add(transaction);
47 PublicKey publicKey = mPublicKeys.get(transaction.getUserId());
50 verificationFunction.update(transaction.toByteArray());
52 // Transaction is verified with the public key associated with the user
63 public boolean verify(Transaction transaction, String password)
    [all...]
  /external/syzkaller/vendor/google.golang.org/appengine/datastore/
transaction.go 17 internal.RegisterTransactionSetter(func(x *pb.Query, t *pb.Transaction) {
18 x.Transaction = t
20 internal.RegisterTransactionSetter(func(x *pb.GetRequest, t *pb.Transaction) {
21 x.Transaction = t
23 internal.RegisterTransactionSetter(func(x *pb.PutRequest, t *pb.Transaction) {
24 x.Transaction = t
26 internal.RegisterTransactionSetter(func(x *pb.DeleteRequest, t *pb.Transaction) {
27 x.Transaction = t
31 // ErrConcurrentTransaction is returned when a transaction is rolled back due
32 // to a conflict with a concurrent transaction
    [all...]
  /external/syzkaller/vendor/google.golang.org/appengine/internal/
transaction.go 22 // RegisterTransactionSetter registers a function that sets transaction information
24 // the first being a protocol buffer type, and the second being *datastore.Transaction.
30 // applyTransaction applies the transaction t to message pb
32 func applyTransaction(pb proto.Message, t *pb.Transaction) {
39 var transactionKey = "used for *Transaction"
41 func transactionFromContext(ctx netcontext.Context) *transaction {
42 t, _ := ctx.Value(&transactionKey).(*transaction)
46 func withTransaction(ctx netcontext.Context, t *transaction) netcontext.Context {
50 type transaction struct { type
51 transaction pb.Transactio
    [all...]
  /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();
  /developers/samples/android/notification/Bubbles/app/src/main/java/com/example/android/bubbles/
BubbleActivity.kt 22 import androidx.fragment.app.transaction
36 supportFragmentManager.transaction(now = true) {
49 supportFragmentManager.transaction {
  /developers/build/prebuilts/gradle/BluetoothAdvertisements/Application/src/main/java/com/example/android/bluetoothadvertisements/
MainActivity.java 112 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
117 transaction.replace(R.id.scanner_fragment_container, scannerFragment);
120 transaction.replace(R.id.advertiser_fragment_container, advertiserFragment);
122 transaction.commit();
  /developers/samples/android/connectivity/bluetooth/BluetoothAdvertisements/Application/src/main/java/com/example/android/bluetoothadvertisements/
MainActivity.java 112 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
117 transaction.replace(R.id.scanner_fragment_container, scannerFragment);
120 transaction.replace(R.id.advertiser_fragment_container, advertiserFragment);
122 transaction.commit();
  /development/samples/browseable/BluetoothAdvertisements/src/com.example.android.bluetoothadvertisements/
MainActivity.java 112 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
117 transaction.replace(R.id.scanner_fragment_container, scannerFragment);
120 transaction.replace(R.id.advertiser_fragment_container, advertiserFragment);
122 transaction.commit();
  /developers/build/prebuilts/gradle/BasicAndroidKeyStore/Application/src/main/java/com/example/android/basicandroidkeystore/
MainActivity.java 50 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
52 transaction.add(fragment, FRAGTAG);
53 transaction.commit();
  /developers/build/prebuilts/gradle/BasicGestureDetect/Application/src/main/java/com/example/android/basicgesturedetect/
MainActivity.java 47 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
49 transaction.add(fragment, FRAGTAG);
50 transaction.commit();
  /developers/build/prebuilts/gradle/BasicImmersiveMode/Application/src/main/java/com/example/android/basicimmersivemode/
MainActivity.java 47 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
49 transaction.add(fragment, FRAGTAG);
50 transaction.commit();
  /developers/build/prebuilts/gradle/BeamLargeFiles/Application/src/main/java/com/example/android/beamlargefiles/
MainActivity.java 50 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
52 transaction.add(fragment, FRAGTAG);
53 transaction.commit();
  /developers/build/prebuilts/gradle/ImmersiveMode/Application/src/main/java/com/example/android/immersivemode/
MainActivity.java 47 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
49 transaction.add(fragment, FRAGTAG);
50 transaction.commit();
  /developers/build/prebuilts/gradle/RepeatingAlarm/Application/src/main/java/com/example/android/repeatingalarm/
MainActivity.java 47 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
49 transaction.add(fragment, FRAGTAG);
50 transaction.commit();

Completed in 919 milliseconds

1 2 3 4 5 6 7