Home
last modified time | relevance | path

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

12

/trueos/contrib/libcxxrt/
HDstdexcept.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()
HDstdexcept.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
HDmemory.cc91 throw std::bad_alloc(); in operator new()
125 throw(std::bad_alloc) in operator new[]()
/trueos/contrib/libc++/src/
Dnew.cpp48 throw(std::bad_alloc) in operator new()
63 throw std::bad_alloc(); in operator new()
94 throw(std::bad_alloc) in operator new[]()
177 bad_alloc::bad_alloc() _NOEXCEPT in bad_alloc() function in std::bad_alloc
183 bad_alloc::~bad_alloc() _NOEXCEPT in ~bad_alloc()
188 bad_alloc::what() const _NOEXCEPT in what()
233 throw bad_alloc(); in __throw_bad_alloc()
Ddebug.cpp156 throw bad_alloc(); in __insert_c()
182 throw bad_alloc(); in __insert_c()
479 throw bad_alloc(); in __add()
505 throw bad_alloc(); in __insert_iterator()
531 throw bad_alloc(); in __insert_iterator()
Dios.cpp310 throw bad_alloc(); in copyfmt()
317 throw bad_alloc(); in copyfmt()
326 throw bad_alloc(); in copyfmt()
335 throw bad_alloc(); in copyfmt()
/trueos/contrib/libc++/include/
Dnew20 class bad_alloc
24 bad_alloc() noexcept;
25 bad_alloc(const bad_alloc&) noexcept;
26 bad_alloc& operator=(const bad_alloc&) noexcept;
30 class bad_array_length : public bad_alloc // C++14
36 class bad_array_new_length : public bad_alloc
78 class _LIBCPP_EXCEPTION_ABI bad_alloc
82 bad_alloc() _NOEXCEPT;
83 virtual ~bad_alloc() _NOEXCEPT;
88 : public bad_alloc
[all …]
/trueos/contrib/libstdc++/libsupc++/
Dnew_handler.cc48 std::bad_alloc::~bad_alloc() throw() { } in ~bad_alloc()
51 std::bad_alloc::what() const throw() in what()
Dnew_op.cc38 using std::bad_alloc;
50 operator new (std::size_t sz) throw (std::bad_alloc) in operator new()
63 throw bad_alloc(); in operator new()
Dnew56 * @c bad_alloc (or classes derived from it) is used to report allocation
58 class bad_alloc : public exception
61 bad_alloc() throw() { }
65 virtual ~bad_alloc() throw();
86 * - normal single new and delete (no arguments, throw @c bad_alloc on error)
95 void* operator new(std::size_t) throw (std::bad_alloc);
96 void* operator new[](std::size_t) throw (std::bad_alloc);
Dnew_opnt.cc35 using std::bad_alloc;
58 catch (bad_alloc &) in operator new()
Dnew_opv.cc35 operator new[] (std::size_t sz) throw (std::bad_alloc) in operator new[]()
/trueos/lib/libcxxrt/
HDVersion.map274 "std::bad_alloc::bad_alloc(std::bad_alloc const&)";
275 "std::bad_alloc::bad_alloc()";
276 "std::bad_alloc::operator=(std::bad_alloc const&)";
313 "std::bad_alloc::~bad_alloc()";
323 "vtable for std::bad_alloc";
330 "typeinfo for std::bad_alloc";
336 "typeinfo name for std::bad_alloc";
350 "std::bad_alloc::what() const";
/trueos/gnu/lib/libsupc++/
DVersion.map157 std::bad_alloc;
161 "typeinfo for std::bad_alloc";
166 "typeinfo name for std::bad_alloc";
171 "vtable for std::bad_alloc";
183 "std::bad_alloc::what() const";
/trueos/contrib/libstdc++/include/backward/
Dnew.h36 using std::bad_alloc;
/trueos/contrib/libstdc++/src/
Dbitmap_allocator.cc52 _M_get(size_t __sz) throw(std::bad_alloc) in _M_get()
Dfunctexcept.cc52 { throw bad_alloc(); } in __throw_bad_alloc()
/trueos/contrib/atf/atf-c++/detail/
Dexceptions.cpp108 throw std::bad_alloc(); in throw_no_memory_error()
Dexceptions_test.cpp111 } catch (const std::bad_alloc&) { in ATF_TEST_CASE_BODY()
/trueos/contrib/libstdc++/include/ext/
Dbitmap_allocator.h680 _M_get(size_t __sz) throw(std::bad_alloc);
784 _S_refill_pool() throw(std::bad_alloc)
848 _M_allocate_single_object() throw(std::bad_alloc)
/trueos/contrib/libstdc++/include/tr1/
Dmemory41 #include <new> // std::bad_alloc
/trueos/contrib/libstdc++/config/abi/pre/
Dgnu.ver461 # std::bad_alloc::~bad_alloc, std::bad_cast::~bad_cast,
/trueos/contrib/libstdc++/
DChangeLog366 * libsupc++/new (bad_alloc::what): Declare.
/trueos/contrib/gcc/cp/
HDNEWS189 * operator new now throws bad_alloc where appropriate.
HDChangeLog-1997352 * new1.cc (new (nothrow)): Catch a bad_alloc thrown from the handler.
353 (new): Move from libgcc2. Throw bad_alloc.
2464 * new: Add nothrow new and delete, bad_alloc and throw specifications

12