Home
last modified time | relevance | path

Searched refs:AsyncCleanupHook (Results 1 – 3 of 3) sorted by relevance

/third_party/node/test/node-api/test_async_cleanup_hook/
Dbinding.c34 static void AsyncCleanupHook(napi_async_cleanup_hook_handle handle, void* arg) { in AsyncCleanupHook() function
51 napi_add_async_cleanup_hook(env, AsyncCleanupHook, data, &data->handle); in Init()
57 napi_add_async_cleanup_hook(env, AsyncCleanupHook, data, NULL); in Init()
/third_party/node/test/addons/async-cleanup-hook/
Dbinding.cc17 void AsyncCleanupHook(void* arg, void(*cb)(void*), void* cbarg) { in AsyncCleanupHook() function
48 AsyncCleanupHook, in Initialize()
/third_party/node/src/api/
Dhooks.cc96 typedef void (*AsyncCleanupHook)(void* arg, void(*)(void*), void*); typedef
100 AsyncCleanupHook fun;
155 AsyncCleanupHook fun, in AddEnvironmentCleanupHook()