Lines Matching +full:non +full:- +full:void
7 * http://www.apache.org/licenses/LICENSE-2.0
26 void *bufferPointer_ {nullptr};
27 void *hint_ = {nullptr};
28 void *attachData_ = {nullptr};
33 NativeBindingAttachInfo(AttachFunc af, void *bufferPointer, void *hint, void *attachData, in NativeBindingAttachInfo()
81 explicit BaseDeserializer(JSThread *thread, SerializeData *data, void *hint = nullptr);
97 void DeserializeNativeBindingObject(NativeBindingAttachInfo *info);
98 void DeserializeJSError(JSErrorInfo *info);
101 void DeserializeObjectField(uintptr_t start, uintptr_t end);
103 …void HandleNewObjectEncodeFlag(SerializedObjectSpace space, uintptr_t objAddr, size_t fieldOffset,…
105 void TransferArrayBufferAttach(uintptr_t objAddr);
106 void IncreaseSharedArrayBufferReference(uintptr_t objAddr);
107 void ResetNativePointerBuffer(uintptr_t objAddr, void *bufferPointer);
109 void AllocateToDifferentSpaces();
110 void AllocateMultiRegion(SparseSpace *space, size_t spaceObjSize, size_t ®ionIndex);
111 …void AllocateMultiSharedRegion(SharedSparseSpace *space, size_t spaceObjSize, size_t ®ionIndex);
112 void AllocateToOldSpace(size_t oldSpaceSize);
113 void AllocateToNonMovableSpace(size_t nonMovableSpaceSize);
114 void AllocateToMachineCodeSpace(size_t machineCodeSpaceSize);
115 void AllocateToSharedOldSpace(size_t sOldSpaceSize);
116 void AllocateToSharedNonMovableSpace(size_t sNonMovableSpaceSize);
163 void *GetAndResetBufferPointer() in GetAndResetBufferPointer()
166 void *buffer = bufferPointer_; in GetAndResetBufferPointer()
173 void DeserializeFatalOutOfMemory(size_t size, bool dump = true, bool isShared = false)
177 sheap_->DumpHeapSnapshotBeforeOOM(false, thread_, SharedHeapOOMSource::DESERIALIZE);
181 << sheap_->GetOldSpace()->GetHeapObjectSize()
183 << sheap_->GetOldSpace()->GetCommittedSize()
184 << ", non movable space heap object size: "
185 << sheap_->GetNonMovableSpace()->GetHeapObjectSize()
186 << ", non movable space committed size: "
187 << sheap_->GetNonMovableSpace()->GetCommittedSize()
189 << sheap_->GetHugeObjectSpace()->GetCommittedSize();
192 heap_->StatisticHeapDetail();
193 heap_->DumpHeapSnapshotBeforeOOM(false);
197 << heap_->GetOldSpace()->GetHeapObjectSize()
199 << heap_->GetOldSpace()->GetCommittedSize()
200 << ", non movable space heap object size: "
201 << heap_->GetNonMovableSpace()->GetHeapObjectSize()
202 << ", non movable space committed size: "
203 << heap_->GetNonMovableSpace()->GetCommittedSize()
205 << heap_->GetHugeObjectSpace()->GetCommittedSize();
209 void UpdateMaybeWeak(ObjectSlot slot, uintptr_t addr, bool isWeak) in UpdateMaybeWeak()
219 void *engine_;
239 void *bufferPointer_ {nullptr};