Home
last modified time | relevance | path

Searched refs:exceptions (Results 1 – 25 of 426) sorted by relevance

12345678910>>...18

/openbmc/phosphor-power/phosphor-regulators/test/
H A Dexception_utils_tests.cpp34 std::vector<std::exception_ptr> exceptions = in TEST() local
36 EXPECT_EQ(exceptions.size(), 0); 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()
144 std::vector<std::exception_ptr> exceptions; in TEST() local
[all …]
/openbmc/linux/arch/arm/vfp/
H A Dvfpdouble.c70 u32 vfp_double_normaliseround(int dd, struct vfp_double *vd, u32 fpscr, u32 exceptions, const char … in vfp_double_normaliseround() argument
81 if (vd->exponent == 2047 && (vd->significand == 0 || exceptions)) in vfp_double_normaliseround()
161 exceptions |= FPSCR_IXC; in vfp_double_normaliseround()
172 exceptions |= FPSCR_OFC | FPSCR_IXC; in vfp_double_normaliseround()
186 exceptions |= FPSCR_UFC; in vfp_double_normaliseround()
196 dd, d, exceptions); in vfp_double_normaliseround()
199 return exceptions; in vfp_double_normaliseround()
444 u32 exceptions = 0; in vfp_double_fcvts() local
454 exceptions = FPSCR_IOC; in vfp_double_fcvts()
475 return vfp_single_normaliseround(sd, &vsd, fpscr, exceptions, "fcvts"); in vfp_double_fcvts()
[all …]
H A Dvfpsingle.c70 u32 __vfp_single_normaliseround(int sd, struct vfp_single *vs, u32 fpscr, u32 exceptions) in __vfp_single_normaliseround() argument
72 u32 vfp_single_normaliseround(int sd, struct vfp_single *vs, u32 fpscr, u32 exceptions, const char … in __vfp_single_normaliseround()
83 if (vs->exponent == 255 && (vs->significand == 0 || exceptions)) in __vfp_single_normaliseround()
166 exceptions |= FPSCR_IXC; in __vfp_single_normaliseround()
177 exceptions |= FPSCR_OFC | FPSCR_IXC; in __vfp_single_normaliseround()
191 exceptions |= FPSCR_UFC; in __vfp_single_normaliseround()
202 sd, d, exceptions); in __vfp_single_normaliseround()
207 return exceptions; in __vfp_single_normaliseround()
487 u32 exceptions = 0; in vfp_single_fcvtd() local
497 exceptions = FPSCR_IOC; in vfp_single_fcvtd()
[all …]
H A Dvfpmodule.c243 static void vfp_raise_exceptions(u32 exceptions, u32 inst, u32 fpscr, struct pt_regs *regs) in vfp_raise_exceptions() argument
247 pr_debug("VFP: raising exceptions %08x\n", exceptions); in vfp_raise_exceptions()
249 if (exceptions == VFP_EXCEPTION_ERROR) { in vfp_raise_exceptions()
260 if (exceptions & (FPSCR_N|FPSCR_Z|FPSCR_C|FPSCR_V)) in vfp_raise_exceptions()
263 fpscr |= exceptions; in vfp_raise_exceptions()
268 if (exceptions & stat && fpscr & en) \ in vfp_raise_exceptions()
289 u32 exceptions = VFP_EXCEPTION_ERROR; in vfp_emulate_instruction() local
299 exceptions = vfp_single_cpdo(inst, fpscr); in vfp_emulate_instruction()
301 exceptions = vfp_double_cpdo(inst, fpscr); in vfp_emulate_instruction()
318 return exceptions & ~VFP_NAN_FLAG; in vfp_emulate_instruction()
[all …]
/openbmc/linux/Documentation/userspace-api/media/
H A DMakefile16 echo ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions; \
17 ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions
20 ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions
24 $(BUILDDIR)/ca.h.rst: ${UAPI}/dvb/ca.h ${PARSER} $(SRC_DIR)/ca.h.rst.exceptions
27 $(BUILDDIR)/dmx.h.rst: ${UAPI}/dvb/dmx.h ${PARSER} $(SRC_DIR)/dmx.h.rst.exceptions
30 $(BUILDDIR)/frontend.h.rst: ${UAPI}/dvb/frontend.h ${PARSER} $(SRC_DIR)/frontend.h.rst.exceptions
33 $(BUILDDIR)/net.h.rst: ${UAPI}/dvb/net.h ${PARSER} $(SRC_DIR)/net.h.rst.exceptions
36 $(BUILDDIR)/videodev2.h.rst: ${UAPI}/videodev2.h ${PARSER} $(SRC_DIR)/videodev2.h.rst.exceptions
39 $(BUILDDIR)/media.h.rst: ${UAPI}/media.h ${PARSER} $(SRC_DIR)/media.h.rst.exceptions
42 $(BUILDDIR)/cec.h.rst: ${UAPI}/cec.h ${PARSER} $(SRC_DIR)/cec.h.rst.exceptions
[all …]
/openbmc/linux/security/
H A Ddevice_cgroup.c45 struct list_head exceptions; member
110 list_for_each_entry(walk, &dev_cgroup->exceptions, list) { in dev_exception_add()
124 list_add_tail_rcu(&excopy->list, &dev_cgroup->exceptions); in dev_exception_add()
138 list_for_each_entry_safe(walk, tmp, &dev_cgroup->exceptions, list) { in dev_exception_rm()
158 list_for_each_entry_safe(ex, tmp, &dev_cgroup->exceptions, list) { in __dev_exception_clean()
199 ret = dev_exceptions_copy(&dev_cgroup->exceptions, in devcgroup_online()
200 &parent_dev_cgroup->exceptions); in devcgroup_online()
229 INIT_LIST_HEAD(&dev_cgroup->exceptions); in devcgroup_css_alloc()
301 list_for_each_entry_rcu(ex, &devcgroup->exceptions, list) { in devcgroup_seq_show()
327 static bool match_exception(struct list_head *exceptions, short type, in match_exception() argument
[all …]
/openbmc/openbmc-tools/openbmctool/
H A Dopenbmctool.py122 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.InsecureRequestWarning)
460 except(requests.exceptions.Timeout):
462 except(requests.exceptions.ConnectionError) as err:
478 except(requests.exceptions.Timeout):
507 except(requests.exceptions
[all...]
/openbmc/phosphor-power/phosphor-regulators/src/
H A Dexception_utils.cpp24 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()
/openbmc/u-boot/Documentation/media/
H A DMakefile12 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/poky/bitbake/lib/bb/asyncrpc/
H A Dconnection.py11 from .exceptions import ClientError, ConnectionClosedError
122 import websockets.exceptions
126 except websockets.exceptions.ConnectionClosed:
130 import websockets.exceptions
140 except websockets.exceptions.ConnectionClosed:
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Ddistrodata.py51 exceptions = ["packagegroup-",]
52 for i in exceptions:
58exceptions = ["musl", "newlib", "picolibc", "linux-yocto", "linux-dummy", "mesa-gl", "libgfortran"…
60 for i in exceptions:
H A Dsstatetests.py916 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/qemu/qapi/
H A Dpragma.json10 '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 D0001-Do-not-overwrite-all-our-build-flags.patch24 - 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/linux/Documentation/arch/arm/vfp/
H A Drelease-notes.rst10 provides support for the exceptions bounced from VFP hardware found
33 All the above pass softfloat tests with the following exceptions:
37 - the handling of underflow exceptions is slightly different. If a
/openbmc/linux/Documentation/core-api/
H A Dentry.rst1 Entry/exit handling for exceptions, interrupts, syscalls and KVM
16 exceptions`_, `NMI and NMI-like exceptions`_.
128 Interrupts and regular exceptions
197 NMI and NMI-like exceptions
200 NMIs and NMI-like exceptions (machine checks, double faults, debug
204 State changes for debug exceptions and machine-check exceptions depend on
205 whether these exceptions happened in user-space (breakpoints or watchpoints) or
209 NMIs and other NMI-like exceptions handle state transitions without
/openbmc/openbmc-build-scripts/config/gitlint/
H A Dbad_signedoffby.py11 exceptions = ["anthonyhkf@google.com"] variable in BadSignedOffBy
29 and match.group(2) not in self.exceptions
/openbmc/openbmc/meta-openembedded/meta-python/recipes-extended/python-meh/
H A Dpython3-meh_0.52.bb1 SUMMARY = "A python library for handling exceptions"
3 exceptions."
/openbmc/phosphor-power/
H A Dpmbus.cpp94 file.exceptions(std::ifstream::failbit | std::ifstream::badbit | in getDeviceName()
126 file.exceptions(std::ifstream::failbit | std::ifstream::badbit | in readBit()
184 file.exceptions(std::ifstream::failbit | std::ifstream::badbit | in read()
225 file.exceptions(std::ifstream::failbit | std::ifstream::badbit | in readString()
303 file.exceptions(std::ofstream::failbit | std::ofstream::badbit | in write()
335 file.exceptions(std::ofstream::failbit | std::ofstream::badbit | in writeBinary()
/openbmc/witherspoon-pfault-analysis/
H A Dpmbus.cpp94 file.exceptions(std::ifstream::failbit | std::ifstream::badbit | in getDeviceName()
124 file.exceptions(std::ifstream::failbit | std::ifstream::badbit | in readBit()
178 file.exceptions(std::ifstream::failbit | std::ifstream::badbit | in read()
209 file.exceptions(std::ifstream::failbit | std::ifstream::badbit | in readString()
283 file.exceptions(std::ofstream::failbit | std::ofstream::badbit | in write()
/openbmc/linux/arch/x86/include/asm/trace/
H A Dexceptions.h3 #define TRACE_SYSTEM exceptions
50 #define TRACE_INCLUDE_FILE exceptions
/openbmc/linux/arch/m68k/fpsp040/
H A Dx_unimp.S59 andl #0xFF00FF,%d0 |clear all but accrued exceptions
62 fmovel #0,%FPCR |clear all user exceptions for FPSP
74 bral gen_except |post any exceptions and return
/openbmc/u-boot/arch/arm/cpu/armv8/
H A DMakefile14 obj-$(CONFIG_ARMV8_SPL_EXCEPTION_VECTORS) += exceptions.o
16 obj-y += exceptions.o
/openbmc/linux/Documentation/powerpc/
H A Disa-versions.rst15 e6500 Power ISA v2.06 with some exceptions
16 e5500 Power ISA v2.06 with some exceptions, no Altivec
20 Cell PPU - Power ISA v2.02 with some minor exceptions
/openbmc/linux/drivers/net/ethernet/freescale/fman/
H A Dfman.c478 u32 exceptions; member
534 u32 exceptions; member
695 if (cfg->exceptions & EX_DMA_BUS_ERROR) in dma_init()
697 if ((cfg->exceptions & EX_DMA_SYSTEM_WRITE_ECC) | in dma_init()
698 (cfg->exceptions & EX_DMA_READ_ECC) | in dma_init()
699 (cfg->exceptions & EX_DMA_FM_WRITE_ECC)) in dma_init()
816 if (cfg->exceptions & EX_FPM_STALL_ON_TASKS) in fpm_init()
818 if (cfg->exceptions & EX_FPM_SINGLE_ECC) in fpm_init()
820 if (cfg->exceptions & EX_FPM_DOUBLE_ECC) in fpm_init()
844 if (cfg->exceptions & EX_IRAM_ECC) { in fpm_init()
[all …]

12345678910>>...18