Searched refs:remove_handle (Results 1 – 5 of 5) sorted by relevance
259 napi_async_cleanup_hook_handle* remove_handle);262 napi_async_cleanup_hook_handle remove_handle);
706 napi_async_cleanup_hook_handle* remove_handle) { in napi_add_async_cleanup_hook() argument713 if (remove_handle != nullptr) in napi_add_async_cleanup_hook()714 *remove_handle = handle; in napi_add_async_cleanup_hook()720 napi_async_cleanup_hook_handle remove_handle) { in napi_remove_async_cleanup_hook() argument722 if (remove_handle == nullptr) in napi_remove_async_cleanup_hook()725 delete remove_handle; in napi_remove_async_cleanup_hook()
1737 napi_async_cleanup_hook_handle* remove_handle);1743 * `[out] remove_handle`: Optional handle that refers to the asynchronous cleanup1747 a function to be run with the `remove_handle` and `arg` parameters once the1754 If `remove_handle` is not `NULL`, an opaque value will be stored in it1771 napi_async_cleanup_hook_handle remove_handle);1774 * `[in] remove_handle`: The handle to an asynchronous cleanup hook that was1777 Unregisters the cleanup hook corresponding to `remove_handle`. This will prevent
471 add_handle() and remove_handle() which limits what we can do internally. The