Home
last modified time | relevance | path

Searched refs:bad_alloc (Results 1 – 19 of 19) sorted by relevance

/freebsd-14.2/contrib/libcxxrt/
H A Dstdexcept.cc46 bad_alloc::bad_alloc() _LIBCXXRT_NOEXCEPT {} in bad_alloc() function in std::bad_alloc
47 bad_alloc::~bad_alloc() {} in ~bad_alloc()
48 bad_alloc::bad_alloc(const bad_alloc&) _LIBCXXRT_NOEXCEPT {} in bad_alloc() function in std::bad_alloc
49 bad_alloc& bad_alloc::operator=(const bad_alloc&) _LIBCXXRT_NOEXCEPT in operator =() argument
53 const char* bad_alloc::what() const _LIBCXXRT_NOEXCEPT in what()
H A Dstdexcept.h51 class bad_alloc: public exception
54 bad_alloc() _LIBCXXRT_NOEXCEPT;
55 bad_alloc(const bad_alloc&) _LIBCXXRT_NOEXCEPT;
56 bad_alloc& operator=(const bad_alloc&) _LIBCXXRT_NOEXCEPT;
57 ~bad_alloc();
86 class bad_array_new_length: public bad_alloc
H A Dmemory.cc76 #define BADALLOC throw(std::bad_alloc)
126 throw std::bad_alloc(); in operator new()
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dnew19 class bad_alloc
23 bad_alloc() noexcept;
24 bad_alloc(const bad_alloc&) noexcept;
25 bad_alloc& operator=(const bad_alloc&) noexcept;
29 class bad_array_new_length : public bad_alloc // C++14
130 bad_alloc() _NOEXCEPT;
131 _LIBCPP_HIDE_FROM_ABI bad_alloc(const bad_alloc&) _NOEXCEPT = default;
132 _LIBCPP_HIDE_FROM_ABI bad_alloc& operator=(const bad_alloc&) _NOEXCEPT = default;
133 ~bad_alloc() _NOEXCEPT override;
154 class bad_alloc : public exception {
[all …]
H A Dprint303 // or stream fails. May throw bad_alloc.
H A Dvector733 // throws (probably bad_alloc) if memory run out
2173 // throws (probably bad_alloc) if memory run out
/freebsd-14.2/contrib/llvm-project/libcxx/src/support/runtime/
H A Dexception_fallback.ipp69 bad_alloc::bad_alloc() noexcept {}
71 bad_alloc::~bad_alloc() noexcept {}
73 const char* bad_alloc::what() const noexcept { return "std::bad_alloc"; }
H A Dexception_msvc.ipp87 bad_alloc::bad_alloc() noexcept {}
89 bad_alloc::~bad_alloc() noexcept {}
91 const char* bad_alloc::what() const noexcept { return "std::bad_alloc"; }
H A Dexception_glibcxx.ipp16 bad_alloc::bad_alloc() noexcept {}
/freebsd-14.2/lib/libcxxrt/
H A DVersion.map310 "std::bad_alloc::bad_alloc(std::bad_alloc const&)";
311 "std::bad_alloc::bad_alloc()";
312 "std::bad_alloc::operator=(std::bad_alloc const&)";
349 "std::bad_alloc::~bad_alloc()";
359 "vtable for std::bad_alloc";
366 "typeinfo for std::bad_alloc";
372 "typeinfo name for std::bad_alloc";
386 "std::bad_alloc::what() const";
/freebsd-14.2/contrib/llvm-project/libcxx/src/
H A Dnew_helpers.cpp22 throw bad_alloc(); in __throw_bad_alloc()
/freebsd-14.2/contrib/llvm-project/libcxx/modules/std/
H A Dnew.inc12 using std::bad_alloc;
/freebsd-14.2/contrib/atf/atf-c++/detail/
H A Dexceptions.cpp108 throw std::bad_alloc(); in throw_no_memory_error()
H A Dexceptions_test.cpp111 } catch (const std::bad_alloc&) { in ATF_TEST_CASE_BODY()
/freebsd-14.2/contrib/kyua/utils/sqlite/
H A Ddatabase.cpp112 throw std::bad_alloc(); in safe_open()
H A Dstatement.cpp93 throw std::bad_alloc(); in handle_bind_error()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DErrorHandling.cpp166 throw std::bad_alloc(); in report_bad_alloc_error()
/freebsd-14.2/contrib/llvm-project/libcxx/include/__algorithm/pstl_backends/cpu_backends/
H A Dlibdispatch.h138 } catch (const std::bad_alloc&) { in __parallel_merge()
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc736 SYMBOL(bad_alloc, std::, <new>)