HomeSort by relevance Sort by last modified time
    Searched full:engine (Results 51 - 75 of 3414) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/apps/Browser/src/com/android/browser/search/
SearchEngine.java 27 // Used if the search engine is Google
31 * Gets the unique name of this search engine.
36 * Gets the human-readable name of this search engine.
51 * Checks whether this search engine supports search suggestions.
56 * Closes this search engine.
61 * Checks whether this search engine should be sent zero char query.
  /external/chromium_org/third_party/openssl/openssl/crypto/engine/
eng_list.c 1 /* crypto/engine/eng_list.c */
66 /* The linked-list of pointers to engine types. engine_list_head
71 * "prev" pointer in each ENGINE is to save excessive list iteration,
76 static ENGINE *engine_list_head = NULL;
77 static ENGINE *engine_list_tail = NULL;
84 ENGINE *iterator = engine_list_head;
96 static int engine_list_add(ENGINE *e)
99 ENGINE *iterator = NULL;
147 /* Having the engine in the list assumes a structural
157 static int engine_list_remove(ENGINE *e
    [all...]
README 7 the "ENGINE" code. So it serves a double purpose of being a "ENGINE internals
49 into ENGINE is storage - the OBJ_NAME-based storage used by EVP to register
53 solution is necessarily that ENGINE-provided ciphers simply are not registered,
55 especially necessary considering the fact ENGINE uses reference counts to allow
59 Another sticking point for integrating cipher support into ENGINE is linkage.
60 Already there is a problem with the way ENGINE supports RSA, DSA, etc whereby
61 they are available *because* they're part of a giant ENGINE called "openssl".
62 Ie. all implementations *have* to come from an ENGINE, but we get round that by
63 having a giant ENGINE with all the software support encapsulated. This create
    [all...]
eng_int.h 1 /* crypto/engine/eng_int.h */
68 /* Take public definitions from engine.h */
69 #include <openssl/engine.h>
76 * ENGINE structure will be monitored with a line of output on stderr for each
77 * change. This prints the engine's pointer address (truncated to unsigned int),
84 fprintf(stderr, "engine: %08x %s from %d to %d (%s:%d)\n", \
110 DECLARE_STACK_OF(ENGINE)
121 ENGINE *e, const int *nids, int num_nids, int setdefault);
122 void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e);
125 ENGINE *engine_table_select(ENGINE_TABLE **table, int nid)
    [all...]
  /external/openssl/crypto/engine/
eng_list.c 1 /* crypto/engine/eng_list.c */
66 /* The linked-list of pointers to engine types. engine_list_head
71 * "prev" pointer in each ENGINE is to save excessive list iteration,
76 static ENGINE *engine_list_head = NULL;
77 static ENGINE *engine_list_tail = NULL;
84 ENGINE *iterator = engine_list_head;
96 static int engine_list_add(ENGINE *e)
99 ENGINE *iterator = NULL;
147 /* Having the engine in the list assumes a structural
157 static int engine_list_remove(ENGINE *e
    [all...]
README 7 the "ENGINE" code. So it serves a double purpose of being a "ENGINE internals
49 into ENGINE is storage - the OBJ_NAME-based storage used by EVP to register
53 solution is necessarily that ENGINE-provided ciphers simply are not registered,
55 especially necessary considering the fact ENGINE uses reference counts to allow
59 Another sticking point for integrating cipher support into ENGINE is linkage.
60 Already there is a problem with the way ENGINE supports RSA, DSA, etc whereby
61 they are available *because* they're part of a giant ENGINE called "openssl".
62 Ie. all implementations *have* to come from an ENGINE, but we get round that by
63 having a giant ENGINE with all the software support encapsulated. This create
    [all...]
eng_int.h 1 /* crypto/engine/eng_int.h */
68 /* Take public definitions from engine.h */
69 #include <openssl/engine.h>
76 * ENGINE structure will be monitored with a line of output on stderr for each
77 * change. This prints the engine's pointer address (truncated to unsigned int),
84 fprintf(stderr, "engine: %08x %s from %d to %d (%s:%d)\n", \
110 DECLARE_STACK_OF(ENGINE)
121 ENGINE *e, const int *nids, int num_nids, int setdefault);
122 void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e);
125 ENGINE *engine_table_select(ENGINE_TABLE **table, int nid)
    [all...]
  /external/chromium_org/chromeos/ime/
