Lines Matching refs:data
17 #include "v8-data.h" // NOLINT(build/include_directory)
653 * language feature to retrieve host-defined meta data for a module.
720 * Discards all V8 thread-specific data for the Isolate. Should be used
722 * the thread -- all thread-specific data for an Isolate is discarded when
729 * Associate embedder-specific data with the isolate. |slot| has to be
732 V8_INLINE void SetData(uint32_t slot, void* data);
735 * Retrieve embedder-specific data from the isolate.
741 * Returns the maximum number of available embedder data slots. Valid slots
747 * Return data that was previously attached to the isolate snapshot via
907 GCCallbackFlags flags, void* data);
918 void AddGCPrologueCallback(GCCallbackWithData callback, void* data = nullptr,
927 void RemoveGCPrologueCallback(GCCallbackWithData, void* data = nullptr);
1029 void* data);
1034 * this unsets the callback. |data| will be passed to the callback
1037 void SetAtomicsWaitCallback(AtomicsWaitCallback callback, void* data);
1048 void AddGCEpilogueCallback(GCCallbackWithData callback, void* data = nullptr,
1058 void* data = nullptr);
1109 * the given |callback| passing the given |data| to it. After |callback|
1115 void RequestInterrupt(InterruptCallback callback, void* data);
1208 void EnqueueMicrotask(MicrotaskCallback callback, void* data = nullptr);
1234 MicrotasksCompletedCallbackWithData callback, void* data = nullptr);
1240 MicrotasksCompletedCallbackWithData callback, void* data = nullptr);
1276 * predefined set of data as crash keys to be used in postmortem debugging in
1416 * committed, writable, and executable, to be used to store unwind data, as
1465 void AddNearHeapLimitCallback(NearHeapLimitCallback callback, void* data);
1542 * If data is specified, it will be passed to the callback when it is called.
1546 Local<Value> data = Local<Value>());
1554 * If data is specified, it will be passed to the callback when it is called.
1561 Local<Value> data = Local<Value>());
1657 void Isolate::SetData(uint32_t slot, void* data) {
1659 I::SetEmbedderData(this, slot, data);