/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 {
|
SipProvider.java | 41 Dialog getNewDialog(Transaction transaction) throws SipException;
|
/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.
|
/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...] |
/art/runtime/ |
transaction.cc | 17 #include "transaction.h" 34 Transaction::Transaction() 35 : log_lock_("transaction log lock", kTransactionLogLock), aborted_(false) { 39 Transaction::~Transaction() { 53 LOG(INFO) << "Transaction::~Transaction" 62 void Transaction::Abort(const std::string& abort_message) { 67 // transaction to be rolled back anyway [all...] |
transaction.h | 40 class Transaction FINAL { 45 Transaction(); 46 ~Transaction(); 98 // Abort transaction by undoing all recorded changes. 229 DISALLOW_COPY_AND_ASSIGN(Transaction);
|
/art/test/Transaction/ |
Transaction.java | 17 public class Transaction { 61 // Call native method but catch the transaction exception. 73 // Helper class to abort transaction: finalizable class with natve methods.
|
/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...] |
/external/clang/lib/ARCMigrate/ |
TransEmptyStatementsAndDealloc.cpp | 178 Transaction Trans(Pass.TA); 221 Transaction Trans(TA); 226 Transaction Trans(TA); 232 Transaction Trans(TA); 235 Transaction Trans(TA); 248 Transaction Trans(pass.TA);
|
Internals.h | 123 class Transaction { 128 Transaction(TransformActions &TA) : TA(TA), Aborted(false) { 132 ~Transaction() {
|
TransARCAssign.cpp | 57 Transaction Trans(Pass.TA);
|
TransGCCalls.cpp | 53 Transaction Trans(TA);
|
/external/libweave/src/ |
config.h | 53 class Transaction final { 55 explicit Transaction(Config* config) 60 ~Transaction();
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/fps/ |
response.py | 160 class Transaction(ResponseElement): 163 super(Transaction, self).__init__(*args, **kw) 172 return super(Transaction, self).startElement(name, attrs, connection) 177 self.Transaction = [] 181 if name == 'Transaction': 182 getattr(self, name).append(Transaction(name=name)) 190 if name == 'Transaction': 191 setattr(self, name, Transaction(name=name))
|