HomeSort by relevance Sort by last modified time
    Searched full:engine (Results 426 - 450 of 3084) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/libjingle/source/talk/media/base/
hybridvideoengine.h 54 HybridVideoMediaChannel(HybridVideoEngineInterface* engine,
118 // Interface class for HybridVideoChannels to talk to the engine.
131 // a VideoMediaChannel implementation from each engine. Policy is then used
214 // config, or the config from the second video engine if neither are
239 // For now they are set to always use the second engine for capturing, which
259 bool HasCodec(const VIDEO& engine, const VideoCodec& codec) const {
260 for (std::vector<VideoCodec>::const_iterator i = engine.codecs().begin();
261 i != engine.codecs().end();
  /external/chromium_org/third_party/libxslt/libxslt/
xsltwin32config.h 2 * Summary: compile-time version informations for the XSLT engine
4 * Description: compile-time version informations for the XSLT engine
xsltwin32config.h.in 2 * Summary: compile-time version informations for the XSLT engine
4 * Description: compile-time version informations for the XSLT engine
  /external/chromium_org/third_party/libxslt/linux/libxslt/
xsltwin32config.h 2 * Summary: compile-time version informations for the XSLT engine
4 * Description: compile-time version informations for the XSLT engine
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
README.txt 7 to use the MCJIT execution engine instead of the older JIT engine.
  /external/oprofile/m4/
cellspubfdsupport.m4 42 [ --with-target=cell-be Check BFD support for Cell Broadband Engine SPU profiling], arch=$withval)
46 AC_MSG_NOTICE([BFD library has support for Cell Broadband Engine SPU profiling])
  /libcore/luni/src/main/java/java/security/cert/
CertStore.java 26 import org.apache.harmony.security.fortress.Engine;
38 // Used to access common engine functionality
39 private static final Engine ENGINE = new Engine(SERVICE);
103 Engine.SpiAndProvider sap = ENGINE.getInstance(type, params);
181 Object spi = ENGINE.getInstance(type, provider, params);
CertificateFactory.java 28 import org.apache.harmony.security.fortress.Engine;
43 // Used to access common engine functionality
44 private static final Engine ENGINE = new Engine(SERVICE);
90 Engine.SpiAndProvider sap = ENGINE.getInstance(type, null);
156 Object spi = ENGINE.getInstance(type, provider, null);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
values.pass.cpp 12 // template<class Engine, size_t w, class UIntType>
19 // // engine characteristics
  /packages/apps/Settings/src/com/android/settings/tts/
TtsEngineSettingsFragment.java 89 if (TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED.equals(intent.getAction())) {
137 new IntentFilter(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED));
148 Intent intent = new Intent(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
151 if (DBG) Log.d(TAG, "Updating engine: Checking voice data: " + intent.toUri(0));
170 TextToSpeech.Engine.EXTRA_AVAILABLE_VOICES);
172 TextToSpeech.Engine.EXTRA_UNAVAILABLE_VOICES);
261 * Ask the current default engine to launch the matching INSTALL_TTS_DATA activity
266 Intent intent = new Intent(TextToSpeech.Engine.ACTION_INSTALL_TTS_DATA);
  /external/chromium_org/chromeos/ime/
component_extension_ime_manager.h 16 // Represents an engine in component extension IME.
20 std::string engine_id; // The engine id.
22 std::vector<std::string> language_codes; // The engine's language(ex. "en").
23 std::string description; // The engine description.
24 std::vector<std::string> layouts; // The list of keyboard layout of engine.
75 // mapping between input method id and engine components. This function must
  /external/chromium_org/third_party/openssl/openssl/apps/
pkeyparam.c 77 char *engine=NULL; local
111 else if (strcmp(*args,"-engine") == 0)
114 engine= *(++args);
137 BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
143 setup_engine(bio_err, engine, 0);
  /external/openssl/apps/
pkeyparam.c 77 char *engine=NULL; local
111 else if (strcmp(*args,"-engine") == 0)
114 engine= *(++args);
137 BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
143 setup_engine(bio_err, engine, 0);
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLECDHKeyAgreement.java 33 * Elliptic Curve Diffie-Hellman key agreement backed by the OpenSSL engine.
37 /** OpenSSL handle of the private key. Only available after the engine has been initialized. */
42 * engine has been initialized.
74 throw new RuntimeException("Engine returned " + actualResultLength);
79 // The output is shorter than expected -- use only what's produced by the engine
84 throw new RuntimeException("Engine produced a longer than expected result. Expected: "
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLEnginePair.java 55 * Create a new connected server/client engine pair within a
119 private static boolean handshakeCompleted(SSLEngine engine,
127 HandshakeStatus status = engine.getHandshakeStatus();
133 Runnable runnable = engine.getDelegatedTask();
146 SSLEngineResult unwrapResult = engine.unwrap(input, scratch);
156 SSLEngineResult wrapResult = engine.wrap(EMPTY_BYTE_BUFFER, output);
  /packages/apps/Browser/src/com/android/browser/search/
SearchEngineInfo.java 31 * Loads and holds data for a given web search engine.
37 // The fields of a search engine data array, defined in the same order as they appear in the
55 // The array of strings defining this search engine. The array values are in the same order as
60 * @throws IllegalArgumentException If the name does not refer to a valid search engine
122 * data available for this search engine).
130 * was no data available for this search engine).
  /external/chromium_org/third_party/openssl/openssl/crypto/engine/
eng_cryptodev.c 30 #include <openssl/engine.h>
101 static int cryptodev_engine_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
103 static int cryptodev_engine_digests(ENGINE *e, const EVP_MD **digest,
130 static int cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p,
315 * thing called by the engine init crud which determines what it
316 * can use for ciphers from this engine. We want to return
323 * use this engine as the default, and if for whatever reason
492 * libcrypto EVP stuff - this is how we get wired to EVP so the engine
604 * Registered by the ENGINE when used to find out how to deal with
605 * a particular NID in the ENGINE. this says what we'll do at th
1367 ENGINE *engine = ENGINE_new(); local
    [all...]
  /external/openssl/crypto/engine/
eng_cryptodev.c 30 #include <openssl/engine.h>
101 static int cryptodev_engine_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
103 static int cryptodev_engine_digests(ENGINE *e, const EVP_MD **digest,
130 static int cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p,
315 * thing called by the engine init crud which determines what it
316 * can use for ciphers from this engine. We want to return
323 * use this engine as the default, and if for whatever reason
492 * libcrypto EVP stuff - this is how we get wired to EVP so the engine
604 * Registered by the ENGINE when used to find out how to deal with
605 * a particular NID in the ENGINE. this says what we'll do at th
1367 ENGINE *engine = ENGINE_new(); local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_openssl.c 24 #include <openssl/engine.h>
93 ENGINE *engine; /* functional reference to the engine */ member in struct:tls_connection
94 EVP_PKEY *private_key; /* the private key if using engine */
590 * tls_engine_load_dynamic_generic - load any openssl engine
591 * @pre: an array of commands and values that load an engine initialized
592 * in the engine specific function
594 * engine (or %NULL if not required)
595 * @id: the engine id of the engine to load (only required if post is not %NUL
604 ENGINE *engine; local
    [all...]
  /external/chromium_org/media/audio/android/
opensles_output.cc 153 // Destroy the engine object. We don't store any associated interface for
191 // Initializes the engine object with specific option. After working with the
199 // Realize the SL engine object in synchronous mode.
203 // Get the SL engine interface which is implicit.
204 SLEngineItf engine; local
206 engine_object_.Get(), SL_IID_ENGINE, &engine),
210 LOG_ON_FAILURE_AND_RETURN((*engine)->CreateOutputMix(
211 engine, output_mixer_.Receive(), 0, NULL, NULL),
235 (*engine)->CreateAudioPlayer(engine,
    [all...]
  /external/chromium_org/third_party/icu/source/test/letest/
letest.cpp 58 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status); local
64 glyphCount = engine->getGlyphCount();
73 engine->getGlyphs(NULL, status);
80 engine->getGlyphs(glyphs, status);
87 engine->getGlyphs(NULL, 0xFF000000L, status);
94 engine->getGlyphs(glyphs, 0xFF000000L, status);
101 engine->getCharIndices(NULL, status);
108 engine->getCharIndices(indices, status);
115 engine->getCharIndices(NULL, 1024, status);
122 engine->getCharIndices(indices, 1024, status)
221 LayoutEngine *engine = NULL; local
243 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status); local
616 LayoutEngine *engine = NULL; local
    [all...]
  /external/icu4c/test/letest/
letest.cpp 58 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status); local
64 glyphCount = engine->getGlyphCount();
73 engine->getGlyphs(NULL, status);
80 engine->getGlyphs(glyphs, status);
87 engine->getGlyphs(NULL, 0xFF000000L, status);
94 engine->getGlyphs(glyphs, 0xFF000000L, status);
101 engine->getCharIndices(NULL, status);
108 engine->getCharIndices(indices, status);
115 engine->getCharIndices(NULL, 1024, status);
122 engine->getCharIndices(indices, 1024, status)
221 LayoutEngine *engine = NULL; local
243 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status); local
616 LayoutEngine *engine = NULL; local
    [all...]
  /frameworks/native/services/surfaceflinger/RenderEngine/
RenderEngine.cpp 86 RenderEngine* engine = NULL; local
89 engine = new GLES10RenderEngine();
92 engine = new GLES11RenderEngine();
96 engine = new GLES20RenderEngine();
99 engine->setEGLContext(ctxt);
106 ALOGI("GL_MAX_TEXTURE_SIZE = %d", engine->getMaxTextureSize());
107 ALOGI("GL_MAX_VIEWPORT_DIMS = %d", engine->getMaxViewportDims());
112 return engine;
220 RenderEngine& engine, EGLImageKHR image) : mEngine(engine)
    [all...]
  /external/jmonkeyengine/
