Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/libcxxrt/
H A Dstdexcept.cc46 bad_alloc::bad_alloc() throw() {} in bad_alloc() function in std::bad_alloc
47 bad_alloc::~bad_alloc() {} in ~bad_alloc()
48 bad_alloc::bad_alloc(const bad_alloc&) throw() {} in bad_alloc() argument
49 bad_alloc& bad_alloc::operator=(const bad_alloc&) throw() in operator =() argument
53 const char* bad_alloc::what() const throw() in what()
H A Dstdexcept.h49 class bad_alloc: public exception
52 bad_alloc() throw();
53 bad_alloc(const bad_alloc&) throw();
54 bad_alloc& operator=(const bad_alloc&) throw();
55 ~bad_alloc();
84 class bad_array_new_length: public bad_alloc
H A Dmemory.cc76 #define BADALLOC throw(std::bad_alloc)
100 throw std::bad_alloc(); in operator new()
/freebsd-13.1/contrib/llvm-project/libcxx/src/support/runtime/
H A Dexception_fallback.ipp104 bad_alloc::bad_alloc() noexcept
108 bad_alloc::~bad_alloc() noexcept
113 bad_alloc::what() const noexcept
115 return "std::bad_alloc";
H A Dexception_msvc.ipp134 bad_alloc::bad_alloc() noexcept
138 bad_alloc::~bad_alloc() noexcept
143 bad_alloc::what() const noexcept
145 return "std::bad_alloc";
H A Dexception_glibcxx.ipp16 bad_alloc::bad_alloc() noexcept
/freebsd-13.1/lib/libcxxrt/
H A DVersion.map303 "std::bad_alloc::bad_alloc(std::bad_alloc const&)";
304 "std::bad_alloc::bad_alloc()";
305 "std::bad_alloc::operator=(std::bad_alloc const&)";
342 "std::bad_alloc::~bad_alloc()";
352 "vtable for std::bad_alloc";
359 "typeinfo for std::bad_alloc";
365 "typeinfo name for std::bad_alloc";
379 "std::bad_alloc::what() const";
/freebsd-13.1/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
126 class _LIBCPP_EXCEPTION_ABI bad_alloc
130 bad_alloc() _NOEXCEPT;
131 virtual ~bad_alloc() _NOEXCEPT;
136 : public bad_alloc
173 #define _THROW_BAD_ALLOC throw(std::bad_alloc)
H A Dvector1004 // throws (probably bad_alloc) if memory run out
2545 // throws (probably bad_alloc) if memory run out
/freebsd-13.1/contrib/llvm-project/libcxx/src/
H A Dnew.cpp42 throw bad_alloc(); in __throw_bad_alloc()
76 throw std::bad_alloc(); in operator new()
196 throw std::bad_alloc(); in operator new()
/freebsd-13.1/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-13.1/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-13.1/contrib/llvm-project/llvm/lib/Support/
H A DErrorHandling.cpp167 throw std::bad_alloc(); in report_bad_alloc_error()