Searched refs:engine (Results 1 - 25 of 187) sorted by relevance

12345678

/macosx-10.9.5/OpenSSH-186/osslshim/ossl/
H A Dossl-engine.c63 #include "ossl-engine.h"
90 ENGINE *engine; local
92 engine = calloc(1, sizeof(*engine));
93 engine->references = 1;
95 return (engine);
100 ENGINE_free(ENGINE *engine) argument
102 return (ENGINE_finish(engine));
107 ENGINE_finish(ENGINE *engine) argument
109 if (engine
136 ENGINE_up_ref(ENGINE *engine) argument
147 ENGINE_set_id(ENGINE *engine, const char *id) argument
155 ENGINE_set_name(ENGINE *engine, const char *name) argument
163 ENGINE_set_DSA(ENGINE *engine, const DSA_METHOD *method) argument
171 ENGINE_set_RSA(ENGINE *engine, const RSA_METHOD *method) argument
179 ENGINE_set_DH(ENGINE *engine, const DH_METHOD *method) argument
195 ENGINE_get_id(const ENGINE *engine) argument
202 ENGINE_get_name(const ENGINE *engine) argument
209 ENGINE_get_DSA(const ENGINE *engine) argument
216 ENGINE_get_RSA(const ENGINE *engine) argument
223 ENGINE_get_DH(const ENGINE *engine) argument
230 ENGINE_get_RAND(const ENGINE *engine) argument
274 add_engine(ENGINE *engine) argument
304 ENGINE *engine; local
481 ENGINE *engine; local
[all...]
H A Dossl-rand.c154 ENGINE *engine = selected_engine; local
162 if (engine) {
163 ENGINE_finish(engine);
250 * Set the default random method from engine.
252 * @param engine use engine, if NULL is passed it, old method and engine is cleared.
258 RAND_set_rand_engine(ENGINE *engine) argument
262 if (engine) {
263 ENGINE_up_ref(engine);
[all...]
H A Dossl-dh.c93 * Create a new DH object from the given engine, if the NULL is used,
94 * the default engine is used. Free the DH object with DH_free().
96 * @param engine The engine to use to allocate the DH object.
102 DH_new_method(ENGINE *engine) argument
113 if (engine) {
114 ENGINE_up_ref(engine);
115 dh->engine = engine;
117 dh->engine
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/
H A Dengine.c40 #include <engine.h>
62 ENGINE *engine; local
64 engine = calloc(1, sizeof(*engine));
65 engine->references = 1;
67 return engine;
71 ENGINE_free(ENGINE *engine) argument
73 return ENGINE_finish(engine);
77 ENGINE_finish(ENGINE *engine) argument
79 if (engine
100 ENGINE_up_ref(ENGINE *engine) argument
109 ENGINE_set_id(ENGINE *engine, const char *id) argument
116 ENGINE_set_name(ENGINE *engine, const char *name) argument
123 ENGINE_set_RSA(ENGINE *engine, const RSA_METHOD *method) argument
130 ENGINE_set_DH(ENGINE *engine, const DH_METHOD *method) argument
144 ENGINE_get_id(const ENGINE *engine) argument
150 ENGINE_get_name(const ENGINE *engine) argument
156 ENGINE_get_RSA(const ENGINE *engine) argument
162 ENGINE_get_DH(const ENGINE *engine) argument
168 ENGINE_get_RAND(const ENGINE *engine) argument
210 add_engine(ENGINE *engine) argument
230 ENGINE *engine; local
322 ENGINE *engine; local
[all...]
H A Dtest_engine_dso.c41 #include <engine.h>
118 "selects the engine id", "engine-id" },
144 ENGINE *engine = NULL; local
169 engine = ENGINE_by_id("builtin");
171 engine = ENGINE_by_dso(argv[0], id_flag);
173 if (engine == NULL)
176 printf("name: %s\n", ENGINE_get_name(engine));
177 printf("id: %s\n", ENGINE_get_id(engine));
178 have_rsa = ENGINE_get_RSA(engine) !
[all...]
H A Dtest_rsa.c41 #include <engine.h>
67 "selects the engine id", "engine-id" },
158 read_key(ENGINE *engine, const char *rsakey) argument
183 RSA_set_method(rsa, ENGINE_get_RSA(engine));
208 ENGINE *engine = NULL; local
235 engine = ENGINE_by_id("builtin");
237 engine = ENGINE_by_id(argv[0]);
238 if (engine == NULL)
239 engine
[all...]
H A Drand.c128 ENGINE *engine = selected_engine; local
135 if (engine)
136 ENGINE_finish(engine);
229 * Set the default random method from engine.
231 * @param engine use engine, if NULL is passed it, old method and engine is cleared.
239 RAND_set_rand_engine(ENGINE *engine) argument
243 if (engine) {
244 ENGINE_up_ref(engine);
[all...]
H A Ddh.c71 * Create a new DH object from the given engine, if the NULL is used,
72 * the default engine is used. Free the DH object with DH_free().
74 * @param engine The engine to use to allocate the DH object.
82 DH_new_method(ENGINE *engine) argument
92 if (engine) {
93 ENGINE_up_ref(engine);
94 dh->engine = engine;
96 dh->engine
[all...]
/macosx-10.9.5/Security-55471.14.18/authd/
H A Dengine.c3 #include "engine.h"
39 #pragma mark engine creation
79 engine_t engine = (engine_t)value; local
81 CFReleaseSafe(engine->mechanism_agents);
82 CFReleaseSafe(engine->conn);
83 CFReleaseSafe(engine->auth);
84 CFReleaseSafe(engine->hints);
85 CFReleaseSafe(engine->context);
86 CFReleaseSafe(engine->immutable_hints);
87 CFReleaseSafe(engine
119 engine_t engine = NULL; local
242 _set_session_hints(engine_t engine, rule_t rule) argument
264 _evaluate_credential_for_rule(engine_t engine, credential_t cred, rule_t rule, bool ignoreShared, bool sessionOwner, enum Reason * reason) argument
287 _evaluate_user_credential_for_rule(engine_t engine, credential_t cred, rule_t rule, bool ignoreShared, bool sessionOwner, enum Reason * reason) argument
366 _get_agent(engine_t engine, mechanism_t mech, bool create, bool firstMech) argument
380 _evaluate_builtin_mechanism(engine_t engine, mechanism_t mech) argument
399 _evaluate_mechanisms(engine_t engine, CFArrayRef mechanisms) argument
505 _evaluate_authentication(engine_t engine, rule_t rule) argument
596 _check_entitlement_for_rule(engine_t engine, rule_t rule) argument
629 _evaluate_class_user(engine_t engine, rule_t rule) argument
723 _evaluate_class_rule(engine_t engine, rule_t rule) argument
767 _evaluate_class_mechanism(engine_t engine, rule_t rule) argument
833 _evaluate_rule(engine_t engine, rule_t rule) argument
869 _find_rule(engine_t engine, authdb_connection_t dbconn, const char * string) argument
923 _parse_enviroment(engine_t engine, auth_items_t enviroment) argument
961 _verify_sandbox(engine_t engine, const char * right) argument
981 engine_authorize(engine_t engine, auth_rights_t rights, auth_items_t enviroment, AuthorizationFlags flags) argument
1167 _wildcard_right_exists(engine_t engine, const char * right) argument
1209 engine_verify_modification(engine_t engine, rule_t rule, bool remove, bool force_modify) argument
1259 _engine_set_credential(engine_t engine, credential_t cred, bool shared) argument
1271 engine_get_granted_rights(engine_t engine) argument
1276 engine_get_time(engine_t engine) argument
1281 engine_destroy_agents(engine_t engine) argument
1294 engine_interrupt_agent(engine_t engine) argument
[all...]
H A Dconnection.c6 #include "engine.h"
14 engine_t engine; member in struct:_connection_s
31 CFReleaseNull(conn->engine);
88 void connection_set_engine(connection_t conn, engine_t engine) argument
91 if (engine) {
92 CFReleaseNull(conn->engine);
93 conn->engine = (engine_t)CFRetain(engine);
95 CFReleaseNull(conn->engine);
103 if (conn->engine) {
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A Dloengine.cpp31 le_close(le_engine *engine) argument
33 LayoutEngine *le = (LayoutEngine *) engine;
39 le_layoutChars(le_engine *engine, argument
49 LayoutEngine *le = (LayoutEngine *) engine;
60 le_getGlyphCount(le_engine *engine, argument
63 LayoutEngine *le = (LayoutEngine *) engine;
74 le_getGlyphs(le_engine *engine, argument
78 LayoutEngine *le = (LayoutEngine *) engine;
89 le_getCharIndices(le_engine *engine, argument
93 LayoutEngine *le = (LayoutEngine *) engine;
104 le_getCharIndicesWithBase(le_engine *engine, le_int32 charIndices[], le_int32 indexBase, LEErrorCode *success) argument
120 le_getGlyphPositions(le_engine *engine, float positions[], LEErrorCode *success) argument
135 le_getGlyphPosition(le_engine *engine, le_int32 glyphIndex, float *x, float *y, LEErrorCode *success) argument
152 le_reset(le_engine *engine, LEErrorCode *success) argument
[all...]
H A Dloengine.h63 * @param engine - the LayoutEngine to close.
68 le_close(le_engine *engine);
73 * @param engine - the LayoutEngine
95 le_layoutChars(le_engine *engine,
110 * @param engine - the LayoutEngine
118 le_getGlyphCount(le_engine *engine,
126 * @param engine - the LayoutEngine
133 le_getGlyphs(le_engine *engine,
142 * @param engine - the LayoutEngine
149 le_getCharIndices(le_engine *engine,
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/
H A Dyaml.rb2 # The YAML module is an alias of Psych, the YAML engine for ruby.
32 # You may still use the Syck engine by installing
34 def yamler= engine # :nodoc:
35 case engine
39 raise(ArgumentError, "bad engine")
42 engine
/macosx-10.9.5/ruby-104/ruby/test/openssl/
H A Dtest_engine.rb17 engine = OpenSSL::Engine.load("openssl")
18 assert_equal(true, engine)
23 engine = get_engine
24 assert_not_nil(engine)
29 engine = get_engine
30 assert_equal("openssl", engine.id)
31 assert_not_nil(engine.name)
32 assert_not_nil(engine.inspect)
36 engine = get_engine
37 digest = engine
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/samples/layout/
H A DGnomeFontMap.cpp20 GnomeFontMap::GnomeFontMap(FT_Library engine, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status) argument
21 : FontMap(fileName, pointSize, guiSupport, status), fEngine(engine)
H A Dgnomeglue.cpp52 fm_fontMap *fm_gnomeFontMapOpen(FT_Library engine, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status) argument
54 return (fm_fontMap *) new GnomeFontMap(engine, fileName, pointSize, (GnomeGUISupport *) guiSupport, *status);
H A DGnomeFontMap.h27 GnomeFontMap(FT_Library engine, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy/lib/HTTP/Proxy/
H A DEngine.pm19 my $engine = delete $params{engine};
20 $engine = $engines{$^O} || $engines{default}
21 unless defined $engine;
23 $class = "HTTP::Proxy::Engine::$engine";
34 # so we are an actual engine
70 HTTP::Proxy::Engine - Generic child process manager engine for HTTP::Proxy
76 # use the default engine for your system
80 my $proxy = HTTP::Proxy->new( engine => 'Old' );
85 engine classe
[all...]
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy-0.25/lib/HTTP/Proxy/
H A DEngine.pm19 my $engine = delete $params{engine};
20 $engine = $engines{$^O} || $engines{default}
21 unless defined $engine;
23 $class = "HTTP::Proxy::Engine::$engine";
34 # so we are an actual engine
70 HTTP::Proxy::Engine - Generic child process manager engine for HTTP::Proxy
76 # use the default engine for your system
80 my $proxy = HTTP::Proxy->new( engine => 'Old' );
85 engine classe
[all...]
/macosx-10.9.5/OpenSSH-186/osslshim/tests/
H A Dtest_engine_dso.c41 #include "cs-engine.h"
118 "selects the engine id", "engine-id" },
144 ENGINE *engine = NULL; local
169 engine = ENGINE_by_id("builtin");
171 engine = ENGINE_by_dso(argv[0], id_flag);
173 if (engine == NULL)
176 printf("name: %s\n", ENGINE_get_name(engine));
177 printf("id: %s\n", ENGINE_get_id(engine));
178 have_rsa = ENGINE_get_RSA(engine) !
[all...]
/macosx-10.9.5/Security-55471.14.18/sec/SOSCircle/SecureObjectSync/
H A DSOSEngine.h9 secure object syncing engine
34 Currently we support keychains, but the engine should scale to
60 // Create a new engine instance for a given datasource.
63 // Dispose of an engine when it's no longer needed.
64 void SOSEngineDispose(SOSEngineRef engine);
67 bool SOSEngineHandleMessage(SOSEngineRef engine, SOSPeerRef peer,
71 bool SOSEngineSyncWithPeer(SOSEngineRef engine, SOSPeerRef peer, bool force,
75 CFDataRef SOSEngineCreateManifestDigestMessage(SOSEngineRef engine, SOSPeerRef peer, CFErrorRef *error);
76 CFDataRef SOSEngineCreateManifestMessage(SOSEngineRef engine, SOSPeerRef peer, CFErrorRef *error);
77 CFDataRef SOSEngineCreateManifestAndObjectsMessage(SOSEngineRef engine, SOSPeerRe
[all...]
/macosx-10.9.5/WebKit-7537.78.2/qt/declarative/
H A Dplugin.cpp45 virtual void initializeEngine(QQmlEngine* engine, const char* uri) argument
48 engine->addImageProvider(QLatin1String("webicon"), new QWebIconImageProvider);
/macosx-10.9.5/securityd-55199.3/tests/
H A DAZNTest.cpp67 Engine engine("/tmp/config.plist");
74 OSStatus result = engine.authorize(inputRights, NULL,
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy/lib/HTTP/Proxy/Engine/
H A DNoFork.pm37 HTTP::Proxy::Engine::NoFork - A basic, non forking HTTP::Proxy engine
42 my $proxy = HTTP::Proxy->new( engine => 'NoFork' );
46 The HTTP::Proxy::Engine::NoFork engine runs the proxy with forking.
56 Initialise the engine.
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy-0.25/lib/HTTP/Proxy/Engine/
H A DNoFork.pm37 HTTP::Proxy::Engine::NoFork - A basic, non forking HTTP::Proxy engine
42 my $proxy = HTTP::Proxy->new( engine => 'NoFork' );
46 The HTTP::Proxy::Engine::NoFork engine runs the proxy with forking.
56 Initialise the engine.

Completed in 379 milliseconds

12345678