Home
last modified time | relevance | path

Searched full:providers (Results 1 – 25 of 230) sorted by relevance

12345678910

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dproviders.py27 """Exception raised when multiple providers of a runtime dependency can be found"""
31 Convenience function to get latest and preferred providers in pkg_pn
55 Find all providers for each pn
201 Return the highest version of the providers in file_set.
237 def _filterProviders(providers, item, cfgData, dataCache): argument
239 Take a list of providers and filter/reorder according to the
246 # The order of providers depends on the order of the files on the disk
249 providers.sort()
251 # Collate providers by PN
253 for p in providers:
[all …]
H A Dtaskdata.py171 bb.providers.buildWorldTargetList(dataCache)
246 Return a list of build targets who's providers
261 Return a list of runtime targets who's providers
276 Return a list of providers of item
330 except bb.providers.NoProvider:
339 Add the providers of item to the task data
347 if not item in dataCache.providers:
348 close_matches = self.get_close_matches(item, list(dataCache.providers.keys()))
350 all_p = bb.providers.getRuntimeProviders(dataCache, item)
356 raise bb.providers.NoProvider(item)
[all …]
/OK3568_Linux_fs/external/xserver/randr/
H A Drrprovider.c44 providers[count_providers] = pScrPriv->provider->id; \
46 swapl(&providers[count_providers]); \
62 RRProvider *providers; in ProcRRGetProviders() local
111 providers = (RRProvider *)extra; in ProcRRGetProviders()
148 RRProvider *providers; in ProcRRGetProviderInfo() local
170 /* count associated providers */ in ProcRRGetProviderInfo()
195 providers = (RRProvider *)(outputs + rep.nOutputs); in ProcRRGetProviderInfo()
196 prov_cap = (unsigned int *)(providers + rep.nAssociatedProviders); in ProcRRGetProviderInfo()
213 providers[i] = provider->offload_sink->id; in ProcRRGetProviderInfo()
215 swapl(&providers[i]); in ProcRRGetProviderInfo()
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/interconnect/
H A Dinterconnect.txt5 providers/consumers properties.
8 = interconnect providers =
15 depending on the use case. Interconnect providers can also be interconnect
41 can be multiple interconnect providers on a SoC and the consumer may consume
42 multiple paths from different providers depending on use case and the
/OK3568_Linux_fs/kernel/Documentation/driver-api/
H A Dinterconnect.rst56 The interconnect providers on the above diagram are M NoC, S NoC, C NoC, P NoC
62 providers. The point on the diagram where the CPUs connect to the memory is
70 include multiple master-slave pairs across several interconnect providers.
73 by the providers. The consumers send requests to providers requesting various
78 Interconnect providers
H A Dmiscellaneous.rst31 The PWM framework provides an abstraction for providers and consumers of
33 registered as :c:type:`struct pwm_chip <pwm_chip>`. Providers
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/osm/
H A Dqgeotilefetcherosm.cpp51 static bool providersResolved(const QVector<QGeoTileProviderOsm *> &providers) in providersResolved() argument
53 foreach (const QGeoTileProviderOsm *provider, providers) in providersResolved()
79 QGeoTileFetcherOsm::QGeoTileFetcherOsm(const QVector<QGeoTileProviderOsm *> &providers, in QGeoTileFetcherOsm() argument
83 m_providers(providers), m_nm(nm), m_ready(true) in QGeoTileFetcherOsm()
120 qWarning("QGeoTileFetcherOsm: all providers resolved"); in onProviderResolutionFinished()
129 qWarning("QGeoTileFetcherOsm: all providers resolved"); in onProviderResolutionError()
H A Dqgeofiletilecacheosm.cpp48 QGeoFileTileCacheOsm::QGeoFileTileCacheOsm(const QVector<QGeoTileProviderOsm *> &providers, in QGeoFileTileCacheOsm() argument
52 …ectory, parent), m_offlineDirectory(offlineDirectory), m_offlineData(false), m_providers(providers) in QGeoFileTileCacheOsm()
54 m_highDpi.resize(providers.size()); in QGeoFileTileCacheOsm()
60 for (int i = 0; i < providers.size(); i++) { in QGeoFileTileCacheOsm()
61 providers[i]->setParent(this); in QGeoFileTileCacheOsm()
62 m_highDpi[i] = providers[i]->isHighDpi(); in QGeoFileTileCacheOsm()
63 …connect(providers[i], &QGeoTileProviderOsm::resolutionFinished, this, &QGeoFileTileCacheOsm::onPro… in QGeoFileTileCacheOsm()
64 …connect(providers[i], &QGeoTileProviderOsm::resolutionError, this, &QGeoFileTileCacheOsm::onProvid… in QGeoFileTileCacheOsm()
298 // process initialized providers, and connect the others in clearObsoleteTiles()
H A Dqgeotiledmaposm.cpp52 // It fails the first time it gets called if providers aren't resolved, and subsequent calls in QGeoTiledMapOsm()
74 if (providerId < 0 || providerId >= m_engine->providers().size()) in evaluateCopyrights()
78 if (!m_engine->providers().at(providerId)->isValid()) in evaluateCopyrights()
81 onProviderDataUpdated(m_engine->providers().at(providerId)); in evaluateCopyrights()
H A Dqgeotileproviderosm.cpp60 const QVector<TileProvider *> &providers, in QGeoTileProviderOsm() argument
64 for (int i = 0; i < providers.size(); ++i) { in QGeoTileProviderOsm()
65 TileProvider *p = providers[i]; in QGeoTileProviderOsm()
359 // prevent accessing the redirection info but not the actual providers. in handleError()
412 * requests to the providers, if they do not support the specific ZL. Default is 0 and 20, in onNetworkReplyFinished()
438 …* than this timestamp. The purpose is to prevent mixing tiles from different providers in the cache in onNetworkReplyFinished()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/android/jar/src/org/qtproject/qt5/android/positioning/
H A DQtPositioning.java117 List<String> providers = locationManager.getProviders(true); in providerList() local
118 int retList[] = new int[providers.size()]; in providerList()
119 for (int i = 0; i < providers.size(); i++) { in providerList()
120 if (providers.get(i).equals(LocationManager.GPS_PROVIDER)) { in providerList()
123 } else if (providers.get(i).equals(LocationManager.NETWORK_PROVIDER)) { in providerList()
126 } else if (providers.get(i).equals(LocationManager.PASSIVE_PROVIDER)) { in providerList()
167 /* Returns true if at least on of the given providers is enabled. */
283 … //all location providers unavailbe -> when they come back we resume automatically in startUpdates()
345 … //all location providers unavailable -> when they come back we resume automatically in requestUpdate()
391 … //all location providers unavailable -> when they come back we resume automatically in startSatelliteUpdates()
/OK3568_Linux_fs/buildroot/docs/manual/
H A Dadding-packages-virtual.txt9 provided by one or more packages, referred to as 'providers'. The virtual
16 package and +sunxi-mali+ and +ti-gfx+ will be the providers.
40 providers.
119 Let's take an example with two providers for a +FEATURE+:
139 a configuration inconsistency, whereby two providers of the same +FEATURE+
/OK3568_Linux_fs/yocto/poky/bitbake/
H A DChangeLog41 - Sort the list of providers before processing so dependency problems are
47 …- Print the list of missing DEPENDS,RDEPENDS for the "No buildable providers available for require…
59 - Sort initial providers list by default preference (#1145, #2024)
61 - Detect builds of tasks with overlapping providers and warn (will become a fatal error) (#1359)
62 - Add MULTI_PROVIDER_WHITELIST variable to allow known safe multiple providers to be listed
71 - Fix preferred_version return values (providers.py)
132 - No longer weight providers on the basis of a package being "already staged". This
162 - Add tryaltconfigs option to control whether bitbake trys using alternative providers
/OK3568_Linux_fs/yocto/poky/meta/conf/distro/include/
H A Ddefault-providers.inc2 # Default virtual providers
23 # Default virtual runtime providers
34 # Default recipe providers
/OK3568_Linux_fs/u-boot/include/
H A Dmailbox.h30 * interface which mailbox providers must implement.
52 * either (a) add more fields to allow mailbox providers to store additional
123 * mailbox provider. Providers that solely transfer notifications
140 * the mailbox provider. Providers that solely transfer
/OK3568_Linux_fs/kernel/tools/kvm/kvm_stat/
H A Dkvm_stat506 """Encapsulates functionalities used by all providers."""
866 """Manages the data providers and the data they provide.
873 self.providers = self._get_providers(options)
880 """Returns a list of data providers depending on the passed options."""
881 providers = []
884 providers.append(DebugfsProvider(options.pid, options.fields,
886 if options.tracepoints or not providers:
887 providers.append(TracepointProvider(options.pid, options.fields))
889 return providers
892 """Propagates fields filters to providers."""
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/clock/
H A Dclock-bindings.txt5 tree. Those nodes are designated as clock providers. Clock consumer
14 ==Clock providers==
27 providers. This format may not work for clock providers
/OK3568_Linux_fs/buildroot/package/pkcs11-helper/
H A DConfig.in6 with PKCS#11 providers for end-user applications.
8 pkcs11-helper allows using multiple PKCS#11 providers at the
/OK3568_Linux_fs/kernel/drivers/scsi/libfc/
H A Dfc_libfc.h85 * FC-4 Providers.
87 extern struct fc4_prov *fc_active_prov[]; /* providers without recv */
88 extern struct fc4_prov *fc_passive_prov[]; /* providers with recv */
/OK3568_Linux_fs/yocto/poky/meta/recipes-kernel/lttng/babeltrace2/
H A D0001-Make-manpages-multilib-identical.patch20 -system_plugin_provider_path="@LIBDIR@/babeltrace2/plugin-providers"
22 +system_plugin_provider_path="@prefix@/lib*/babeltrace2/plugin-providers"
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/openlmi/
H A Dopenlmi-tools_0.10.5.bb1 SUMMARY = "Set of CLI tools for Openlmi providers"
2 DESCRIPTION = "openlmi-tools is a set of command line tools for Openlmi providers."
/OK3568_Linux_fs/buildroot/package/liburcu/
H A D0001-Only-blacklist-ARM-gcc-4.8.0-and-4.8.1.patch6 Since many ARM toolchain providers include the bug fix for PR58854 in
26 + * however, many arm toolchain providers have the included the fix for
/OK3568_Linux_fs/yocto/poky/bitbake/doc/bitbake-user-manual/
H A Dbitbake-user-manual-execution.rst256 .. _bb-bitbake-providers:
258 Providers chapter
288 target's recipes. Because targets might have multiple providers, BitBake
289 needs to prioritize providers by determining provider preferences.
291 A common example in which a target has multiple providers is
303 Understanding how providers are chosen is made complicated by the fact
383 Based on the generated list of providers and the dependency information,
407 has no effect on other providers that depend on that target.
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb/
H A Dsblim-sfcb-1.3.16-multilib-man-cfg.patch22 -Binaries for providers
24 +Binaries for providers.
/OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/
H A DO-UDA-1.027 …ude a warranty disclaimer and limitation of liability for Upstream Data Providers at least as broa…
47 …5.5. "Upstream Data Providers" means the source or sources from which the Data Provider directly o…

12345678910