Home
last modified time | relevance | path

Searched +full:- +full:provider +full:- +full:path (Results 1 – 25 of 275) sorted by relevance

1234567891011

/third_party/openssl/doc/man3/
DOSSL_PROVIDER.pod13 - provider routines
17 #include <openssl/provider.h>
22 const char *path);
30 int (*cb)(OSSL_PROVIDER *provider, void *cbdata),
59 implementation providers (see L<provider(7)> for information on what a
60 provider is).
61 A provider can be built in to the application or the OpenSSL
70 OSSL_PROVIDER_set_default_search_path() specifies the default search I<path>
75 OSSL_PROVIDER_add_builtin() is used to add a built in provider to
77 provider name with a provider initialization function.
[all …]
/third_party/gstreamer/gstplugins_bad/sys/mediafoundation/
Dgstmfdevice.c17 * Boston, MA 02110-1301, USA.
80 dev_class->create_element = gst_mf_device_create_element; in gst_mf_device_class_init()
82 gobject_class->get_property = gst_mf_device_get_property; in gst_mf_device_class_init()
83 gobject_class->set_property = gst_mf_device_set_property; in gst_mf_device_class_init()
84 gobject_class->finalize = gst_mf_device_finalize; in gst_mf_device_class_init()
87 g_param_spec_string ("device-path", "Device Path", in gst_mf_device_class_init()
88 "The device path", NULL, in gst_mf_device_class_init()
102 g_free (self->device_path); in gst_mf_device_finalize()
104 G_OBJECT_CLASS (gst_mf_device_parent_class)->finalize (object); in gst_mf_device_finalize()
115 g_object_set (elem, "device-path", self->device_path, NULL); in gst_mf_device_create_element()
[all …]
/third_party/openssl/crypto/
Dprovider_conf.c2 * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
15 #include <openssl/provider.h>
16 #include "internal/provider.h"
22 /* PROVIDER config module */
36 pcgbl->lock = CRYPTO_THREAD_lock_new(); in prov_conf_ossl_ctx_new()
37 if (pcgbl->lock == NULL) { in prov_conf_ossl_ctx_new()
49 sk_OSSL_PROVIDER_pop_free(pcgbl->activated_providers, in prov_conf_ossl_ctx_free()
53 CRYPTO_THREAD_lock_free(pcgbl->lock); in prov_conf_ossl_ctx_free()
58 /* Must be freed before the provider store is freed */
87 OSSL_TRACE1(CONF, "Provider params: start section %s\n", value); in provider_conf_params()
[all …]
Dprovider_core.c2 * Copyright 2019-2022 The OpenSSL Project Authors. All Rights Reserved.
14 #include <openssl/provider.h>
27 #include "internal/provider.h"
40 * single instance of a provider.
49 * provider that registered those callbacks.
52 * provider store. Each provider that exists in the parent provider store, has
53 * an associated child provider in the child library context's provider store.
74 * The provider flag_lock: Used to control updates to the various provider
78 * The provider refcnt_lock: Only ever used to control updates to the provider
81 * The provider optbits_lock: Used to control access to the provider's
[all …]
/third_party/openssl/doc/internal/man3/
Dossl_provider_new.pod23 - internal provider routines
27 #include "internal/provider.h"
39 int ossl_provider_set_module_path(OSSL_PROVIDER *prov, const char *path);
53 * Activate the Provider
54 * If the Provider is a module, the module will be loaded
61 /* Return pointer to the provider's context */
68 int (*cb)(OSSL_PROVIDER *provider,
79 /* Thin wrappers around calls to the provider */
94 int ossl_provider_set_operation_bit(OSSL_PROVIDER *provider, size_t bitnum);
95 int ossl_provider_test_operation_bit(OSSL_PROVIDER *provider, size_t bitnum,
[all …]
/third_party/gstreamer/gstplugins_good/sys/v4l2/
Dgstv4l2deviceprovider.c18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
34 #include "v4l2-utils.h"
52 static GList *gst_v4l2_device_provider_probe (GstDeviceProvider * provider);
55 static gboolean gst_v4l2_device_provider_start (GstDeviceProvider * provider);
56 static void gst_v4l2_device_provider_stop (GstDeviceProvider * provider);
66 dm_class->probe = gst_v4l2_device_provider_probe; in gst_v4l2_device_provider_class_init()
69 dm_class->start = gst_v4l2_device_provider_start; in gst_v4l2_device_provider_class_init()
70 dm_class->stop = gst_v4l2_device_provider_stop; in gst_v4l2_device_provider_class_init()
73 gobject_class->finalize = gst_v4l2_device_provider_finalize; in gst_v4l2_device_provider_class_init()
[all …]
/third_party/gstreamer/gstplugins_bad/sys/uvch264/
Dgstuvch264deviceprovider.c18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
23 * SECTION:provider-uvch264deviceprovider
25 * Device provider for uvch264 devices, it basically contains
26 * the same information as the v4l2 device provider but on top
31 * device.is-camerasrc=TRUE
47 /* *INDENT-OFF* */
56 /* *INDENT-ON* */
69 g_value_set_string (value, self->device_path); in gst_uvc_h264_device_get_property()
84 g_object_set (elem, "device", self->device_path, NULL); in gst_uvc_h264_device_create_element()
[all …]
/third_party/rust/crates/rust-openssl/openssl/src/
Dprovider.rs13 pub struct Provider;
14 /// A reference to a [`Provider`].
23 impl Provider { impl
24 /// Loads a new provider into the specified library context, disabling the fallback providers.
26 /// If `ctx` is `None`, the provider will be loaded in to the default library context.
28 pub fn load(ctx: Option<&LibCtxRef>, name: &str) -> Result<Self, ErrorStack> { in load()
36 Ok(Provider::from_ptr(p)) in load()
40 …/// Loads a new provider into the specified library context, disabling the fallback providers if `…
43 /// If `ctx` is `None`, the provider will be loaded into the default library context.
49 ) -> Result<Self, ErrorStack> { in try_load()
[all …]
/third_party/gstreamer/gstplugins_bad/sys/winks/
Dksdeviceprovider.c18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
52 static GList *gst_ks_device_provider_probe (GstDeviceProvider * provider);
53 static gboolean gst_ks_device_provider_start (GstDeviceProvider * provider);
54 static void gst_ks_device_provider_stop (GstDeviceProvider * provider);
61 dm_class->probe = gst_ks_device_provider_probe; in gst_ks_device_provider_class_init()
62 dm_class->start = gst_ks_device_provider_start; in gst_ks_device_provider_class_init()
63 dm_class->stop = gst_ks_device_provider_stop; in gst_ks_device_provider_class_init()
66 "KernelStreaming Device Provider", "Sink/Source/Audio/Video", in gst_ks_device_provider_class_init()
84 g_assert (info->path != NULL); in new_video_source()
[all …]
/third_party/openssl/.github/workflows/
Dfips-old.yml8 name: Provider old versions compat
15 fips-provider-validation:
20 dir: openssl-3.0.0,
21 tgz: openssl-3.0.0.tar.gz,
22 url: "https://www.openssl.org/source/old/3.0/openssl-3.0.0.tar.gz"
25 runs-on: ubuntu-latest
27 - name: create directory
29 - uses: actions/checkout@v2
31 path: current
32 - name: download module source
[all …]
/third_party/gstreamer/gstplugins_bad/ext/mdns/
Dgstmicrodnsdevice.c16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
37 * contexts at any given time, if the provider is started and stopped in
39 * with the other N - 1 in the process of stopping (stop == true).
47 GstDeviceProvider *provider; member
74 if (a->last_seen < b->last_seen) in cmp_last_seen()
75 return -1; in cmp_last_seen()
76 if (a->last_seen == b->last_seen) in cmp_last_seen()
93 g_free (self->uri); in gst_mdns_device_finalize()
95 G_OBJECT_CLASS (gst_mdns_device_parent_class)->finalize (object); in gst_mdns_device_finalize()
[all …]
/third_party/openssl/apps/lib/
Dapp_provider.c2 * Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
13 #include <openssl/provider.h>
16 /* Non-zero if any of the provider options have been seen */
39 opt_printf_stderr("%s: unable to load provider %s\n" in app_provider_load()
40 … "Hint: use -provider-path option or OPENSSL_MODULES environment variable.\n", in app_provider_load()
61 static int opt_provider_path(const char *path) in opt_provider_path() argument
63 if (path != NULL && *path == '\0') in opt_provider_path()
64 path = NULL; in opt_provider_path()
65 return OSSL_PROVIDER_set_default_search_path(app_get0_libctx(), path); in opt_provider_path()
/third_party/skia/third_party/externals/jinja2/
Dloaders.py1 # -*- coding: utf-8 -*-
9 from os import path
22 """Split a path into segments and perform a sanity check. If it detects
23 '..' in the path it will raise a `TemplateNotFound` error.
28 path.sep in piece
29 or (path.altsep and path.altsep in piece)
30 or piece == path.pardir
48 from os.path import join, exists, getmtime
52 def __init__(self, path):
53 self.path = path
[all …]
/third_party/node/tools/inspector_protocol/jinja2/
Dloaders.py1 # -*- coding: utf-8 -*-
15 from os import path
23 """Split a path into segments and perform a sanity check. If it detects
24 '..' in the path it will raise a `TemplateNotFound` error.
28 if path.sep in piece \
29 or (path.altsep and path.altsep in piece) or \
30 piece == path.pardir:
47 from os.path import join, exists, getmtime
51 def __init__(self, path):
52 self.path = path
[all …]
/third_party/openssl/doc/man5/
Dconfig.pod5 config - OpenSSL CONF library configuration files
26 is the first non-space character in a line, the entire line is ignored.
45 available on systems with POSIX IO support.) Any sub-directories found
50 As a general rule, the B<pathname> should be an absolute path; this can
76 B<true> or B<on>, then C<foo$bar> is a single seven-character name nad
121 In order to support this, commands like L<openssl-req(1)> ignore any
194 ... provider stuff here ...
231 OPENSSL_CONF=example.cnf openssl asn1parse -genstr OID:1.2.3.4.1
239 =head2 Provider Configuration
242 containing cryptographic provider configuration. The name/value assignments
[all …]
/third_party/openssl/doc/man7/
Dfips_module.pod5 fips_module - OpenSSL fips module guide
41 All of the above APIs are deprecated in OpenSSL 3.0 - so a simple rule is to
60 $ openssl version -d
64 to not have the correct version of OpenSSL in your $PATH. Check that you are
67 $ openssl version -v
68 OpenSSL 3.0.0-dev xx XXX xxxx (Library: OpenSSL 3.0.0-dev xx XXX xxxx)
91 Obviously the include file location above should match the path and name of the
93 See L<https://github.com/openssl/openssl/blob/master/README-FIPS.md>.
96 enabled to prevent accidental use of non-FIPS validated algorithms via broken
102 also activates the "base" provider. The base provider does not include any
[all …]
/third_party/cef/include/wrapper/
Dcef_resource_manager.h30 // ---------------------------------------------------------------------------
54 // provider in order, or (c) stop handling the request. See comments on the
63 // Provides an opportunity to modify |url| before it is passed to a provider.
95 // call to Provider::OnRequest and will become detached (meaning the callbacks
97 // A request passed to Provider::OnRequestCanceled will already have been
143 // Continue handling the request. If |handler| is non-NULL then no
146 // then the next provider in order, if any, will be called. If there are no
175 // Will be non-NULL while the request is pending. Only accessed on the
186 // Interface implemented by resource providers. A provider may be created on
190 class Provider {
[all …]
/third_party/openssl/doc/
Dperlvars.pm2 # Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
15 . "[B<-allow_proxy_certs>]\n"
16 . "[B<-attime> I<timestamp>]\n"
17 . "[B<-no_check_time>]\n"
18 . "[B<-check_ss_sig>]\n"
19 . "[B<-crl_check>]\n"
20 . "[B<-crl_check_all>]\n"
21 . "[B<-explicit_policy>]\n"
22 . "[B<-extended_crl>]\n"
23 . "[B<-ignore_critical>]\n"
[all …]
/third_party/openssl/test/recipes/
D80-test_pkcs12.t2 # Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
24 # makes it problematic to pass non-ASCII arguments, from perl[!]
27 # system default locale. Since we attempt Greek pass-phrase
30 Win32::API->Import("kernel32","UINT GetSystemDefaultLCID()");
32 plan skip_all => "Non-Greek system locale";
35 Win32::API->Import("kernel32","UINT GetConsoleOutputCP()");
36 Win32::API->Import("kernel32","BOOL SetConsoleOutputCP(UINT cp)");
39 $pass = Encode::encode("cp1253",Encode::decode("utf-8",$pass));
45 # UTF-8 locale...
47 foreach(`locale -a`) {
[all …]
/third_party/openssl/include/openssl/
Dprovider.h2 * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
20 /* Set the default provider search path */
21 int OSSL_PROVIDER_set_default_search_path(OSSL_LIB_CTX *, const char *path);
23 /* Load and unload a provider */
30 int (*cb)(OSSL_PROVIDER *provider, void *cbdata),
/third_party/icu/tools/multi/proj/provider/
Dreadme.txt6 # Copyright (c) 2009-2012 IBM Corp. and Others. All Rights Reserved
8 # ICU Provider Feature. - $Id$
16 http://source.icu-project.org/repos/icu/icu/branches/srl/ucol8157 at
20 the provider interface). As of this writing, 49, 4.8.1.1, 4.6.x, 4.4.x, 4.2.0.1, 3.8.1, 3.6, 3.4.1…
28 2a. Copy the file "Makefile.local-sample" into a new file "Makefile.local".
35 to the installed ICU path. You must still set PROVIDER_TARGET.
39 ICU Provider Build
40 Targetting Provider against ICU 49 (49, major 49)
43 ...@provider=icu38
44 ...@provider=icu42
[all …]
/third_party/libbpf/src/
Dusdt.c1 // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
24 /* libbpf's USDT support consists of BPF-side state/code and user-space
25 * state/code working together in concert. BPF-side parts are defined in
26 * usdt.bpf.h header library. User-space state is encapsulated by struct
30 * and IP-to-spec-ID map, which is auxiliary map necessary for kernels that
38 * USDT-related until the very first call to bpf_program__attach_usdt(), which
42 * store it in bpf_object. USDT manager is per-BPF object construct, as each
44 * the expected USDT-related state. There is no coordination between two
46 * existence and libbpf is just oblivious, dealing with bpf_object-specific
51 * From user-space application's point of view, USDT is essentially just
[all …]
/third_party/openssl/doc/man1/
Dopenssl.pod5 openssl - OpenSSL command line program
14 B<openssl> B<no->I<XXX> [ I<options> ]
43 (e.g., L<openssl-x509(1)>). The subcommand L<openssl-list(1)> may be used to list
46 The command B<no->I<XXX> tests whether a command of the
48 returns 0 (success) and prints B<no->I<XXX>; otherwise it returns 1
53 availability of ciphers in the B<openssl> program. (B<no->I<XXX> is
54 not able to detect pseudo-commands such as B<quit>,
55 B<list>, or B<no->I<XXX> itself.)
60 arguments and have a B<-config> option to specify that file.
62 storage area, which can be determined from the L<openssl-version(1)>
[all …]
/third_party/cef/libcef_dll/wrapper/
Dcef_resource_manager.cc2 // reserved. Use of this source code is governed by a BSD-style license that
47 // Default no-op filter.
52 // Provider of fixed contents.
53 class ContentProvider : public CefResourceManager::Provider {
69 const std::string& url = request->url(); in OnRequest()
71 // Not handled by this provider. in OnRequest()
81 mime_type_ = request->mime_type_resolver().Run(url); in OnRequest()
83 request->Continue(new CefStreamResourceHandler(mime_type_, stream)); in OnRequest()
93 // Provider of contents loaded from a directory on the file system.
94 class DirectoryProvider : public CefResourceManager::Provider {
[all …]
/third_party/cef/tests/cefclient/browser/
Dtest_runner.cc2 // reserved. Use of this source code is governed by a BSD-style license that
53 CefRefPtr<CefClient> client = browser->GetHost()->GetClient(); in LoadStringResourcePage()
55 client_handler->SetStringResource(page, data); in LoadStringResourcePage()
56 browser->GetMainFrame()->LoadURL(kTestOrigin + page); in LoadStringResourcePage()
95 browser->GetMainFrame()->GetSource(new Visitor(browser)); in RunGetSourceTest()
116 browser->GetMainFrame()->GetText(new Visitor(browser)); in RunGetTextTest()
123 if (browser->GetMainFrame()->GetURL().ToString().find("http://tests/") != 0) { in RunRequestTest()
134 request->SetURL("http://tests/request"); in RunRequestTest()
136 // Add post data to the request. The correct method and content- in RunRequestTest()
140 postDataElement->SetToBytes(data.length(), data.c_str()); in RunRequestTest()
[all …]

1234567891011