/openbmc/phosphor-power/phosphor-regulators/src/ |
H A D | exception_utils.hpp | 27 * Contains utility functions for handling exceptions. 34 * exceptions. 36 * If the exception contains nested inner exceptions, the returned vector will 39 * This function makes it easier to handle nested exceptions. You can iterate 43 * @return vector of exceptions, from innermost to outermost 49 * exceptions. 51 * If the exception contains nested inner exceptions, the messages in the 56 * @return error messages from exceptions 68 * exceptions. 70 * Stores the exceptions in the specified vector, from innermost exception to [all …]
|
H A D | exception_utils.cpp | 24 std::vector<std::exception_ptr> exceptions; in getExceptions() local 25 internal::getExceptions(eptr, exceptions); in getExceptions() 26 return exceptions; in getExceptions() 40 std::vector<std::exception_ptr>& exceptions) in getExceptions() argument 52 getExceptions(e.nested_ptr(), exceptions); in getExceptions() 58 exceptions.emplace_back(eptr); in getExceptions()
|
H A D | error_logging_utils.hpp | 34 * exceptions. 45 * inner exceptions. 48 * nested inner exceptions. 75 * Inspects the specified exception and any nested inner exceptions. Returns
|
H A D | error_logging_utils.cpp | 50 // Get exception to log from specified exception and any nested exceptions in logError() 136 // Get vector containing this exception and any nested exceptions in getExceptionToLog() 137 std::vector<std::exception_ptr> exceptions = in getExceptionToLog() local 143 // Loop through the exceptions from innermost to outermost. Find the in getExceptionToLog() 147 for (std::exception_ptr curptr : exceptions) in getExceptionToLog()
|
/openbmc/phosphor-power/phosphor-regulators/test/ |
H A D | exception_utils_tests.cpp | 34 std::vector<std::exception_ptr> exceptions = in TEST() local 36 EXPECT_EQ(exceptions.size(), 0); in TEST() 60 // Get vector containing exceptions in TEST() 61 std::vector<std::exception_ptr> exceptions = in TEST() local 63 EXPECT_EQ(exceptions.size(), 2); in TEST() 68 std::rethrow_exception(exceptions[0]); in TEST() 83 std::rethrow_exception(exceptions[1]); in TEST() 125 std::vector<std::exception_ptr> exceptions; in TEST() local 126 exception_utils::internal::getExceptions(eptr, exceptions); in TEST() 127 EXPECT_EQ(exceptions.size(), 0); in TEST() [all …]
|
/openbmc/qemu/include/hw/intc/ |
H A D | armv7m_nvic.h | 21 /* Highest permitted number of exceptions (architectural limit) */ 23 /* Number of internal exceptions */ 34 uint8_t level; /* exceptions <=15 never set level */ 46 * exceptions are banked between security states (ie there exists both 49 * The rest (including all the external exceptions) are not banked, though 52 * exceptions, and otherwise use only vectors[] (including for exceptions 91 * @secure: false for non-banked exceptions or for the nonsecure 97 * of architecturally banked exceptions. 104 * @secure: false for non-banked exceptions or for the nonsecure 109 * exceptions (exceptions generated in the course of trying to take [all …]
|
/openbmc/u-boot/Documentation/media/ |
H A D | Makefile | 12 echo ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions; \ 13 ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions 16 ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions 20 …LDDIR)/linker_lists.h.rst: ${API}/linker_lists.h ${PARSER} $(SRC_DIR)/linker_lists.h.rst.exceptions
|
/openbmc/openbmc-tools/openbmctool/ |
H A D | openbmctool.py | 122 except(requests.exceptions.Timeout): 125 except(requests.exceptions.ConnectionError) as err: 406 except(requests.exceptions.Timeout): 409 except(requests.exceptions.ConnectionError) as err: 454 # urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) 456 # requests.packages.urllib3.disable_warnings(requests.packages.urllib3.exceptions.Insec… 460 except(requests.exceptions.Timeout): 462 except(requests.exceptions.ConnectionError) as err: 478 except(requests.exceptions.Timeout): 507 except(requests.exceptions.Timeout): [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/asyncrpc/ |
H A D | connection.py | 11 from .exceptions import ClientError, ConnectionClosedError 122 import websockets.exceptions 126 except websockets.exceptions.ConnectionClosed: 130 import websockets.exceptions 140 except websockets.exceptions.ConnectionClosed:
|
/openbmc/qemu/qapi/ |
H A D | pragma.json | 10 'command-name-exceptions': [ 28 'command-returns-exceptions': [ 35 'documentation-exceptions': [ 81 'member-name-exceptions': [ # visible in:
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/poppler/poppler/ |
H A D | 0001-Do-not-overwrite-all-our-build-flags.patch | 24 - set(CMAKE_CXX_FLAGS "-fno-exceptions -fno-check-new -fno-common -fno-operator-nam… 25 + set(CMAKE_CXX_FLAGS "-fno-exceptions -fno-check-new -fno-common -fno-operator-nam… 40 - set(CMAKE_CXX_FLAGS "-fno-exceptions -fno-check-new -fno-common -D_DEFAULT_SOURCE… 41 + set(CMAKE_CXX_FLAGS "-fno-exceptions -fno-check-new -fno-common -D_DEFAULT_SOURCE…
|
/openbmc/openpower-sbe-interface/ |
H A D | sbe_chipOp_handler.hpp | 23 * will be conveyed via respective exceptions. 25 * Exceptions thrown for: 46 * Exceptions thrown for: 62 * Runtime exceptions thrown for:
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-extended/python-meh/ |
H A D | python3-meh_0.52.bb | 1 SUMMARY = "A python library for handling exceptions" 3 exceptions."
|
/openbmc/openpower-vpd-parser/vpd-manager/include/ |
H A D | exceptions.hpp | 54 * @brief This class extends Exceptions class and define type for ECC related 89 * @brief This class extends Exceptions class and define type for data related 174 * This class extends Exceptions class and define 208 * This class extends Exceptions class and define 242 * This class extends Exceptions class and define 276 * This class extends Exceptions class and define
|
H A D | error_codes.hpp | 10 // File exceptions 15 // JSON exceptions
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | distrodata.py | 51 exceptions = ["packagegroup-",] 52 for i in exceptions: 58 …exceptions = ["musl", "newlib", "picolibc", "linux-yocto", "linux-dummy", "mesa-gl", "libgfortran"… 60 for i in exceptions:
|
H A D | sstatetests.py | 916 def check_bb_output(self, output, targets, exceptions, check_cdn): argument 917 def is_exception(object, exceptions): argument 918 for e in exceptions: 924 exceptions += ["{}.*image_qa".format(t) for t in targets.split()] 925 exceptions += ["{}.*deploy_source_date_epoch".format(t) for t in targets.split()] 926 exceptions += ["{}.*image_complete".format(t) for t in targets.split()] 927 exceptions += ["linux-yocto.*shared_workdir"] 931 exceptions += ["{}.*create_.*spdx".format(t) for t in targets.split()] 956 if not is_exception(missing_object, exceptions): 961 if "urlopen failed for" in l and not is_exception(l, exceptions): [all …]
|
/openbmc/openbmc-build-scripts/config/gitlint/ |
H A D | bad_signedoffby.py | 11 exceptions = ["anthonyhkf@google.com"] variable in BadSignedOffBy 29 and match.group(2) not in self.exceptions
|
H A D | block_comment.py | 8 name = "body-max-line-length-with-exceptions" 13 It's possible you intended to use one of the following exceptions:
|
/openbmc/u-boot/arch/arm/cpu/armv8/ |
H A D | Makefile | 14 obj-$(CONFIG_ARMV8_SPL_EXCEPTION_VECTORS) += exceptions.o 16 obj-y += exceptions.o
|
/openbmc/qemu/scripts/qapi/ |
H A D | error.py | 26 """Base class for all exceptions from the QAPI package.""" 30 """Error class for all exceptions identifying a source location."""
|
/openbmc/qemu/python/qemu/qmp/ |
H A D | error.py | 9 QMPError serves as the ancestor for all exceptions raised by this 12 and re-encapsulate various exceptions to provide a semantic
|
/openbmc/bmcweb/ |
H A D | DEVELOPING.md | 36 exceptions 77 - Exceptions are currently enabled for webserver builds, but their use is 78 discouraged. Long term, the intent is to disable exceptions, so any use of 80 of exceptions should be cases where the program can be reasonably expected to 82 exceptions are disabled. 181 exceptions for things which a client is reasonably expected to code against:
|
/openbmc/u-boot/arch/arm/cpu/arm926ejs/mx27/ |
H A D | relocate.S | 13 * The i.MX27 SoC is very specific with respect to exceptions: it 32 * In order to initialize exceptions on i.MX27, we must copy U-Boot's
|
/openbmc/phosphor-power/ |
H A D | pmbus.cpp | 117 file.exceptions(std::ifstream::failbit | std::ifstream::badbit | in readBit() 147 file.exceptions(std::ifstream::failbit | std::ifstream::badbit | in readBit() 202 file.exceptions(std::ifstream::failbit | std::ifstream::badbit | in read() 242 file.exceptions(std::ifstream::failbit | std::ifstream::badbit | in readString() 317 file.exceptions(std::ofstream::failbit | std::ofstream::badbit | 348 file.exceptions(std::ofstream::failbit | std::ofstream::badbit | in writeBinary()
|