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

1 2 3 4 5

  /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...]
Transaction.java 25 * An entity that represents a single transaction (purchase) of an item.
27 public class Transaction {
32 /** The unique user ID who made the transaction */
41 public Transaction(String userId, long itemId, long clientNonce) {
85 Transaction that = (Transaction) o;
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...]
Transaction.java 25 * An entity that represents a single transaction (purchase) of an item.
27 public class Transaction {
32 /** The unique user ID who made the transaction */
41 public Transaction(String userId, long itemId, long clientNonce) {
85 Transaction that = (Transaction) o;
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...]
Transaction.java 25 * An entity that represents a single transaction (purchase) of an item.
27 public class Transaction {
32 /** The unique user ID who made the transaction */
41 public Transaction(String userId, long itemId, long clientNonce) {
85 Transaction that = (Transaction) o;
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/nist-sip/java/javax/sip/
ServerTransaction.java 5 public interface ServerTransaction extends Transaction {
ClientTransaction.java 6 public interface ClientTransaction extends Transaction {
Transaction.java 6 public interface Transaction extends Serializable {
  /external/nist-sip/java/gov/nist/javax/sip/
TransactionExt.java 8 import javax.sip.Transaction;
10 public interface TransactionExt extends Transaction {
13 * Get the Sip Provider associated with this transaction
51 * @throw UnsupportedOperationException if this is not a secure client transaction.
58 *@throw UnsupportedOperationException if this is not a secure client transaction.
66 * @throw UnsupportedOperationException if this is not a secure client transaction.
  /device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/
XenStore.h 43 @param Transaction The XenStore transaction covering this request.
57 IN CONST XENSTORE_TRANSACTION *Transaction,
67 @param Transaction The XenStore transaction covering this request.
77 IN CONST XENSTORE_TRANSACTION *Transaction,
87 @param Transaction The XenStore transaction covering this request.
101 IN CONST XENSTORE_TRANSACTION *Transaction,
111 @param Transaction The XenStore transaction covering this request.
    [all...]
XenStore.c 780 @param Transaction The transaction to use for this request.
793 IN CONST XENSTORE_TRANSACTION *Transaction,
806 if (Transaction == XST_NIL) {
809 Message.tx_id = Transaction->Id;
864 @param Transaction The transaction to use for this request.
876 IN CONST XENSTORE_TRANSACTION *Transaction,
888 return XenStoreTalkv (Transaction, RequestType, &WriteRequest, 1,
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
MockTransport.java 55 private static class Transaction {
65 Transaction(String pattern, String[] responses) {
71 Transaction(int otherType) {
94 private ArrayList<Transaction> mPairs = new ArrayList<Transaction>();
127 Transaction pair = new Transaction(pattern, responses);
145 mPairs.add(new Transaction(Transaction.ACTION_CLIENT_CLOSE));
149 mPairs.add(new Transaction(Transaction.ACTION_IO_EXCEPTION))
    [all...]
  /frameworks/native/services/surfaceflinger/
SurfaceInterceptor.h 69 // the initial state of each object, so a transaction with all of the missing properties is
93 SurfaceChange* createSurfaceChangeLocked(Transaction* transaction, int32_t layerId);
95 void addPositionLocked(Transaction* transaction, int32_t layerId, float x, float y);
96 void addDepthLocked(Transaction* transaction, int32_t layerId, uint32_t z);
97 void addSizeLocked(Transaction* transaction, int32_t layerId, uint32_t w, uint32_t h);
98 void addAlphaLocked(Transaction* transaction, int32_t layerId, float alpha)
    [all...]
  /frameworks/native/libs/vr/libpdx/
client.cpp 123 ///////////////////////////// Transaction implementation //////////////////////
125 Transaction::Transaction(Client& client) : client_{client} {}
127 Transaction::~Transaction() {
132 bool Transaction::EnsureStateAllocated() {
140 void Transaction::SendTransaction(int opcode, Status<void>* ret,
164 void Transaction::SendTransaction(int opcode, Status<int>* ret,
185 void Transaction::SendTransaction(int opcode, Status<LocalHandle>* ret,
206 void Transaction::SendTransaction(int opcode, Status<LocalChannelHandle>* ret
    [all...]
  /art/runtime/
transaction.cc 17 #include "transaction.h"
34 Transaction::Transaction()
35 : log_lock_("transaction log lock", kTransactionLogLock), aborted_(false) {
39 Transaction::~Transaction() {
54 LOG(INFO) << "Transaction::~Transaction"
64 void Transaction::Abort(const std::string& abort_message) {
69 // transaction to be rolled back anyway
    [all...]
  /art/test/Transaction/
Transaction.java 17 public class Transaction {
65 // Call native method but catch the transaction exception.
77 // Helper class to abort transaction: finalizable class with natve methods.
  /frameworks/native/libs/vr/libvrsensor/
sensor_client.cpp 10 using android::pdx::Transaction;
23 Transaction trans{*this};
32 Transaction trans{*this};
45 Transaction trans{*this};
pose_client.cpp 18 using android::pdx::Transaction;
38 Transaction trans{*this};
83 Transaction trans{*this};
96 Transaction trans{*this};
106 Transaction trans{*this};
117 Transaction trans{*this};
135 Transaction trans{*this};
180 Transaction trans{*this};
224 Transaction trans{*this};
  /device/linaro/bootloader/edk2/OvmfPkg/Include/Protocol/
XenBus.h 77 @param Transaction The XenStore transaction covering this request.
91 IN CONST XENSTORE_TRANSACTION *Transaction,
101 @param Transaction The XenStore transaction covering this request.
115 IN CONST XENSTORE_TRANSACTION *Transaction,
124 @param Transaction The XenStore transaction covering this request.
137 IN CONST XENSTORE_TRANSACTION *Transaction,
149 @param Transaction The XenStore transaction covering this request.
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteSession.java 41 * at most one read-write transaction is performed at a time. When WAL is not
51 * has its own session object and therefore its own transaction state independent
64 * There are two kinds of transaction: implicit transactions and explicit
67 * An implicit transaction is created whenever a database operation is requested
68 * and there is no explicit transaction currently in progress. An implicit transaction
72 * An explicit transaction is started by calling {@link #beginTransaction} and
73 * specifying the desired transaction mode. Once an explicit transaction has begun,
74 * all subsequent database operations will be performed as part of that transaction
345 Transaction transaction = obtainTransaction(transactionMode, transactionListener); local
936 Transaction transaction = mTransactionPool; local
    [all...]
  /frameworks/native/libs/vr/libpdx_uds/
service_framework_tests.cpp 38 using android::pdx::Transaction;
265 Transaction trans{*this};
271 Transaction trans{*this};
283 Transaction trans{*this};
289 Transaction trans{*this};
295 Transaction trans{*this};
302 Transaction trans{*this};
311 Transaction trans{*this};
320 Transaction trans{*this};
329 Transaction trans{*this}
    [all...]

Completed in 1298 milliseconds

1 2 3 4 5