Home
last modified time | relevance | path

Searched refs:engines (Results 1 – 25 of 315) sorted by relevance

12345678910>>...13

/third_party/curl/docs/libcurl/opts/
DCURLINFO_SSL_ENGINES.md15 CURLINFO_SSL_ENGINES - get an slist of OpenSSL crypto-engines
29 OpenSSL crypto-engines supported. Note that engines are normally implemented
30 in separate dynamic libraries. Hence not all the returned engines may be
47 struct curl_slist *engines;
48 res = curl_easy_getinfo(curl, CURLINFO_SSL_ENGINES, &engines);
49 if((res == CURLE_OK) && engines) {
51 curl_slist_free_all(engines);
/third_party/curl/src/
Dtool_help.c218 struct curl_slist *engines = NULL; in tool_list_engines() local
221 curl_easy_getinfo(curl, CURLINFO_SSL_ENGINES, &engines); in tool_list_engines()
224 if(engines) { in tool_list_engines()
225 for(; engines; engines = engines->next) in tool_list_engines()
226 printf(" %s\n", engines->data); in tool_list_engines()
233 curl_slist_free_all(engines); in tool_list_engines()
/third_party/node/deps/npm/lib/es6/
Dvalidate-engines.js8 const { engines: { node: engines }, version } = require('../../package.json')
15 …s ${node}. This version of npm supports the following node versions: \`${engines}\`. You can find …
18 … ${node}. This version of npm supports the following node versions: \`${engines}\`. You can find …
42 engines, property
/third_party/typescript/tests/baselines/reference/
DjsDeclarationsPackageJson.types3 …rsion: string; description: string; main: string; bin: { cli: string; }; engines: { node: string; …
4 …rsion: string; description: string; main: string; bin: { cli: string; }; engines: { node: string; …
9 …rsion: string; description: string; main: string; bin: { cli: string; }; engines: { node: string; …
10 …rsion: string; description: string; main: string; bin: { cli: string; }; engines: { node: string; …
11 …rsion: string; description: string; main: string; bin: { cli: string; }; engines: { node: string; …
12 …rsion: string; description: string; main: string; bin: { cli: string; }; engines: { node: string; …
13 …rsion: string; description: string; main: string; bin: { cli: string; }; engines: { node: string; …
17engines": { "node": ">=0" }, "scripts": { "scriptname": "run && run again", }, …
44 "engines": {
45 >"engines" : { node: string; }
DjsDeclarationsPackageJson.symbols34 "engines": {
35 >"engines" : Symbol("engines", Decl(package.json, 7, 6))
/third_party/node/deps/openssl/openssl/engines/
Dbuild.info39 GENERATE[padlock.ld]=../util/engines.num
49 GENERATE[capi.ld]=../util/engines.num
59 GENERATE[afalg.ld]=../util/engines.num
69 GENERATE[devcrypto.ld]=../util/engines.num
80 GENERATE[loader_attic.ld]=../util/engines.num
90 GENERATE[dasync.ld]=../util/engines.num
98 GENERATE[ossltest.ld]=../util/engines.num
/third_party/openssl/engines/
Dbuild.info39 GENERATE[padlock.ld]=../util/engines.num
49 GENERATE[capi.ld]=../util/engines.num
59 GENERATE[afalg.ld]=../util/engines.num
69 GENERATE[devcrypto.ld]=../util/engines.num
80 GENERATE[loader_attic.ld]=../util/engines.num
90 GENERATE[dasync.ld]=../util/engines.num
98 GENERATE[ossltest.ld]=../util/engines.num
/third_party/node/deps/openssl/openssl/Configurations/
DREADME-design.md54 `libcrypto`, an module `engines/ossltest` and their sources and
121 # engines/build.info
132 This is the `build.info` file in `engines/`, telling us that two modules
133 called `engines/dasync` and `engines/ossltest` shall be built, that
134 `dasync`'s source is `engines/e_dasync.c` and `ossltest`'s source is
135 `engines/e_ossltest.c` and that the include directory `include/` may
158 MODULES=engines/dasync
159 SOURCE[engines/dasync]=engines/e_dasync.c
160 DEPEND[engines/dasync]=libcrypto
161 INCLUDE[engines/dasync]=include
[all …]
/third_party/openssl/Configurations/
DREADME-design.md54 `libcrypto`, an module `engines/ossltest` and their sources and
121 # engines/build.info
132 This is the `build.info` file in `engines/`, telling us that two modules
133 called `engines/dasync` and `engines/ossltest` shall be built, that
134 `dasync`'s source is `engines/e_dasync.c` and `ossltest`'s source is
135 `engines/e_ossltest.c` and that the include directory `include/` may
158 MODULES=engines/dasync
159 SOURCE[engines/dasync]=engines/e_dasync.c
160 DEPEND[engines/dasync]=libcrypto
161 INCLUDE[engines/dasync]=include
[all …]
/third_party/mesa3d/src/intel/genxml/
Dgen_bits_header.py261 engines = set(attrs['engine'].split('|'))
262 if not engines & self.engines:
325 engines = pargs.engines.split(',')
327 if set(engines) - set(valid_engines):
338 p.engines = set(engines)
Dgen_pack_header.py674 if self.instruction_engines and not self.instruction_engines & self.engines:
752 if pargs.engines is None:
762 engines = pargs.engines.split(',')
764 if set(engines) - set(valid_engines):
771 p.engines = set(engines)
/third_party/openssl/apps/
Dengine.c302 STACK_OF(OPENSSL_CSTRING) *engines = sk_OPENSSL_CSTRING_new_null(); in engine_main()
312 if (engines == NULL || pre_cmds == NULL || post_cmds == NULL) in engine_main()
319 sk_OPENSSL_CSTRING_push(engines, argv1); in engine_main()
373 sk_OPENSSL_CSTRING_push(engines, *argv); in engine_main()
376 if (sk_OPENSSL_CSTRING_num(engines) == 0) { in engine_main()
378 sk_OPENSSL_CSTRING_push(engines, ENGINE_get_id(e)); in engine_main()
383 for (i = 0; i < sk_OPENSSL_CSTRING_num(engines); i++) { in engine_main()
384 const char *id = sk_OPENSSL_CSTRING_value(engines, i); in engine_main()
488 sk_OPENSSL_CSTRING_free(engines); in engine_main()
/third_party/node/deps/openssl/openssl/apps/
Dengine.c302 STACK_OF(OPENSSL_CSTRING) *engines = sk_OPENSSL_CSTRING_new_null(); in engine_main()
312 if (engines == NULL || pre_cmds == NULL || post_cmds == NULL) in engine_main()
319 sk_OPENSSL_CSTRING_push(engines, argv1); in engine_main()
373 sk_OPENSSL_CSTRING_push(engines, *argv); in engine_main()
376 if (sk_OPENSSL_CSTRING_num(engines) == 0) { in engine_main()
378 sk_OPENSSL_CSTRING_push(engines, ENGINE_get_id(e)); in engine_main()
383 for (i = 0; i < sk_OPENSSL_CSTRING_num(engines); i++) { in engine_main()
384 const char *id = sk_OPENSSL_CSTRING_value(engines, i); in engine_main()
488 sk_OPENSSL_CSTRING_free(engines); in engine_main()
/third_party/mesa3d/src/intel/tools/
Derror2aub.c289 } engines[I915_ENGINE_CLASS_VIDEO_ENHANCE + 1]; in main() local
290 memset(engines, 0, sizeof(engines)); in main()
322 &engines[ in main()
329 &engines[ in main()
480 …context[5] = engines[bo_entry->engine_class].instances[bo_entry->engine_instance].ring_buffer_head; in main()
481 …context[7] = engines[bo_entry->engine_class].instances[bo_entry->engine_instance].ring_buffer_tail; in main()
Dintel_noop_drm_shim.c356 num_engines * sizeof(info->engines[0]); in i915_ioctl_query()
368 info->engines[info->num_engines].engine.engine_class = in i915_ioctl_query()
370 info->engines[info->num_engines].engine.engine_instance = e; in i915_ioctl_query()
374 info->engines[info->num_engines].engine.engine_class = in i915_ioctl_query()
376 info->engines[info->num_engines].engine.engine_instance = e; in i915_ioctl_query()
/third_party/mesa3d/src/intel/common/
Dintel_gem.c66 if (info->engines[i].engine.engine_class == engine_class) in intel_gem_count_engines()
127 if (info->engines[*idx].engine.engine_class == engine_class) { in intel_gem_create_context_engines()
128 engine_instance = info->engines[*idx].engine.engine_instance; in intel_gem_create_context_engines()
/third_party/skia/third_party/externals/icu/source/common/
Dbrkeng.cpp136 UStack *engines = new UStack(_deleteEngine, NULL, status); in getEngineFor() local
137 if (U_FAILURE(status) || engines == NULL) { in getEngineFor()
139 delete engines; in getEngineFor()
142 fEngines = engines; in getEngineFor()
/third_party/node/deps/npm/node_modules/@npmcli/run-script/lib/
Dpackage-envs.js26 engines: pkg.engines, property
/third_party/node/deps/npm/test/lib/es6/
Dvalidate-engines.js7 '{ROOT}/package.json': { version: '1.2.3', engines: { node: '>=0' } }, property
25 engines: '>=0', property
/third_party/rust/crates/regex/
DHACKING.md60 All of the above matching engines expose precisely the same matching semantics.
64 matching engines are actually used.
82 matching engines use to execute a search. (One can think of matching engines as
127 matching engine can execute on raw bytes. All matching engines can execute
154 At the time of writing, there are four matching engines in this library:
161 Only the first two matching engines are capable of executing every regular
165 engine (or engines) to use.
204 engines (DFA, bounded backtracker) and sophisticated literal optimizations.
206 than the dynamic engines. The only reason left to use it was for the compile
216 dynamic engines in some cases. But it will be challenging! As of now, there
[all …]
/third_party/openssl/doc/man1/
Dopenssl-engine.pod.in6 openssl-engine - load and query engines
25 This command has been deprecated. Providers should be used instead of engines.
63 Command-line configuration of engines.
110 The path to the engines directory.
/third_party/curl/docs/cmdline-opts/
Dengine.md21 list to print a list of build-time supported engines. Note that not all (and
22 possibly none) of the engines may be available at runtime.
/third_party/mesa3d/include/drm-uapi/
Di915_drm.h2232 struct i915_engine_class_instance engines[0]; member
2241 struct i915_engine_class_instance engines[N__]; \
2270 struct i915_engine_class_instance engines[0]; member
2280 struct i915_engine_class_instance engines[N__]; \
2397 struct i915_engine_class_instance engines[0]; member
2409 struct i915_engine_class_instance engines[N__]; \
2472 struct i915_engine_class_instance engines[0]; member
2477 struct i915_engine_class_instance engines[N__]; \
3231 struct drm_i915_engine_info engines[]; member
/third_party/curl/projects/
Dbuild-openssl.bat592 if exist "%TMP_INSTALL_PATH%\lib\engines-3" (
593 move "%TMP_INSTALL_PATH%\lib\engines-3\*.dll" "%OUTDIR%\DLL Debug" 1>nul
594 move "%TMP_INSTALL_PATH%\lib\engines-3\*.pdb" "%OUTDIR%\DLL Debug" 1>nul
595 ) else if exist "%TMP_INSTALL_PATH%\lib\engines-1_1" (
596 move "%TMP_INSTALL_PATH%\lib\engines-1_1\*.dll" "%OUTDIR%\DLL Debug" 1>nul
597 move "%TMP_INSTALL_PATH%\lib\engines-1_1\*.pdb" "%OUTDIR%\DLL Debug" 1>nul
623 if exist "%TMP_INSTALL_PATH%\lib\engines-3" (
624 move "%TMP_INSTALL_PATH%\lib\engines-3\*.dll" "%OUTDIR%\DLL Release" 1>nul
625 move "%TMP_INSTALL_PATH%\lib\engines-3\*.pdb" "%OUTDIR%\DLL Release" 1>nul
626 ) else if exist "%TMP_INSTALL_PATH%\lib\engines-1_1" (
[all …]
/third_party/node/deps/npm/test/lib/commands/
Dinstall.js194 await t.test('npm i -g npm engines check failure', async t => {
230 await t.test('npm i -g npm engines check failure forced override', async t => {
258 await t.test('npm i -g npm@version engines check failure', async t => {

12345678910>>...13