HomeSort by relevance Sort by last modified time
    Searched defs:engine (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /external/svox/pico/lib/
picoapid.h 54 picoctrl_Engine engine; member in struct:pico_system
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
RFC3394WrapEngine.java 23 private BlockCipher engine; field in class:RFC3394WrapEngine
31 public RFC3394WrapEngine(BlockCipher engine)
33 this.engine = engine;
64 return engine.getAlgorithmName();
90 engine.init(true, param);
98 engine.processBlock(buf, 0, buf, 0);
143 engine.init(false, param);
164 engine.processBlock(buf, 0, buf, 0);
DESedeWrapEngine.java 32 /** Field engine */
33 private CBCBlockCipher engine; field in class:DESedeWrapEngine
68 this.engine = new CBCBlockCipher(new DESedeEngine());
159 int blockSize = engine.getBlockSize();
166 engine.init(true, paramPlusIV);
172 engine.processBlock(WKCKS, currentBytePos, TEMP1, currentBytePos);
189 this.engine.init(true, param2);
193 engine.processBlock(TEMP3, currentBytePos, TEMP3, currentBytePos);
221 final int blockSize = engine.getBlockSize();
247 this.engine.init(false, param2)
    [all...]
  /external/webkit/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue.h 150 QScriptEngine* engine; member in class:tst_QScriptValue
  /libcore/luni/src/main/java/javax/net/ssl/
KeyManagerFactory.java 30 import org.apache.harmony.security.fortress.Engine;
39 // Used to access common engine functionality
40 private static Engine engine = new Engine(SERVICE); field in class:KeyManagerFactory
79 synchronized (engine) {
80 engine.getInstance(algorithm, null);
81 return new KeyManagerFactory((KeyManagerFactorySpi) engine.spi, engine.provider,
141 synchronized (engine) {
    [all...]
TrustManagerFactory.java 29 import org.apache.harmony.security.fortress.Engine;
39 // Used to access common engine functionality
40 private static Engine engine = new Engine(SERVICE); field in class:TrustManagerFactory
78 synchronized (engine) {
79 engine.getInstance(algorithm, null);
80 return new TrustManagerFactory((TrustManagerFactorySpi) engine.spi, engine.provider,
140 synchronized (engine) {
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/
SyncStorageEngineTest.java 50 SyncStorageEngine engine = SyncStorageEngine.newTestInstance( local
54 long historyId = engine.insertStartSyncEvent(
57 engine.stopSyncEvent(historyId, time1 - time0, "yay", 0, 0);
82 SyncStorageEngine engine = SyncStorageEngine.newTestInstance( local
85 removePeriodicSyncs(engine, account1, authority);
86 removePeriodicSyncs(engine, account2, authority);
89 engine.addPeriodicSync(sync1.account, sync1.authority, sync1.extras, sync1.period);
90 engine.addPeriodicSync(sync2.account, sync2.authority, sync2.extras, sync2.period);
91 engine.addPeriodicSync(sync3.account, sync3.authority, sync3.extras, sync3.period);
92 engine.addPeriodicSync(sync4.account, sync4.authority, sync4.extras, sync4.period)
147 SyncStorageEngine engine = SyncStorageEngine.newTestInstance( local
235 SyncStorageEngine engine = SyncStorageEngine.newTestInstance(testContext); local
340 SyncStorageEngine engine = SyncStorageEngine.newTestInstance(testContext); local
380 SyncStorageEngine engine = SyncStorageEngine.newTestInstance(testContext); local
    [all...]
  /libcore/luni/src/main/java/java/security/
KeyFactory.java 22 import org.apache.harmony.security.fortress.Engine;
25 * {@code KeyFactory} is an engine class that can be used to translate between
38 // Used to access common engine functionality
39 static private Engine engine = new Engine(SERVICE); field in class:KeyFactory
82 synchronized (engine) {
83 engine.getInstance(algorithm, null);
84 return new KeyFactory((KeyFactorySpi)engine.spi, engine.provider, algorithm)
    [all...]
AlgorithmParameterGenerator.java 21 import org.apache.harmony.security.fortress.Engine;
24 * {@code AlgorithmParameterGenerator} is an engine class which is capable of
32 // Used to access common engine functionality
33 private static Engine engine = new Engine(SERVICE); field in class:AlgorithmParameterGenerator
52 * a concrete implementation, this engine instance delegates to.
93 synchronized (engine) {
94 engine.getInstance(algorithm, null);
96 (AlgorithmParameterGeneratorSpi) engine.spi, engine.provider
    [all...]
AlgorithmParameters.java 23 import org.apache.harmony.security.fortress.Engine;
27 * {@code AlgorithmParameters} is an engine class which provides algorithm
37 * Used to access common engine functionality.
39 private static Engine engine = new Engine(SEVICE); field in class:AlgorithmParameters
97 synchronized (engine) {
98 engine.getInstance(algorithm, null);
99 return new AlgorithmParameters((AlgorithmParametersSpi) engine.spi,
100 engine.provider, algorithm)
    [all...]
KeyPairGenerator.java 21 import org.apache.harmony.security.fortress.Engine;
25 * {@code KeyPairGenerator} is an engine class which is capable of generating a
36 // Used to access common engine functionality
37 private static Engine engine = new Engine(SERVICE); field in class:KeyPairGenerator
86 synchronized (engine) {
87 engine.getInstance(algorithm, null);
88 if (engine.spi instanceof KeyPairGenerator) {
89 result = (KeyPairGenerator) engine.spi
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
KeyAgreement.java 29 import org.apache.harmony.security.fortress.Engine;
38 // Used to access common engine functionality
39 private static final Engine engine = new Engine("KeyAgreement"); field in class:KeyAgreement
104 synchronized (engine) {
105 engine.getInstance(algorithm, null);
106 return new KeyAgreement((KeyAgreementSpi) engine.spi, engine.provider,
169 synchronized (engine) {
    [all...]
KeyGenerator.java 27 import org.apache.harmony.security.fortress.Engine;
36 // Used to access common engine functionality
37 private static final Engine engine = new Engine("KeyGenerator"); field in class:KeyGenerator
103 synchronized (engine) {
104 engine.getInstance(algorithm, null);
105 return new KeyGenerator((KeyGeneratorSpi) engine.spi, engine.provider,
166 synchronized (engine) {
    [all...]
SecretKeyFactory.java 27 import org.apache.harmony.security.fortress.Engine;
44 // Used to access common engine functionality
45 private static final Engine engine = new Engine("SecretKeyFactory"); field in class:SecretKeyFactory
108 synchronized (engine) {
109 engine.getInstance(algorithm, null);
110 return new SecretKeyFactory((SecretKeyFactorySpi) engine.spi,
111 engine.provider, algorithm);
173 synchronized (engine) {
    [all...]
ExemptionMechanism.java 30 import org.apache.harmony.security.fortress.Engine;
38 // Used to access common engine functionality
39 private static final Engine engine = new Engine("ExemptionMechanism"); field in class:ExemptionMechanism
103 synchronized (engine) {
104 engine.getInstance(algorithm, null);
105 return new ExemptionMechanism((ExemptionMechanismSpi) engine.spi,
106 engine.provider, algorithm);
170 synchronized (engine) {
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
CertPathBuilder.java 26 import org.apache.harmony.security.fortress.Engine;
37 // Used to access common engine functionality
38 private static Engine engine = new Engine(SERVICE); field in class:CertPathBuilder
108 synchronized (engine) {
109 engine.getInstance(algorithm, null);
110 return new CertPathBuilder((CertPathBuilderSpi) engine.spi,
111 engine.provider, algorithm);
168 synchronized (engine) {
    [all...]
CertPathValidator.java 26 import org.apache.harmony.security.fortress.Engine;
37 // Used to access common engine functionality
38 private static Engine engine = new Engine(SERVICE); field in class:CertPathValidator
107 synchronized (engine) {
108 engine.getInstance(algorithm, null);
109 return new CertPathValidator((CertPathValidatorSpi) engine.spi,
110 engine.provider, algorithm);
169 synchronized (engine) {
    [all...]
CertificateFactory.java 28 import org.apache.harmony.security.fortress.Engine;
43 // Used to access common engine functionality
44 private static Engine engine = new Engine(SERVICE); field in class:CertificateFactory
90 synchronized (engine) {
91 engine.getInstance(type, null);
92 return new CertificateFactory((CertificateFactorySpi) engine.spi,
93 engine.provider, type);
159 synchronized (engine) {
    [all...]
  /external/openssl/apps/
pkeyparam.c 77 ENGINE *e = NULL;
78 char *engine=NULL; local
112 else if (strcmp(*args,"-engine") == 0)
115 engine= *(++args);
138 BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
144 e = setup_engine(bio_err, engine, 0);
  /external/openssl/crypto/ecdh/
ech_locl.h 82 ENGINE *engine; member in struct:ecdh_data_st
  /external/openssl/crypto/ecdsa/
ecs_locl.h 89 ENGINE *engine; member in struct:ecdsa_data_st
  /external/webkit/JavaScriptCore/qt/tests/qscriptengine/
tst_qscriptengine.cpp 45 QScriptEngine engine; local
46 QVERIFY2(engine.evaluate("1+1").isValid(), "the expression should be evaluated and an valid result should be returned");
47 QVERIFY2(engine.evaluate("ping").isValid(), "Script throwing an unhandled exception should return an exception value");
53 QScriptEngine engine; local
54 QScriptValue foo = engine.evaluate("( function foo() {return 'pong';} )");
56 engine.collectGarbage();
62 QScriptEngine engine; local
63 QScriptValue value = engine.nullValue();
70 QScriptEngine engine; local
71 QScriptValue value = engine.undefinedValue()
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/encodings/
ISO9796d1Encoding.java 14 * value. See your favorite search engine for details.
24 private AsymmetricBlockCipher engine; field in class:ISO9796d1Encoding
32 this.engine = cipher;
37 return engine;
57 engine.init(forEncryption, param);
71 int baseBlockSize = engine.getInputBlockSize();
88 int baseBlockSize = engine.getOutputBlockSize();
190 return engine.processBlock(block, offSet, block.length - offSet);
202 byte[] block = engine.processBlock(in, inOff, inLen);
OAEPEncoding.java 22 private AsymmetricBlockCipher engine; field in class:OAEPEncoding
53 this.engine = cipher;
68 return engine;
86 engine.init(forEncryption, param);
93 int baseBlockSize = engine.getInputBlockSize();
107 int baseBlockSize = engine.getOutputBlockSize();
195 return engine.processBlock(block, 0, block.length);
208 byte[] data = engine.processBlock(in, inOff, inLen);
216 if (data.length < engine.getOutputBlockSize())
218 block = new byte[engine.getOutputBlockSize()]
    [all...]
PKCS1Encoding.java 33 private AsymmetricBlockCipher engine; field in class:PKCS1Encoding
45 this.engine = cipher;
68 return engine;
90 engine.init(forEncryption, param);
98 int baseBlockSize = engine.getInputBlockSize();
112 int baseBlockSize = engine.getOutputBlockSize();
151 byte[] block = new byte[engine.getInputBlockSize()];
184 return engine.processBlock(block, 0, block.length);
196 byte[] block = engine.processBlock(in, inOff, inLen);
210 if (useStrictLength && block.length != engine.getOutputBlockSize()
    [all...]

Completed in 1529 milliseconds

1 2 3 4 5