v8  7.8.279(node12.16.3)
V8 is Google's open source JavaScript engine
ArrayBuffer::Contents Class Reference

#include <v8.h>

Public Types

using DeleterCallback = void(*)(void *buffer, size_t length, void *info)
 

Public Member Functions

 Contents ()
 
void * AllocationBase () const
 
size_t AllocationLength () const
 
Allocator::AllocationMode AllocationMode () const
 
void * Data () const
 
size_t ByteLength () const
 
DeleterCallback Deleter () const
 
void * DeleterData () const
 

Friends

class ArrayBuffer
 

Detailed Description

The contents of an |ArrayBuffer|. Externalization of |ArrayBuffer| returns an instance of this class, populated, with a pointer to data and byte length.

The Data pointer of ArrayBuffer::Contents must be freed using the provided deleter, which will call ArrayBuffer::Allocator::Free if the buffer was allocated with ArraryBuffer::Allocator::Allocate.

Definition at line 4782 of file v8.h.

Member Typedef Documentation

◆ DeleterCallback

using DeleterCallback = void (*)(void* buffer, size_t length, void* info)

Definition at line 4784 of file v8.h.

Constructor & Destructor Documentation

◆ Contents()

Contents ( )
inline

Definition at line 4786 of file v8.h.

References ArrayBuffer::Allocator::kNormal.

Member Function Documentation

◆ AllocationBase()

void* AllocationBase ( ) const
inline

Definition at line 4795 of file v8.h.

◆ AllocationLength()

size_t AllocationLength ( ) const
inline

Definition at line 4796 of file v8.h.

◆ AllocationMode()

Allocator::AllocationMode AllocationMode ( ) const
inline

Definition at line 4797 of file v8.h.

◆ ByteLength()

size_t ByteLength ( ) const
inline

Definition at line 4802 of file v8.h.

◆ Data()

void* Data ( ) const
inline

Definition at line 4801 of file v8.h.

◆ Deleter()

DeleterCallback Deleter ( ) const
inline

Definition at line 4803 of file v8.h.

◆ DeleterData()

void* DeleterData ( ) const
inline

Definition at line 4804 of file v8.h.

Friends And Related Function Documentation

◆ ArrayBuffer

friend class ArrayBuffer
friend

Definition at line 4820 of file v8.h.


The documentation for this class was generated from the following file: