Home
last modified time | relevance | path

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

/reactos/sdk/include/c++/stlport/stl/
H A D_new.h75 class bad_alloc : public exception {
77 bad_alloc () _STLP_NOTHROW_INHERENTLY { } in bad_alloc() function
78 bad_alloc(const bad_alloc&) _STLP_NOTHROW_INHERENTLY { } in bad_alloc() argument
79 bad_alloc& operator=(const bad_alloc&) _STLP_NOTHROW_INHERENTLY {return *this;}
80 ~bad_alloc () _STLP_NOTHROW_INHERENTLY { } in ~bad_alloc()
93 using _STLP_VENDOR_EXCEPT_STD::bad_alloc;
118 # define _STLP_THROW_BAD_ALLOC _STLP_THROW(_STLP_STD::bad_alloc())
/reactos/sdk/lib/3rdparty/stlport/test/compiler/
H A Deh.cc23 catch (bad_alloc const&) { in bad_alloc_test()
40 catch ( bad_alloc const & ) { in bad_alloc_test1()
52 throw bad_alloc(); in main()
54 catch ( bad_alloc& ) { in main()
/reactos/sdk/lib/cpprt/
H A Dnew_nothrow.cpp10 void* operator new (std::size_t) throw(std::bad_alloc);
11 void* operator new[] (std::size_t) throw(std::bad_alloc);
21 catch (std::bad_alloc) in operator new()
33 catch (std::bad_alloc) in operator new[]()
/reactos/sdk/lib/crt/include/internal/
H A Dwine_msc.h40 bad_alloc* __thiscall MSVCRT_bad_alloc_copy_ctor(bad_alloc* _this, const bad_alloc* rhs);
41 bad_alloc* __thiscall MSVCRT_bad_alloc_copy_ctor(bad_alloc* _this, const bad_alloc* rhs);
42 void __thiscall MSVCRT_bad_alloc_dtor(bad_alloc* _this);
/reactos/sdk/include/c++/
H A Dnew11 class bad_alloc : public exception
14 bad_alloc(const char *name = "bad alloc") throw()
17 virtual ~bad_alloc() throw() { }
22 using ::bad_alloc;
/reactos/sdk/lib/3rdparty/stlport/test/eh/
H A Dnc_alloc.cpp60 throw EH_STD::bad_alloc(); in maybe_fail()
207 throw(EH_STD::bad_alloc) in operator new()
223 void* _STLP_CALL operator new[](size_t size ) throw(EH_STD::bad_alloc) { in operator new[]()
/reactos/sdk/lib/crt/wine/
H A Dcpp.c536 typedef exception bad_alloc; typedef
541 bad_alloc * __thiscall bad_alloc_copy_ctor(bad_alloc * _this, const bad_alloc * rhs) in bad_alloc_copy_ctor()
548 void __thiscall bad_alloc_dtor(bad_alloc * _this) in bad_alloc_dtor()
562 __ASM_VTABLE(bad_alloc,
583 DEFINE_RTTI_DATA1( bad_alloc, 0, &exception_rtti_base_descriptor, ".?AVbad_alloc@std@@" )
596 DEFINE_CXX_DATA1( bad_alloc, &exception_cxx_type_info, bad_alloc_dtor ) in DEFINE_CXX_EXCEPTION0()
625 bad_alloc e; in throw_bad_alloc()
/reactos/modules/rosapps/applications/net/roshttpd/
H A Droshttpd.cpp48 } catch (bad_alloc&) { in Run()
H A Dconfig.cpp52 } catch (bad_alloc&) { in Default()
H A Dhttpd.cpp489 } catch (bad_alloc&) { in Execute()
/reactos/sdk/lib/3rdparty/stlport/test/unit/
H A Dconfig_test.cpp106 catch (const bad_alloc&) in new_throw_bad_alloc()
H A Dallocator_test.cpp71 catch (bad_alloc const&) { in bad_alloc_test()
H A Dstack_allocator.h100 throw __STD bad_alloc();
/reactos/sdk/include/psdk/
H A Ddriverspecs.h153 void* __cdecl operator new(size_t size) throw(std::bad_alloc); \
154 void* __cdecl operator new[](size_t size) throw(std::bad_alloc); \
/reactos/sdk/lib/3rdparty/stlport/src/
H A Dallocators.cpp398 catch (const _STLP_STD::bad_alloc&) { in _S_chunk_alloc()
596 catch (const bad_alloc&) { in _S_chunk_alloc()
/reactos/sdk/lib/3rdparty/stlport/doc/
H A DREADME.evc474 Without exception support, e.g. std::bad_alloc is not available, causing compile errors for some co…
/reactos/sdk/lib/3rdparty/stlport/build/test/unit/
H A DSTATUS147 Notes: bad_alloc tests crash:
/reactos/sdk/lib/3rdparty/stlport/etc/
H A DChangeLog224 throw a bad_alloc exception.
480 bad_alloc exceptions.
492 bad_alloc exception. Definition of this macro is now in _new.h
791 exceptions like bad_alloc are not silently eaten. _S_initialize
1898 In case of memory starvation, we throw a bad_alloc exception.
H A DChangeLog-5.11848 check length_error exception rather than bad_alloc.
1932 should result in a bad_alloc exception.
1940 result in a bad_alloc exception. Idem for reserve method.
3763 version that announce to be similar to .Net 2005 beta do not throw bad_alloc
6942 bad_alloc and some other classes into STLport's namespace
7088 operator behavior and bad_alloc exception definition.
7396 bad_alloc but that do not throw it! (thanks ?)
8268 * <new> : fixed throw specification for bad_alloc (has to be inherited)