Home
last modified time | relevance | path

Searched refs:ThrowOutOfMemoryError (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/include/
Dexceptions.h74 void ThrowOutOfMemoryError(ManagedThread *thread, const PandaString &msg);
76 PANDA_PUBLIC_API void ThrowOutOfMemoryError(const PandaString &msg);
Dmethod-inl.h215 panda::ThrowOutOfMemoryError("CreateFrame failed: " + GetFullName()); in InvokeInterpretedCode()
313 panda::ThrowOutOfMemoryError("CreateFrame failed: " + GetFullName()); in InvokeContext()
342 panda::ThrowOutOfMemoryError("CreateFrame failed: " + GetFullName()); in EnterNativeMethodFrame()
/arkcompiler/runtime_core/static_core/runtime/interpreter/
Druntime_interface.h201 static void ThrowOutOfMemoryError(const PandaString &msg) in ThrowOutOfMemoryError() function
203 panda::ThrowOutOfMemoryError(msg); in ThrowOutOfMemoryError()
/arkcompiler/runtime_core/static_core/runtime/
Dexceptions.cpp354 void ThrowOutOfMemoryError(ManagedThread *thread, const PandaString &msg) in ThrowOutOfMemoryError() function
368 void ThrowOutOfMemoryError(const PandaString &msg) in ThrowOutOfMemoryError() function
371 ThrowOutOfMemoryError(thread, msg); in ThrowOutOfMemoryError()
/arkcompiler/runtime_core/static_core/runtime/coretypes/
Darray.cpp33 ThrowOutOfMemoryError("OOM when allocating array"); in AllocateArray()
/arkcompiler/runtime_core/static_core/runtime/mem/
Dheap_manager.cpp111 ThrowOutOfMemoryError("AllocateObject failed"); in AllocateObject()
210 ThrowOutOfMemoryError("AllocateNonMovableObject failed"); in AllocateNonMovableObject()
/arkcompiler/ets_runtime/ecmascript/mem/
Dheap-inl.h43ThrowOutOfMemoryError(size, message); …
278 ThrowOutOfMemoryError(size, "Heap::AllocateHugeObject"); in AllocateHugeObject()
Dheap.cpp464 ThrowOutOfMemoryError(oldSpace_->GetMergeSize(), " OldSpace::Merge"); in CollectGarbage()
518 void Heap::ThrowOutOfMemoryError(size_t size, std::string functionName, bool NonMovableObjNearOOM) in ThrowOutOfMemoryError() function in panda::ecmascript::Heap
564ThrowOutOfMemoryError(nonMovableSpace_->GetHeapObjectSize(), "Heap::CheckNonMovableSpaceOOM", true… in CheckNonMovableSpaceOOM()
Dheap.h596 …void ThrowOutOfMemoryError(size_t size, std::string functionName, bool NonMovableObjNearOOM = fals…
/arkcompiler/runtime_core/static_core/runtime/coroutines/
Dthreaded_coroutine_manager.cpp153 ThrowOutOfMemoryError("Launch failed"); in Launch()
Dstackful_coroutine_manager.cpp248 ThrowOutOfMemoryError("Launch failed"); in Launch()
/arkcompiler/runtime_core/static_core/runtime/tests/interpreter/
Dtest_runtime_interface.h349 static void ThrowOutOfMemoryError([[maybe_unused]] const PandaString &msg) {} in ThrowOutOfMemoryError() function
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/napi/
Dets_napi_helpers.cpp400 ThrowOutOfMemoryError(currentCoro, "Cannot allocate Promise"); in EtsAsyncCall()