Home
last modified time | relevance | path

Searched refs:provider (Results 1 – 25 of 646) sorted by relevance

12345678910>>...26

/third_party/gstreamer/gstreamer/gst/
Dgstdeviceprovider.c162 gst_device_provider_init (GstDeviceProvider * provider) in gst_device_provider_init() argument
164 provider->priv = gst_device_provider_get_instance_private (provider); in gst_device_provider_init()
166 g_mutex_init (&provider->priv->start_lock); in gst_device_provider_init()
168 provider->priv->started_count = 0; in gst_device_provider_init()
170 provider->priv->bus = gst_bus_new (); in gst_device_provider_init()
171 gst_bus_set_flushing (provider->priv->bus, TRUE); in gst_device_provider_init()
178 GstDeviceProvider *provider = GST_DEVICE_PROVIDER (object); in gst_device_provider_dispose() local
180 gst_object_replace ((GstObject **) & provider->priv->bus, NULL); in gst_device_provider_dispose()
182 GST_OBJECT_LOCK (provider); in gst_device_provider_dispose()
183 g_list_free_full (provider->devices, (GDestroyNotify) gst_object_unparent); in gst_device_provider_dispose()
[all …]
Dgstdevicemonitor.c136 provider_hidden (GstDeviceProvider * provider, const gchar * hidden,
140 provider_unhidden (GstDeviceProvider * provider, const gchar * hidden,
228 GstDeviceProvider * provider) in is_provider_hidden() argument
235 factory = gst_device_provider_get_factory (provider); in is_provider_hidden()
245 update_hidden_providers_list (GList ** hidden, GstDeviceProvider * provider) in update_hidden_providers_list() argument
249 obs = gst_device_provider_get_hidden_providers (provider); in update_hidden_providers_list()
270 GstDeviceProvider *provider; in bus_sync_message() local
280 provider = in bus_sync_message()
282 if (is_provider_hidden (monitor, monitor->priv->hidden, provider)) { in bus_sync_message()
302 gst_object_unref (provider); in bus_sync_message()
[all …]
Dgstdeviceprovider.h174 GList* (*probe) (GstDeviceProvider * provider);
176 gboolean (*start) (GstDeviceProvider * provider);
177 void (*stop) (GstDeviceProvider * provider);
191 GList * gst_device_provider_get_devices (GstDeviceProvider * provider);
194 gboolean gst_device_provider_start (GstDeviceProvider * provider);
197 void gst_device_provider_stop (GstDeviceProvider * provider);
200 gboolean gst_device_provider_can_monitor (GstDeviceProvider * provider);
203 GstBus * gst_device_provider_get_bus (GstDeviceProvider * provider);
206 void gst_device_provider_device_add (GstDeviceProvider * provider,
209 void gst_device_provider_device_remove (GstDeviceProvider * provider,
[all …]
/third_party/typescript/tests/baselines/reference/
DinnerAliases2.types17 import provider = _provider;
18 >provider : typeof provider
19 >_provider : typeof provider
21 var g:provider.UsefulClass= null;
22 >g : provider.UsefulClass
23 >provider : any
26 function use():provider.UsefulClass {
27 >use : () => provider.UsefulClass
28 >provider : any
30 var p2:provider.UsefulClass= new provider.UsefulClass();
[all …]
DenumDeclarationEmitInitializerHasImport.symbols2 import provider = require('./provider');
3 >provider : Symbol(provider, Decl(consumer.ts, 0, 0))
5 export const value = provider.Enum.Value1;
7 >provider.Enum.Value1 : Symbol(provider.Enum.Value1, Decl(provider.ts, 0, 18))
8 >provider.Enum : Symbol(provider.Enum, Decl(provider.ts, 0, 0))
9 >provider : Symbol(provider, Decl(consumer.ts, 0, 0))
10 >Enum : Symbol(provider.Enum, Decl(provider.ts, 0, 0))
11 >Value1 : Symbol(provider.Enum.Value1, Decl(provider.ts, 0, 18))
13 === tests/cases/compiler/provider.ts ===
15 >Enum : Symbol(Enum, Decl(provider.ts, 0, 0))
[all …]
DinnerAliases2.symbols17 import provider = _provider;
18 >provider : Symbol(provider, Decl(innerAliases2.ts, 7, 17))
19 >_provider : Symbol(provider, Decl(innerAliases2.ts, 0, 0))
21 var g:provider.UsefulClass= null;
23 >provider : Symbol(provider, Decl(innerAliases2.ts, 7, 17))
24 >UsefulClass : Symbol(provider.UsefulClass, Decl(innerAliases2.ts, 0, 18))
26 function use():provider.UsefulClass {
28 >provider : Symbol(provider, Decl(innerAliases2.ts, 7, 17))
29 >UsefulClass : Symbol(provider.UsefulClass, Decl(innerAliases2.ts, 0, 18))
31 var p2:provider.UsefulClass= new provider.UsefulClass();
[all …]
DenumDeclarationEmitInitializerHasImport.types2 import provider = require('./provider');
3 >provider : typeof provider
5 export const value = provider.Enum.Value1;
6 >value : provider.Enum.Value1
7 >provider.Enum.Value1 : provider.Enum.Value1
8 >provider.Enum : typeof provider.Enum
9 >provider : typeof provider
10 >Enum : typeof provider.Enum
11 >Value1 : provider.Enum.Value1
13 === tests/cases/compiler/provider.ts ===
DinnerAliases2.js10 import provider = _provider;
12 var g:provider.UsefulClass= null;
14 function use():provider.UsefulClass {
15 var p2:provider.UsefulClass= new provider.UsefulClass();
36 var provider = _provider;
39 var p2 = new provider.UsefulClass();
/third_party/libphonenumber/cpp/test/phonenumbers/geocoding/
Dmapping_file_provider_test.cc67 MappingFileProvider provider(country_calling_codes, in TEST() local
72 EXPECT_EQ("1_en", provider.GetFileName(1, "en", "", "", &filename)); in TEST()
73 EXPECT_EQ("1_en", provider.GetFileName(1, "en", "", "US", &filename)); in TEST()
74 EXPECT_EQ("1_en", provider.GetFileName(1, "en", "", "GB", &filename)); in TEST()
75 EXPECT_EQ("41_de", provider.GetFileName(41, "de", "", "CH", &filename)); in TEST()
76 EXPECT_EQ("", provider.GetFileName(44, "en", "", "GB", &filename)); in TEST()
77 EXPECT_EQ("86_zh", provider.GetFileName(86, "zh", "", "", &filename)); in TEST()
78 EXPECT_EQ("86_zh", provider.GetFileName(86, "zh", "Hans", "", &filename)); in TEST()
79 EXPECT_EQ("86_zh", provider.GetFileName(86, "zh", "", "CN", &filename)); in TEST()
80 EXPECT_EQ("", provider.GetFileName(86, "", "", "CN", &filename)); in TEST()
[all …]
/third_party/openssl/doc/man3/
DOSSL_PROVIDER.pod13 - provider routines
17 #include <openssl/provider.h>
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
75 OSSL_PROVIDER_add_builtin() is used to add a built in provider to
77 provider name with a provider initialization function.
80 OSSL_PROVIDER_load() loads and initializes a provider.
81 This may simply initialize a provider that was previously added with
[all …]
/third_party/openssl/
DREADME-PROVIDERS.md5 - [The Default Provider](#the-default-provider)
6 - [The Legacy Provider](#the-legacy-provider)
7 - [The FIPS Provider](#the-fips-provider)
8 - [The Base Provider](#the-base-provider)
9 - [The Null Provider](#the-null-provider)
16 algorithm is used via the high level APIs a provider is selected. It is that
17 provider implementation that actually does the required work. There are five
20 Documentation about writing providers is available on the [provider(7)]
23 [provider(7)]: https://www.openssl.org/docs/man3.0/man7/provider.html
28 The default provider collects together all of the standard built-in OpenSSL
[all …]
/third_party/node/deps/openssl/openssl/
DREADME-PROVIDERS.md5 - [The Default Provider](#the-default-provider)
6 - [The Legacy Provider](#the-legacy-provider)
7 - [The FIPS Provider](#the-fips-provider)
8 - [The Base Provider](#the-base-provider)
9 - [The Null Provider](#the-null-provider)
16 algorithm is used via the high level APIs a provider is selected. It is that
17 provider implementation that actually does the required work. There are five
20 Documentation about writing providers is available on the [provider(7)]
23 [provider(7)]: https://www.openssl.org/docs/man3.0/man7/provider.html
28 The default provider collects together all of the standard built-in OpenSSL
[all …]
/third_party/openssl/doc/internal/man3/
Dossl_provider_new.pod23 - internal provider routines
27 #include "internal/provider.h"
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,
106 to handle a provider, regardless of if it's built in to the
107 application or the OpenSSL libraries, or if it's a loadable provider
109 Instances of this type are commonly referred to as "provider objects".
[all …]
/third_party/openssl/doc/man7/
Dprovider.pod5 provider - OpenSSL operation implementation providers
11 #include <openssl/provider.h>
17 This page contains information useful to provider authors.
19 A I<provider>, in OpenSSL terms, is a unit of code that provides one
36 A I<provider> offers an initialization function, as a set of base
51 I<handle> is the OpenSSL library object for the provider, and works
53 the provider.
54 For the provider itself, it is passed to some of the functions given in the
59 L<provider-base(7)>.
62 provider offers to the OpenSSL libraries.
[all …]
Dprovider-kem.pod5 provider-kem - The kem library E<lt>-E<gt> provider functions
44 This documentation is primarily aimed at provider authors. See L<provider(7)>
53 F<libcrypto> and the provider in L<OSSL_DISPATCH(3)> arrays via
54 L<OSSL_ALGORITHM(3)> arrays that are returned by the provider's
56 (see L<provider-base(7)/Provider Functions>).
88 In order to be a consistent set of functions a provider must implement
100 See L<provider-keymgmt(7)> for further details.
104 OSSL_FUNC_kem_newctx() should create and return a pointer to a provider side
108 The parameter I<provctx> is the provider context generated during provider
109 initialisation (see L<provider(7)>).
[all …]
/third_party/gstreamer/gstplugins_good/sys/v4l2/
Dgstv4l2deviceprovider.c52 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);
82 gst_v4l2_device_provider_init (GstV4l2DeviceProvider * provider) in gst_v4l2_device_provider_init() argument
85 g_cond_init (&provider->started_cond); in gst_v4l2_device_provider_init()
93 GstV4l2DeviceProvider *provider = GST_V4L2_DEVICE_PROVIDER (object); in gst_v4l2_device_provider_finalize() local
95 g_cond_clear (&provider->started_cond); in gst_v4l2_device_provider_finalize()
102 gst_v4l2_device_provider_probe_device (GstV4l2DeviceProvider * provider, in gst_v4l2_device_provider_probe_device() argument
119 v4l2obj = gst_v4l2_object_new (NULL, GST_OBJECT (provider), in gst_v4l2_device_provider_probe_device()
202 gst_v4l2_device_provider_probe (GstDeviceProvider * provider) in gst_v4l2_device_provider_probe() argument
[all …]
/third_party/node/src/res/
Dnode_etw_provider.man7 <provider name="NodeJS-ETW-provider"
10 message="$(string.NodeJS-ETW-provider.name)"
94 message="$(string.NodeJS-ETW-provider.event.1.message)"
100 message="$(string.NodeJS-ETW-provider.event.2.message)"
106 message="$(string.NodeJS-ETW-provider.event.3.message)"
112 message="$(string.NodeJS-ETW-provider.event.4.message)"
118 message="$(string.NodeJS-ETW-provider.event.5.message)"
124 message="$(string.NodeJS-ETW-provider.event.6.message)"
130 message="$(string.NodeJS-ETW-provider.event.7.message)"
136 message="$(string.NodeJS-ETW-provider.event.8.message)"
[all …]
/third_party/skia/third_party/externals/angle2/src/android_system_settings/src/com/android/angle/common/
DSearchProvider.java19 import static android.provider.SearchIndexablesContract.COLUMN_INDEX_RAW_INTENT_ACTION;
20 import static android.provider.SearchIndexablesContract.COLUMN_INDEX_RAW_INTENT_TARGET_CLASS;
21 import static android.provider.SearchIndexablesContract.COLUMN_INDEX_RAW_INTENT_TARGET_PACKAGE;
22 import static android.provider.SearchIndexablesContract.COLUMN_INDEX_RAW_KEY;
23 import static android.provider.SearchIndexablesContract.COLUMN_INDEX_RAW_KEYWORDS;
24 import static android.provider.SearchIndexablesContract.COLUMN_INDEX_RAW_SUMMARY_ON;
25 import static android.provider.SearchIndexablesContract.COLUMN_INDEX_RAW_TITLE;
26 import static android.provider.SearchIndexablesContract.INDEXABLES_RAW_COLUMNS;
27 import static android.provider.SearchIndexablesContract.NON_INDEXABLES_KEYS_COLUMNS;
33 import android.provider.SearchIndexablesProvider;
[all …]
/third_party/skia/third_party/externals/icu/fuzzers/
Dicu_appendable_fuzzer.cc31 FuzzedDataProvider provider(data, size); in LLVMFuzzerTestOneInput() local
33 provider.ConsumeRandomLengthString(kMaxInitialSize))); in LLVMFuzzerTestOneInput()
36 while (provider.remaining_bytes() > 0) { in LLVMFuzzerTestOneInput()
37 switch (provider.ConsumeEnum<AppendableApi>()) { in LLVMFuzzerTestOneInput()
39 strAppendable.appendCodeUnit(provider.ConsumeIntegral<char16_t>()); in LLVMFuzzerTestOneInput()
42 strAppendable.appendCodePoint(provider.ConsumeIntegral<UChar32>()); in LLVMFuzzerTestOneInput()
46 provider.ConsumeRandomLengthString(kMaxAppendLength)); in LLVMFuzzerTestOneInput()
57 provider.ConsumeIntegralInRange<int32_t>(0, kMaxReserveSize)); in LLVMFuzzerTestOneInput()
62 provider.ConsumeIntegralInRange<int32_t>(1, kScratchBufSize); in LLVMFuzzerTestOneInput()
65 min_capacity + provider.ConsumeIntegralInRange<int32_t>( in LLVMFuzzerTestOneInput()
/third_party/node/deps/openssl/openssl/crypto/
Dcore_algorithm.c42 static int algorithm_do_map(OSSL_PROVIDER *provider, const OSSL_ALGORITHM *map, in algorithm_do_map() argument
56 } else if (!data->pre(provider, cur_operation, no_store, data->data, in algorithm_do_map()
77 data->fn(provider, thismap, no_store, data->data); in algorithm_do_map()
84 } else if (!data->post(provider, cur_operation, no_store, data->data, in algorithm_do_map()
102 static int algorithm_do_this(OSSL_PROVIDER *provider, void *cbdata) in algorithm_do_this() argument
120 map = ossl_provider_query_operation(provider, cur_operation, in algorithm_do_this()
122 ret = algorithm_do_map(provider, map, cur_operation, no_store, data); in algorithm_do_this()
123 ossl_provider_unquery_operation(provider, cur_operation, map); in algorithm_do_this()
138 OSSL_PROVIDER *provider, in ossl_algorithm_do_all() argument
142 void (*fn)(OSSL_PROVIDER *provider, in ossl_algorithm_do_all() argument
[all …]
/third_party/openssl/crypto/
Dcore_algorithm.c42 static int algorithm_do_map(OSSL_PROVIDER *provider, const OSSL_ALGORITHM *map, in algorithm_do_map() argument
56 } else if (!data->pre(provider, cur_operation, no_store, data->data, in algorithm_do_map()
77 data->fn(provider, thismap, no_store, data->data); in algorithm_do_map()
84 } else if (!data->post(provider, cur_operation, no_store, data->data, in algorithm_do_map()
102 static int algorithm_do_this(OSSL_PROVIDER *provider, void *cbdata) in algorithm_do_this() argument
120 map = ossl_provider_query_operation(provider, cur_operation, in algorithm_do_this()
122 ret = algorithm_do_map(provider, map, cur_operation, no_store, data); in algorithm_do_this()
123 ossl_provider_unquery_operation(provider, cur_operation, map); in algorithm_do_this()
138 OSSL_PROVIDER *provider, in ossl_algorithm_do_all() argument
142 void (*fn)(OSSL_PROVIDER *provider, in ossl_algorithm_do_all() argument
[all …]
/third_party/mesa3d/src/gallium/auxiliary/pipebuffer/
Dpb_bufmgr_cache.c63 struct pb_manager *provider; member
185 if (buf->mgr->provider->is_buffer_busy) { in pb_cache_can_reclaim_buffer()
186 if (buf->mgr->provider->is_buffer_busy(buf->mgr->provider, buf->buffer)) in pb_cache_can_reclaim_buffer()
221 buf->buffer = mgr->provider->create_buffer(mgr->provider, size, desc); in pb_cache_manager_create_buffer()
226 buf->buffer = mgr->provider->create_buffer(mgr->provider, size, desc); in pb_cache_manager_create_buffer()
258 assert(mgr->provider->flush); in pb_cache_manager_flush()
259 if(mgr->provider->flush) in pb_cache_manager_flush()
260 mgr->provider->flush(mgr->provider); in pb_cache_manager_flush()
288 pb_cache_manager_create(struct pb_manager *provider, in pb_cache_manager_create() argument
296 if (!provider) in pb_cache_manager_create()
[all …]
/third_party/node/test/addons/openssl-providers/
Dproviders.cjs15 // and hash algorithms are only provided by the named provider. These are for
17 // supported by the provider.
47 function testProviderPresent(provider) {
48 debug(`Checking '${provider}' is present`);
49 assertArrayIncludes(getProviders(), provider, 'Loaded providers');
50 for (const cipher of providers[provider].ciphers || []) {
54 for (const hash of providers[provider].hashes || []) {
61 function testProviderAbsent(provider) {
62 debug(`Checking '${provider}' is absent`);
63 assertArrayDoesNotInclude(getProviders(), provider, 'Loaded providers');
[all …]
/third_party/gstreamer/gstplugins_bad/sys/mediafoundation/
Dgstmfdevice.c170 static GList *gst_mf_device_provider_probe (GstDeviceProvider * provider);
171 static gboolean gst_mf_device_provider_start (GstDeviceProvider * provider);
172 static void gst_mf_device_provider_stop (GstDeviceProvider * provider);
269 gst_mf_device_provider_probe (GstDeviceProvider * provider) in gst_mf_device_provider_probe() argument
271 GstMFDeviceProvider *self = GST_MF_DEVICE_PROVIDER (provider); in gst_mf_device_provider_probe()
333 gst_mf_device_provider_start_win32 (GstDeviceProvider * provider) in gst_mf_device_provider_start_win32() argument
335 GstMFDeviceProvider *self = GST_MF_DEVICE_PROVIDER (provider); in gst_mf_device_provider_start_win32()
347 devices = gst_mf_device_provider_probe (provider); in gst_mf_device_provider_start_win32()
350 gst_device_provider_device_add (provider, GST_DEVICE (iter->data)); in gst_mf_device_provider_start_win32()
362 gst_mf_device_provider_start_winrt (GstDeviceProvider * provider) in gst_mf_device_provider_start_winrt() argument
[all …]
/third_party/openssl/doc/internal/man7/
DEVP_PKEY.pod24 explained further down, in L</Export cache for provider operations>),
43 =item provider-native origin
46 key data (see L<provider-keymgmt(7)>). The internal key in the
47 B<EVP_PKEY> is a pointer to that key data held by the provider, and
69 internal key is a provider key then the return value from functions such as
71 copy are not reflected back in the provider key.
73 Internal provider native keys are also possible to be modified, if the
93 in L</Export cache for provider operations>.
95 For provider native origin keys, this doesn't require any help from
104 =head2 Export cache for provider operations
[all …]

12345678910>>...26