gen_input_methods.py 86 engines: list of engine objects
88 The text of a C++ header file containing the engine data.
92 for engine in engines:
93 if engine.has_key('if'):
94 output.append(CPP_FORMAT % engine['if'])
95 output.append(ENGINE_FORMAT % engine)
96 if engine.has_key('if'):
114 engine = {}
115 engine['input_method_id'] = columns[0]
116 engine['xkb_layout_id'] = columns[1
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
module.h 37 //! An engine is registered with the module and the module then hooks the
38 //! appropriate parts of the engine to implement that set of features. It is
39 //! important to unregister modules before destructing the engine.
44 //! Register the engine with the module. Only one engine can be associated
46 //! already an engine registered.
47 virtual XmppReturnStatus RegisterEngine(XmppEngine* engine) = 0;
moduleimpl.h 37 //! An engine is registered with the module and the module then hooks the
38 //! appropriate parts of the engine to implement that set of features. It is
39 //! important to unregister modules before destructing the engine.
45 //! Register the engine with the module. Only one engine can be associated
47 //! already an engine registered.
48 XmppReturnStatus RegisterEngine(XmppEngine* engine);
50 //! Gets the engine that this module is attached to.
51 XmppEngine* engine();
62 //! to hook into and get stanzas and events from the engine
    [all...]
xmppengine_unittest.cc 50 XmppEngine* engine() { return engine_.get(); } function in class:XmppEngineTest
79 EXPECT_EQ(XmppEngine::STATE_START, engine()->GetState());
80 engine()->Connect();
81 EXPECT_EQ(XmppEngine::STATE_OPENING, engine()->GetState());
93 engine()->HandleInput(input.c_str(), input.length());
105 engine()->HandleInput(input.c_str(), input.length());
113 engine()->HandleInput(input.c_str(), input.length());
125 engine()->HandleInput(input.c_str(), input.length());
134 engine()->HandleInput(input.c_str(), input.length());
147 engine()->HandleInput(input.c_str(), input.length())
    [all...]
  /libcore/luni/src/test/native/
test_openssl_engine.cpp 24 #include <openssl/engine.h>
30 #define TEST_ENGINE_NAME "libcore test engine"
42 static EVP_PKEY *test_load_key(ENGINE* e, const char *key_id,
64 rsa->engine = e;
72 static EVP_PKEY* test_load_privkey(ENGINE* e, const char* key_id, UI_METHOD*, void*) {
76 static EVP_PKEY* test_load_pubkey(ENGINE* e, const char* key_id, UI_METHOD*, void*) {
84 static int pkey_meths(ENGINE*, EVP_PKEY_METHOD** meth, const int** nids, int nid) {
100 static int test_engine_setup(ENGINE* e) {
114 static int test_engine_bind_fn(ENGINE *e, const char *id) {
  /external/libcxx/test/numerics/rand/rand.adapt/rand.adapt.disc/
ctor_engine_move.pass.cpp 12 // template<class Engine, size_t p, size_t r>
15 // explicit discard_block_engine(const Engine& e);
23 typedef std::ranlux24_base Engine;
25 Engine e;
26 Engine e0 = e;
  /external/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
ctor_engine_copy.pass.cpp 12 // template<class Engine, size_t w, class UIntType>
15 // explicit independent_bits_engine(const Engine& e);
23 typedef std::mt19937 Engine;
24 typedef std::independent_bits_engine<Engine, 24, unsigned> Adaptor;
25 Engine e;
  /external/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
ctor_engine_move.pass.cpp 12 // template<class Engine, size_t k>
15 // explicit shuffle_order_engine(const Engine& e);
23 typedef std::minstd_rand0 Engine;
25 Engine e;
26 Engine e0 = e;
  /external/svox/pico/lib/
picoctrl.h 66 picoctrl_Engine engine,
72 picoctrl_Engine engine,
78 picoctrl_Engine engine,
90 picoctrl_Engine engine
94 picoctrl_Engine engine
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.disc/
ctor_engine_move.pass.cpp 12 // template<class Engine, size_t p, size_t r>
15 // explicit discard_block_engine(const Engine& e);
23 typedef std::ranlux24_base Engine;
25 Engine e;
26 Engine e0 = e;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
ctor_engine_copy.pass.cpp 12 // template<class Engine, size_t w, class UIntType>
15 // explicit independent_bits_engine(const Engine& e);
23 typedef std::mt19937 Engine;
24 typedef std::independent_bits_engine<Engine, 24, unsigned> Adaptor;
25 Engine e;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
ctor_engine_move.pass.cpp 12 // template<class Engine, size_t k>
15 // explicit shuffle_order_engine(const Engine& e);
23 typedef std::minstd_rand0 Engine;
25 Engine e;
26 Engine e0 = e;
  /frameworks/wilhelm/tests/sandbox/
engine.c 26 printf("Get number of available engine interfaces\n");
34 printf("Engine number of supported interfaces %u\n", numSupportedInterfaces);
59 printf("Create an engine and request all available interfaces\n");
62 printf("Create engine with numSupportedInterfaces > 0 but NULL pointers\n");
71 printf("Create engine with no place to return the new engine object\n");
75 printf("Create engine with NULL interface pointer\n");
82 printf("Create an engine with numOptions > 0 but NULL pointer\n");
90 printf("Create engine with non-sensical option\n");
95 printf("Create an engine and require non-sensical volume interface\n")
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
search_engine_manager_browsertest.js 6 * TestFixture for search engine manager WebUI testing.
16 * Browse to the search engine manager.
29 // Test opening the search engine manager has correct location.
  /external/chromium_org/sync/engine/
directory_commit_contributor.cc 5 #include "sync/engine/directory_commit_contributor.h"
7 #include "sync/engine/directory_commit_contribution.h"
  /external/chromium_org/third_party/freetype/include/freetype/internal/services/
svtteng.h 5 /* The FreeType TrueType engine query service (specification). */
33 #define FT_SERVICE_ID_TRUETYPE_ENGINE "truetype-engine"
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLEngine.java 31 /** The ENGINE's native handle. */
34 public static OpenSSLEngine getInstance(String engine) throws IllegalArgumentException {
35 if (engine == null) {
36 throw new NullPointerException("engine == null");
41 engineCtx = NativeCrypto.ENGINE_by_id(engine);
43 throw new IllegalArgumentException("Unknown ENGINE id: " + engine);
57 throw new IllegalArgumentException("Could not initialize engine");
  /external/freetype/include/internal/services/
svtteng.h 5 /* The FreeType TrueType engine query service (specification). */
33 #define FT_SERVICE_ID_TRUETYPE_ENGINE "truetype-engine"

Completed in 942 milliseconds

1 23 4 5 6 7 8 91011>>