NOTICE 1 ==> engine/src/ogre/com/jme3/scene/plugins/ogre/SkeletonLoader.java <==
33 ==> engine/src/ogre/com/jme3/scene/plugins/ogre/MeshLoader.java <==
65 ==> engine/src/ogre/com/jme3/scene/plugins/ogre/AnimData.java <==
97 ==> engine/src/ogre/com/jme3/scene/plugins/ogre/matext/MaterialExtension.java <==
129 ==> engine/src/ogre/com/jme3/scene/plugins/ogre/matext/package.html <==
130 ==> engine/src/ogre/com/jme3/scene/plugins/ogre/matext/MaterialExtensionLoader.java <==
162 ==> engine/src/ogre/com/jme3/scene/plugins/ogre/matext/MaterialExtensionSet.java <==
194 ==> engine/src/ogre/com/jme3/scene/plugins/ogre/matext/OgreMaterialKey.java <==
226 ==> engine/src/ogre/com/jme3/scene/plugins/ogre/MeshAnimationLoader.java <==
258 ==> engine/src/ogre/com/jme3/scene/plugins/ogre/SceneLoader.java <=
    [all...]
  /external/chromium_org/third_party/openssl/openssl/
Crypto-config.mk 273 crypto/engine/eng_all.c \
274 crypto/engine/eng_cnf.c \
275 crypto/engine/eng_ctrl.c \
276 crypto/engine/eng_dyn.c \
277 crypto/engine/eng_err.c \
278 crypto/engine/eng_fat.c \
279 crypto/engine/eng_init.c \
280 crypto/engine/eng_lib.c \
281 crypto/engine/eng_list.c \
282 crypto/engine/eng_pkey.c
    [all...]

Completed in 1125 milliseconds

<<11121314151617181920>>