Home
last modified time | relevance | path

Searched refs:exception (Results 1 – 25 of 455) sorted by relevance

12345678910>>...19

/trueos/contrib/libcxxrt/
HDstdexcept.cc34 exception::exception() throw() {} in exception() function in std::exception
35 exception::~exception() {} in ~exception()
36 exception::exception(const exception&) throw() {} in exception() argument
37 exception& exception::operator=(const exception&) throw() in operator =() argument
41 const char* exception::what() const throw() in what()
HDstdexcept.h35 class exception
38 exception() throw();
39 exception(const exception&) throw();
40 exception& operator=(const exception&) throw();
41 virtual ~exception();
49 class bad_alloc: public exception
62 class bad_cast: public exception {
74 class bad_typeid: public exception
HDexception.cc226 class exception class
229 virtual ~exception() throw();
618 static void releaseException(__cxa_exception *exception) in releaseException() argument
620 if (isDependentException(exception->unwindHeader.exception_class)) in releaseException()
622 __cxa_free_dependent_exception(exception+1); in releaseException()
625 if (__sync_sub_and_fetch(&exception->referenceCount, 1) == 0) in releaseException()
630 __cxa_free_exception(exception+1); in releaseException()
701 static_cast<const __class_type_info*>(&typeid(std::exception)); in report_failure()
706 std::exception *e = in report_failure()
707 static_cast<std::exception*>(e_ti->cast_to(static_cast<void*>(thrown_exception+1), in report_failure()
[all …]
/trueos/contrib/libstdc++/libsupc++/
Dexception24 // As a special exception, you may use this file as part of a free software
29 // the GNU General Public License. This exception does not however
33 /** @file exception
53 * your own %exception classes, or use a different hierarchy, or to
56 class exception
59 exception() throw() { }
60 virtual ~exception() throw();
67 /** If an %exception is thrown which is not listed in a function's
68 * %exception specification, one of these may be thrown. */
69 class bad_exception : public exception
[all …]
Deh_exception.cc36 std::exception::~exception() throw() { } in ~exception()
41 std::exception::what() const throw() in what()
/trueos/contrib/libc++/include/
Dexception2 //===-------------------------- exception ---------------------------------===//
15 exception synopsis
20 class exception
23 exception() noexcept;
24 exception(const exception&) noexcept;
25 exception& operator=(const exception&) noexcept;
26 virtual ~exception() noexcept;
31 : public exception
90 class _LIBCPP_EXCEPTION_ABI exception
93 _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {}
[all …]
Dtypeinfo37 : public exception
47 : public exception
61 #include <exception>
149 : public exception
158 : public exception
Dstdexcept32 class xxx_error : public exception // at least indirectly
46 #include <exception>
65 : public exception
82 : public exception
/trueos/contrib/gcc/config/rs6000/
HDdarwin-fallback.c268 uint32_t exception; member
291 uint32_t exception; member
387 if (m64->exception == 3 || m64->exception == 4 in handle_syscall()
388 || m64->exception == 6 in handle_syscall()
389 || (m64->exception == 7 && !(m64->srr1 & 0x10000))) in handle_syscall()
416 if (m->exception == 3 || m->exception == 4 in handle_syscall()
417 || m->exception == 6 in handle_syscall()
418 || (m->exception == 7 && !(m->srr1 & 0x10000))) in handle_syscall()
/trueos/cddl/contrib/dtracetoolkit/Bin/
Dj_stat.d60 execs = threads = methods = objnew = cload = gc = exception = 0;
122 exception++;
133 oalloc / interval, cload / interval, exception / interval,
135 execs = threads = methods = oalloc = cload = gc = exception = 0;
/trueos/cddl/contrib/dtracetoolkit/Java/
HDj_stat.d60 execs = threads = methods = objnew = cload = gc = exception = 0;
122 exception++;
133 oalloc / interval, cload / interval, exception / interval,
135 execs = threads = methods = oalloc = cload = gc = exception = 0;
/trueos/lib/libcxxrt/
HDVersion.map271 "std::exception::exception(std::exception const&)";
272 "std::exception::exception()";
273 "std::exception::operator=(std::exception const&)";
312 "std::exception::~exception()";
316 "std::exception::what() const";
326 "vtable for std::exception";
333 "typeinfo for std::exception";
339 "typeinfo name for std::exception";
/trueos/contrib/gcc/cp/
HDcfns.gperf15 # [lib.res.on.exception.handling]: None of the functions from the
17 # exception, unless it calls a program-supplied function that
18 # throws an exception.
22 # abort -- synchronous exception from SIGABRT handler
33 #bsearch -- calls user function which may throw exception
137 #qsort -- calls user function which may throw exception
138 #raise -- synchronous exception from signal handler
/trueos/lib/libmach/mach/
HDerr_server.sub208 "(server/exception) GENERIC ERROR",
209 "(server/exception) invalid access",
210 "(server/exception) invalid instruction",
211 "(server/exception) arithmetic exception",
212 "(server/exception) emulation exception",
213 "(server/exception) software exception",
214 "(server/exception) breakpoint exception",
354 /* server/13; mach exception */
356 "(server/exception)",
/trueos/tests/sys/fifo/
HDfifo_io.c864 poll_status(int fd, int *readable, int *writable, int *exception, in poll_status() argument
879 *exception = (fds[0].revents & POLLERR) ? 1 : 0; in poll_status()
884 select_status(int fd, int *readable, int *writable, int *exception, in select_status() argument
904 *exception = FD_ISSET(fd, &exceptfds) ? 1 : 0; in select_status()
954 int *exception, const char *testname) in kqueue_status() argument
970 *readable = *writable = *exception = 0; in kqueue_status()
1014 int readable, writable, exception; in assert_status() local
1016 if (poll_status(fd, &readable, &writable, &exception, testname) < 0) in assert_status()
1020 exception != assert_exception) { in assert_status()
1022 fdname, readable, writable, exception, conditionname); in assert_status()
[all …]
/trueos/contrib/atf/atf-c++/detail/
Dexceptions_test.cpp96 } catch (const std::exception& e) { in ATF_TEST_CASE_BODY()
112 } catch (const std::exception& e) { in ATF_TEST_CASE_BODY()
130 } catch (const std::exception& e) { in ATF_TEST_CASE_BODY()
/trueos/contrib/libstdc++/include/tr1/
Dmemory21 // As a special exception, you may use this file as part of a free software
26 // the GNU General Public License. This exception does not however
40 #include <exception> // std::exception
/trueos/gnu/lib/libsupc++/
DVersion.map159 std::exception*;
163 "typeinfo for std::exception";
168 "typeinfo name for std::exception";
173 "vtable for std::exception";
/trueos/contrib/libstdc++/src/
Dstdexcept.cc40 : exception(), _M_msg(__arg) { } in _GLIBCXX_BEGIN_NAMESPACE()
61 : exception(), _M_msg(__arg) { } in runtime_error()
/trueos/contrib/gcc/
HDunwind.inc37 exception handler and intermediary cleanup code. We'll only locate
83 /* Raise an exception, passing along the given exception object. */
196 /* Raise an exception for forced unwinding. */
219 /* Resume propagation of an existing exception. This is used after
244 /* Resume propagation of an FORCE_UNWIND exception, or to rethrow
245 a normal exception that was handled. */
/trueos/bin/sh/
HDmain.c106 switch (exception) { in main()
120 exception == EXEXIT) in main()
123 if (exception == EXINT) in main()
/trueos/contrib/llvm/patches/
HDpatch-r262261-llvm-r200376-sparc.diff44 Index: test/CodeGen/SPARC/exception.ll
46 --- test/CodeGen/SPARC/exception.ll
47 +++ test/CodeGen/SPARC/exception.ll
/trueos/lib/libc/softfloat/
HDsoftfloat.txt168 All five exception flags required by the IEC/IEEE Standard are
170 `float_exception_flags'. The positions of the exception flag bits within
173 `float_flag_invalid'. The exception flags variable is initialized to all 0,
176 An individual exception flag can be cleared with the statement
178 float_exception_flags &= ~ float_flag_<exception>;
180 where `<exception>' is the appropriate name. To raise a floating-point
181 exception, the SoftFloat function `float_raise' should be used (see below).
225 Conversions from floating-point to integer raise the invalid exception if
323 functions raise the invalid exception if either input is any kind of NaN.
325 exception on quiet NaNs. For completeness, SoftFloat provides the following
[all …]
/trueos/contrib/libc++/src/
Dexception.cpp128 exception::~exception() _NOEXCEPT in ~exception()
132 const char* exception::what() const _NOEXCEPT in what()
/trueos/sbin/launchd/
HDmach_exc.defs60 * MiG definitions file for Mach exception interface.
87 exception : exception_type_t;
97 exception : exception_type_t;
113 exception : exception_type_t;

12345678910>>...19