| /third_party/flatbuffers/ |
| D | pnpm-lock.yaml | 31 engines: {node: '>=0.10.0'} 36 engines: {node: '>=12'} 45 engines: {node: '>=12'} 54 engines: {node: '>=12'} 63 engines: {node: '>=12'} 72 engines: {node: '>=12'} 81 engines: {node: '>=12'} 90 engines: {node: '>=12'} 99 engines: {node: '>=12'} 108 engines: {node: '>=12'} [all …]
|
| /third_party/grpc/test/core/security/ |
| D | grpc_authorization_policy_provider_test.cc | 39 auto engines = (*provider)->engines(); in TEST() local 41 dynamic_cast<GrpcAuthorizationEngine*>(engines.allow_engine.get()); in TEST() 46 dynamic_cast<GrpcAuthorizationEngine*>(engines.deny_engine.get()); in TEST() 67 auto engines = (*provider)->engines(); in TEST() local 69 dynamic_cast<GrpcAuthorizationEngine*>(engines.allow_engine.get()); in TEST() 74 dynamic_cast<GrpcAuthorizationEngine*>(engines.deny_engine.get()); in TEST() 96 auto engines = (*provider)->engines(); in TEST() local 98 dynamic_cast<GrpcAuthorizationEngine*>(engines.allow_engine.get()); in TEST() 103 dynamic_cast<GrpcAuthorizationEngine*>(engines.deny_engine.get()); in TEST() 124 engines = (*provider)->engines(); in TEST() [all …]
|
| /third_party/typescript/ |
| D | package-lock.json | 57 "engines": { object 65 "engines": { object 78 "engines": { object 97 "engines": { object 113 "engines": { object 139 "engines": { object 147 "engines": { object 159 "engines": { object 168 "engines": { object 186 "engines": { object [all …]
|
| /third_party/skia/m133/ |
| D | package-lock.json | 19 "engines": { object 51 "engines": { object 59 "engines": { object 70 "engines": { object 85 "engines": { object 98 "engines": { object 106 "engines": { object 126 "engines": { object 146 "engines": { object 154 "engines": { object [all …]
|
| /third_party/curl/docs/libcurl/opts/ |
| D | CURLINFO_SSL_ENGINES.md | 19 CURLINFO_SSL_ENGINES - get an slist of OpenSSL crypto-engines 33 OpenSSL crypto-engines supported. Note that engines are normally implemented 34 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/openssl/Configurations/ |
| D | README-design.md | 54 `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/tex-hyphen/tests/lib/ |
| D | tex.rb | 5 attr_reader :dir, :path, :file, :engines, :output, :latex_class, :switches accessor in TeXRunner 20 @engines = @@formats.keys.clone 40 engines.include?(engine.downcase) 44 @engines = [engine.downcase] 47 def set_engines(engines) argument 48 @engines = engines.map(&:downcase) 52 @engines.delete(engine.downcase) 61 @engines.each do |engine| 118 @engines.each do |engine| 219 @engines.each do |engine|
|
| /third_party/typescript/tests/baselines/reference/ |
| D | jsDeclarationsPackageJson.types | 3 …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; … 17 …engines": { "node": ">=0" }, "scripts": { "scriptname": "run && run again", }, … 44 "engines": { 45 >"engines" : { node: string; }
|
| /third_party/openssl/engines/ |
| D | build.info | 39 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/curl/src/ |
| D | tool_help.c | 228 struct curl_slist *engines = NULL; in tool_list_engines() local 230 /* Get the list of engines */ in tool_list_engines() 231 curl_easy_getinfo(curl, CURLINFO_SSL_ENGINES, &engines); in tool_list_engines() 233 puts("Build-time engines:"); in tool_list_engines() 234 if(engines) { in tool_list_engines() 235 for(; engines; engines = engines->next) in tool_list_engines() 236 printf(" %s\n", engines->data); in tool_list_engines() 242 /* Cleanup the list of engines */ in tool_list_engines() 243 curl_slist_free_all(engines); in tool_list_engines()
|
| /third_party/openssl/crypto/engine/ |
| D | README.md | 1 Notes on engines of 2001-09-24 52 hooking in ENGINEs is that multiple ENGINEs may implement the same ciphers. The 96 ENGINE code will return NULL because no ENGINEs will have had any cipher 123 if ENGINEs implement *all* possible algorithms, an application using only 131 mostly to avoid a lot of "init()"-thrashing on ENGINEs (that may have to load 137 pointers to ENGINEs that implement that particular 'nid'. Each "pile" uses some 141 that an application could have support for 10 ENGINEs statically linked 143 ENGINEs support. If each of those ENGINEs has a "des_cbc" implementation, we 145 each of those 10 ENGINEs. Instead, the first such request will try to do that 153 ENGINE_set_table_flags(), in which case the only ENGINEs that tb_cipher.c will [all …]
|
| /third_party/openssl/ |
| D | README-ENGINES.md | 1 Engines chapter 16 via providers, and existing engines should be converted to providers 54 based input to those ENGINEs, in the form of name-value pairs. This is an 55 extensible way for ENGINEs to define their own "configuration" mechanisms 64 with the various compiled-in ENGINEs (see further down for dynamic 65 ENGINEs), use the "engine" openssl utility with full verbosity, i.e.: 83 the vendors of the devices these ENGINEs support have contributed to the 130 DYNAMIC ENGINES 160 independent things. Other ENGINEs typically don't do this so there is 176 multiple ENGINEs, but if you know the engine id you expect to be using, [all …]
|
| /third_party/skia/modules/canvaskit/ |
| D | package-lock.json | 52 "engines": { object 64 "engines": { object 88 "engines": { object 108 "engines": { object 242 "engines": { object 282 "engines": { object 308 "engines": { object 345 "engines": { object 354 "engines": { object 366 "engines": { object [all …]
|
| /third_party/rust/rust/src/tools/rust-analyzer/editors/code/ |
| D | package-lock.json | 33 "engines": { object 49 "engines": { object 69 "engines": { object 97 "engines": { object 106 "engines": { object 129 "engines": { object 138 "engines": { object 151 "engines": { object 160 "engines": { object 204 "engines": { object [all …]
|
| /third_party/parse5/ |
| D | package-lock.json | 48 "engines": { object 61 "engines": { object 74 "engines": { object 87 "engines": { object 99 "engines": { object 113 "engines": { object 137 "engines": { object 146 "engines": { object 158 "engines": { object 167 "engines": { object [all …]
|
| /third_party/css-what/ |
| D | package-lock.json | 24 "engines": { object 39 "engines": { object 48 "engines": { object 74 "engines": { object 96 "engines": { object 110 "engines": { object 119 "engines": { object 134 "engines": { object 160 "engines": { object 172 "engines": { object [all …]
|
| /third_party/mesa3d/src/nouveau/vulkan/ |
| D | nvk_queue.c | 104 if (queue->engines & NVKMD_ENGINE_COMPUTE) { in nvk_queue_state_update() 114 if (queue->engines & NVKMD_ENGINE_3D) { in nvk_queue_state_update() 126 if (queue->engines & NVKMD_ENGINE_COMPUTE) { in nvk_queue_state_update() 136 if (queue->engines & NVKMD_ENGINE_3D) { in nvk_queue_state_update() 154 if (queue->engines & NVKMD_ENGINE_COMPUTE) { in nvk_queue_state_update() 172 if (queue->engines & NVKMD_ENGINE_3D) { in nvk_queue_state_update() 185 if (queue->engines & NVKMD_ENGINE_COMPUTE) { in nvk_queue_state_update() 457 if (queue->engines & NVKMD_ENGINE_3D) { in nvk_queue_init_context_state() 463 if (queue->engines & NVKMD_ENGINE_COMPUTE) { in nvk_queue_init_context_state() 520 queue->engines = 0; in nvk_queue_init() [all …]
|
| /third_party/openssl/doc/man1/ |
| D | openssl-engine.pod.in | 6 openssl-engine - load and query engines 25 This command has been deprecated. Providers should be used instead of engines. 29 Engines may be specified before and after all other command-line flags. 63 Command-line configuration of engines. 92 DIR_ADD: Adds a directory from which ENGINEs can be loaded 110 The path to the engines directory.
|
| /third_party/mesa3d/src/util/ |
| D | driconf_static.py | 74 self.engines = [] 80 self.engines.append(Engine(engine)) 142 const struct driconf_engine *engines; 156 % for engine in device.engines: 160 %if len(device.engines) > 0: 162 % for engine in device.engines: 211 .num_engines = ${len(device.engines)}, 212 % if len(device.engines) > 0: 213 .engines = ${device.cname}_engines,
|
| /third_party/openssl/VMS/ |
| D | openssl_startup.com.in | 18 $ ! OSSL$ENGINESnnn Where the engines modules are located 29 $ ! or that depend on engines. 34 $ ! OSSL$ENGINES Alias for OSSL$ENGINESnnn 100 $ DEF OSSL$ENGINES'sv''pz' OSSL$INSTROOT:[ENGINES'sv''pz'.'arch'] 114 $ DEF OSSL$ENGINES'pz' OSSL$ENGINES'sv''pz'
|
| /third_party/skia/m133/experimental/tskit/ |
| D | package-lock.json | 53 "engines": { object 67 "engines": { object 91 "engines": { object 103 "engines": { object 144 "engines": { object 156 "engines": { object 168 "engines": { object 181 "engines": { object 190 "engines": { object 203 "engines": { object [all …]
|
| /third_party/skia/experimental/tskit/ |
| D | package-lock.json | 53 "engines": { object 67 "engines": { object 91 "engines": { object 103 "engines": { object 144 "engines": { object 156 "engines": { object 168 "engines": { object 181 "engines": { object 190 "engines": { object 203 "engines": { object [all …]
|
| /third_party/rust/crates/regex/ |
| D | HACKING.md | 60 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/grpc/src/core/lib/security/authorization/ |
| D | grpc_server_authz_filter.cc | 73 grpc_authorization_policy_provider::AuthorizationEngines engines = in IsAuthorized() local 74 provider_->engines(); in IsAuthorized() 75 if (engines.deny_engine != nullptr) { in IsAuthorized() 77 engines.deny_engine->Evaluate(args); in IsAuthorized() 85 if (engines.allow_engine != nullptr) { in IsAuthorized() 87 engines.allow_engine->Evaluate(args); in IsAuthorized()
|
| /third_party/libdrm/include/drm/ |
| D | i915_drm.h | 160 * Different engines serve different roles, and there may be more than one 163 * on a certain subset of engines, or for providing information about that 170 * Render engines support instructions used for 3D, Compute (GPGPU), 181 * Copy engines (also referred to as "blitters") support instructions 184 * Copy engines can perform pre-defined logical or bitwise operations 192 * Video engines (also referred to as "bit stream decode" (BSD) or 201 * Video enhancement engines (also referred to as "vebox") support 209 * Compute engines support a subset of the instructions available 210 * on render engines: compute engines support Compute (GPGPU) and 696 * value reports the support of context isolation for individual engines by [all …]
|