Home
last modified time | relevance | path

Searched refs:UnpackError (Results 1 – 5 of 5) sorted by relevance

/openbmc/sdbusplus/test/
H A Dunpack_properties.cpp20 struct UnpackError struct
22 UnpackError(sdbusplus::UnpackErrorReason r, const std::string& p) : in UnpackError() argument
30 std::optional<UnpackError> operator()(Args&&... args) const in operator ()()
32 std::optional<UnpackError> error; in operator ()()
25 reasonsdbusplus::NonThrowingUnpack::UnpackError global() argument
26 propertysdbusplus::NonThrowingUnpack::UnpackError global() argument
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Dcrate.py18 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__.py91 class UnpackError(BBFetchException): class
1580 …raise UnpackError("Unable to unpack deb/ipk package - does not contain data.tar* file", urldata.ur…
1582 … raise UnpackError("Unable to unpack deb/ipk package - could not list contents", urldata.url)
1590 … raise UnpackError("subdir argument isn't a subdirectory of unpack root %s" % rootdir, urldata.url)
1627 … raise UnpackError("Unpack command %s failed with return value %s" % (cmd, ret), urldata.url)
H A Dgit.py673 …raise bb.fetch2.UnpackError("subdir argument isn't a subdirectory of unpack root %s" % destdir, ud…
713 … raise bb.fetch2.UnpackError("No up to date source found: " + "; ".join(source_error), ud.url)
/openbmc/openbmc/poky/bitbake/lib/bb/tests/
H A Dfetch.py835 with self.assertRaises(bb.fetch2.UnpackError):
2293 with self.assertRaises(bb.fetch2.UnpackError) as context: