Searched refs:UnpackError (Results 1 – 5 of 5) sorted by relevance
/openbmc/sdbusplus/test/ |
H A D | unpack_properties.cpp | 21 struct UnpackError struct 23 UnpackError(sdbusplus::UnpackErrorReason r, const std::string& p) : in UnpackError() function 31 std::optional<UnpackError> operator()(Args&&... args) const in operator ()() 33 std::optional<UnpackError> error; in operator ()()
|
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
H A D | crate.py | 18 from bb.fetch2 import logger, subprocess_setup, UnpackError 133 raise UnpackError("Unpack command %s failed with return value %s" % (cmd, ret), ud.url)
|
H A D | __init__.py | 91 class UnpackError(BBFetchException): class 1587 …raise UnpackError("Unable to unpack deb/ipk package - does not contain data.tar.* file", urldata.u… 1589 … raise UnpackError("Unable to unpack deb/ipk package - could not list contents", urldata.url) 1597 … raise UnpackError("subdir argument isn't a subdirectory of unpack root %s" % rootdir, urldata.url) 1634 … raise UnpackError("Unpack command %s failed with return value %s" % (cmd, ret), urldata.url)
|
H A D | git.py | 651 …raise bb.fetch2.UnpackError("subdir argument isn't a subdirectory of unpack root %s" % destdir, ud… 691 … raise bb.fetch2.UnpackError("No up to date source found: " + "; ".join(source_error), ud.url)
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
H A D | fetch.py | 796 with self.assertRaises(bb.fetch2.UnpackError): 2265 with self.assertRaises(bb.fetch2.UnpackError) as context:
|