Home
last modified time | relevance | path

Searched refs:uris (Results 1 – 12 of 12) sorted by relevance

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/
H A Dgitsm.py46 uris = {}
87 uris[m] = md['url']
91 if uris[m].startswith('..') or uris[m].startswith('./'):
93 newud.path = os.path.realpath(os.path.join(newud.path, uris[m]))
94 uris[m] = Git._get_repo_url(self, newud)
99 if "://" in uris[module]:
101 proto = uris[module].split(':', 1)[0]
102 url = uris[module].replace('%s:' % proto, 'gitsm:', 1)
104 if ":" in uris[module]:
107 if ":/" in uris[module]:
[all …]
H A D__init__.py946 uris = []
956 def adduri(ud, uris, uds, mirrors, tarballs): argument
965 if not newuri or newuri in uris or newuri == origud.url:
987 adduri(newud, uris, uds, localmirrors, tarballs)
991 uris.append(newuri)
994 adduri(newud, uris, uds, localmirrors, tarballs)
996 adduri(origud, uris, uds, mirrors, origud.mirrortarballs or [None])
998 return uris, uds
1127 uris, uds = build_mirroruris(origud, mirrors, ld)
1129 for index, uri in enumerate(uris):
/OK3568_Linux_fs/buildroot/support/download/
H A Ddl-wrapper45 local -a uris
59 u) uris+=( "${OPTARG}" );;
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/
H A Dfetch.py481 uris, uds = bb.fetch2.build_mirroruris(fetcher, mirrors, self.d)
482 …self.assertEqual(uris, ['file:///somepath/downloads/bitbake-1.0.tar.gz', 'file:///someotherpath/do…
488 uris, uds = bb.fetch2.build_mirroruris(fetcher, mirrors, self.d)
489 self.assertEqual(uris, ['file:///someotherpath/downloads/bitbake-1.0.tar.gz'])
497 uris, uds = bb.fetch2.build_mirroruris(fetcher, mirrors, self.d)
498 self.assertEqual(uris, ['file:///somepath/downloads/bitbake-1.0.tar.gz',
509 uris, uds = bb.fetch2.build_mirroruris(fetcher, mirrors, self.d)
510 self.assertEqual(uris, ['http://AAAA/A/A/A/bitbake/bitbake-1.0.tar.gz',
685 def fetchUnpack(self, uris): argument
686 fetcher = bb.fetch.Fetch(uris, self.d)
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-gnome/recipes-gnome/rest/files/
H A D0002-Port-to-libsoup3.patch1493 uris = soup_server_get_uris (server);
1494 g_assert (g_slist_length (uris) > 0);
1497 url = soup_uri_to_string (uris->data, FALSE);
1499 + url = g_uri_to_string (uris->data);
1507 g_slist_free_full (uris, (GDestroyNotify)soup_uri_free);
1509 + g_slist_free_full (uris, (GDestroyNotify)g_uri_unref);
1671 uris = soup_server_get_uris (server);
1672 g_assert (g_slist_length (uris) > 0);
1675 url = soup_uri_to_string (uris->data, FALSE);
1677 + url = g_uri_to_string (uris->data);
[all …]
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.20/
H A D0002-playbin2-send-one-about-to-finish-per-group.patch7 driving the app to drop uris, a group should
/OK3568_Linux_fs/buildroot/package/gstreamer1/gst1-plugins-base/
H A D0002-playbin2-send-one-about-to-finish-per-group.patch7 driving the app to drop uris, a group should
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.22/
H A D0002-playbin2-send-one-about-to-finish-per-group.patch7 driving the app to drop uris, a group should
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/
H A D__init__.py429 def construct_uris(self, uris, base_paths): argument
447 return _append(uris, base_paths)
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Drecipeutils.py459 uris = (d.getVar('SRC_URI') or "").split()
460 fetch = bb.fetch2.Fetch(uris, d)
467 for uri in uris:
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dsstate.bbclass775 uris = ['file://{0};downloadfilename={0}'.format(sstatefetch),
778 uris += ['file://{0}.sig;downloadfilename={0}.sig'.format(sstatefetch)]
780 for srcuri in uris:
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-connectivity/wvdial/wvstreams/
H A D0001-Forward-port-to-OpenSSL-1.1.x.patch298 GENERAL_NAMES *uris = GENERAL_NAMES_new();