/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 34 // Used to access common engine functionality 35 private static final Engine ENGINE = new Engine(SERVICE); 81 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null); 135 Object spi = ENGINE.getInstance(algorithm, provider, null);
|
/packages/apps/Browser/tools/ |
get_search_engines.py | 34 # Locales to generate search engine lists for 54 """Inits SearchEngineManager with relevant search engine data. 56 The search engine data is downloaded from the Chrome source repository. 62 print 'Unable to get Chrome source data for search engine list.\nExiting.' 72 Given a string from the search engine data structure, convert it to a 94 """Returns an array of strings describing the specified search engine. 97 except that the internal name of the search engine is inserted at the 104 # Find the first occurance of this search engine name in the form 109 print ('Unable to find data for search engine ' + name + 146 """Returns the list of search engine names for the given country [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
digest.c | 117 #include <openssl/engine.h> 145 int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl) 150 * so this context may already have an ENGINE! Try to avoid releasing 151 * the previous handle, re-querying for an ENGINE, and having a 153 if (ctx->engine && ctx->digest && (!type || 158 /* Ensure an ENGINE left lying around from last time is cleared 160 * ENGINE and EVP_MD could be used). */ 161 if(ctx->engine) 162 ENGINE_finish(ctx->engine); 172 /* Ask if an ENGINE is reserved for this job * [all...] |
evp_enc.c | 65 #include <openssl/engine.h> 103 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, 116 * so this context may already have an ENGINE! Try to avoid releasing 117 * the previous handle, re-querying for an ENGINE, and having a 119 if (ctx->engine && ctx->cipher && (!cipher || 127 * ENGINE and EVP_CIPHER could be used). */ 146 /* Ask if an ENGINE is reserved for this job */ 150 /* There's an ENGINE for this job ... (apparently) */ 161 /* We'll use the ENGINE's private cipher definition */ 163 /* Store the ENGINE functional reference so we kno [all...] |
/external/openssl/crypto/evp/ |
digest.c | 117 #include <openssl/engine.h> 145 int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl) 150 * so this context may already have an ENGINE! Try to avoid releasing 151 * the previous handle, re-querying for an ENGINE, and having a 153 if (ctx->engine && ctx->digest && (!type || 158 /* Ensure an ENGINE left lying around from last time is cleared 160 * ENGINE and EVP_MD could be used). */ 161 if(ctx->engine) 162 ENGINE_finish(ctx->engine); 172 /* Ask if an ENGINE is reserved for this job * [all...] |
evp_enc.c | 65 #include <openssl/engine.h> 103 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, 116 * so this context may already have an ENGINE! Try to avoid releasing 117 * the previous handle, re-querying for an ENGINE, and having a 119 if (ctx->engine && ctx->cipher && (!cipher || 127 * ENGINE and EVP_CIPHER could be used). */ 146 /* Ask if an ENGINE is reserved for this job */ 150 /* There's an ENGINE for this job ... (apparently) */ 161 /* We'll use the ENGINE's private cipher definition */ 163 /* Store the ENGINE functional reference so we kno [all...] |
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
rostermodule_unittest.cc | 167 //! data delivered form the engine to application code. 196 //! added to the store accessable from the engine. 259 static void RunLogin(RosterModuleTest* obj, XmppEngine* engine, 278 talk_base::scoped_ptr<XmppEngine> engine(XmppEngine::Create()); 279 XmppTestHandler handler(engine.get()); 286 roster->RegisterEngine(engine.get()); 289 engine->SetOutputHandler(&handler); 290 engine->AddStanzaHandler(&handler); 291 engine->SetSessionHandler(&handler); 294 engine->SetUser(Jid("david@my-server")) [all...] |
/external/chromium_org/chrome/browser/search_engines/ |
template_url_prepopulate_data.cc | 53 // first. The default will be the first engine. 55 // Default (for countries with no better engine set) 761 // Countries with their own, dedicated engine set. 870 // Countries using the "Australia" engine set. 877 // Countries using the "China" engine set. 881 // Countries using the "Denmark" engine set. 885 // Countries using the "Spain" engine set. 889 // Countries using the "Finland" engine set. 893 // Countries using the "France" engine set. 926 // Countries using the "Greece" engine set 1132 const DictionaryValue* engine; local [all...] |
/external/chromium_org/third_party/icu/source/common/ |
brkeng.h | 50 * <p>Indicate whether this engine handles a particular character for 53 * @param c A character which begins a run that the engine might handle 55 * @return TRUE if this engine handles the particular character and break 64 * iterator is left at the end of the run of characters which the engine 175 * <p>Indicate whether this engine handles a particular character for 178 * @param c A character which begins a run that the engine might handle 180 * @return TRUE if this engine handles the particular character and break 189 * iterator is left at the end of the run of characters which the engine 207 * <p>Tell the engine to handle a particular character and break type.</p> 209 * @param c A character which the engine should handl [all...] |
/external/icu4c/common/ |
brkeng.h | 50 * <p>Indicate whether this engine handles a particular character for 53 * @param c A character which begins a run that the engine might handle 55 * @return TRUE if this engine handles the particular character and break 64 * iterator is left at the end of the run of characters which the engine 175 * <p>Indicate whether this engine handles a particular character for 178 * @param c A character which begins a run that the engine might handle 180 * @return TRUE if this engine handles the particular character and break 189 * iterator is left at the end of the run of characters which the engine 207 * <p>Tell the engine to handle a particular character and break type.</p> 209 * @param c A character which the engine should handl [all...] |
/packages/apps/Settings/src/com/android/settings/tts/ |
TtsEnginePreference.java | 44 * Key for the name of the TTS engine passed in to the engine 50 * Key for the label of the TTS engine passed in to the engine 57 * Key for the voice data data passed in to the engine settings 64 * for instantiating the engine specific settings screen. 69 * The engine information for the engine this preference represents. 142 // Will be enabled only the engine has passed the voice check, and 222 // Should we alert user? if that's true, delay making engine current one [all...] |
/external/chromium_org/sync/ |
sync_tests.gypi | 37 'test/engine/fake_model_worker.cc', 38 'test/engine/fake_model_worker.h', 39 'test/engine/fake_sync_scheduler.cc', 40 'test/engine/fake_sync_scheduler.h', 41 'test/engine/mock_connection_manager.cc', 42 'test/engine/mock_connection_manager.h', 43 'test/engine/test_directory_setter_upper.cc', 44 'test/engine/test_directory_setter_upper.h', 45 'test/engine/test_id_factory.h', 46 'test/engine/test_syncable_utils.cc' [all...] |
/development/samples/TtsEngine/src/com/example/android/ttsengine/ |
CheckVoiceData.java | 71 result = TextToSpeech.Engine.CHECK_VOICE_DATA_FAIL; 75 result = TextToSpeech.Engine.CHECK_VOICE_DATA_MISSING_DATA; 78 result = TextToSpeech.Engine.CHECK_VOICE_DATA_PASS; 85 TextToSpeech.Engine.EXTRA_AVAILABLE_VOICES, available); 87 TextToSpeech.Engine.EXTRA_UNAVAILABLE_VOICES, unavailable); 94 * {@link TextToSpeech.Engine.EXTRA_CHECK_VOICE_DATA_FOR} that might specify 101 TextToSpeech.Engine.EXTRA_CHECK_VOICE_DATA_FOR); 131 * If for example, engine data was downloaded or installed on external storage,
|
/external/apache-http/src/org/apache/http/impl/auth/ |
NTLMScheme.java | 56 private final NTLMEngine engine; field in class:NTLMScheme 61 public NTLMScheme(final NTLMEngine engine) { 63 if (engine == null) { 64 throw new IllegalArgumentException("NTLM engine may not be null"); 66 this.engine = engine; 119 response = this.engine.generateType1Msg( 124 response = this.engine.generateType3Msg(
|
/external/chromium/chrome/browser/ |
omnibox_search_hint.h | 20 // It is displayed when the user visits a known search engine URL and has not 54 // A map containing the URLs of the search engine for which we want to
|
/external/chromium/chrome/browser/search_engines/ |
template_url_prepopulate_data.h | 41 // Returns search engine logo for URLs known to have a search engine logo.
|
util.h | 9 // This file contains utility functions for search engine functionality. 20 // Returns the short name of the default search engine, or the empty string if
|
/external/chromium/chrome/browser/sync/engine/ |
model_changing_syncer_command.cc | 5 #include "chrome/browser/sync/engine/model_changing_syncer_command.h" 8 #include "chrome/browser/sync/engine/model_safe_worker.h"
|
process_updates_command.h | 9 #include "chrome/browser/sync/engine/model_changing_syncer_command.h" 10 #include "chrome/browser/sync/engine/syncer_types.h"
|
store_timestamps_command.h | 9 #include "chrome/browser/sync/engine/syncer_command.h" 10 #include "chrome/browser/sync/engine/syncer_types.h"
|
syncer_command.cc | 5 #include "chrome/browser/sync/engine/syncer_command.h" 7 #include "chrome/browser/sync/engine/net/server_connection_manager.h"
|
/external/chromium/chrome/browser/ui/cocoa/ |
search_engine_dialog_controller.h | 18 // Class that acts as a controller for the search engine choice dialog. 33 // Offered search engine choices.
|
/external/chromium/chrome/browser/ui/search_engines/ |
search_engine_tab_helper.h | 17 // Per-tab search engine manager. Handles dealing search engine processing
|
/external/chromium_org/chrome/browser/chromeos/ |
upgrade_detector_chromeos.h | 23 // engine. 27 // update engine.
|
/external/chromium_org/chrome/browser/ui/search_engines/ |
search_engine_tab_helper.h | 16 // Per-tab search engine manager. Handles dealing search engine processing
|