Searched refs:kInit (Results 1 - 12 of 12) sorted by relevance
/third_party/node/lib/internal/ |
H A D | async_hooks.js | 88 kInit, kBefore, kAfter, kDestroy, kTotals, kPromiseResolve, 279 // Don't want to make the assumption that kInit to kDestroy are indexes 0 to 286 destination[kInit] = source[kInit]; 477 return hasHooks(kInit); 496 if (!hasHooks(kInit)) 589 kInit, kBefore, kAfter, kDestroy, kTotals, kPromiseResolve,
|
/third_party/node/lib/ |
H A D | async_hooks.js | 66 kInit, kBefore, kAfter, kDestroy, kTotals, kPromiseResolve, 107 hook_fields[kTotals] = hook_fields[kInit] += +!!this[init_symbol]; 133 hook_fields[kTotals] = hook_fields[kInit] -= +!!this[init_symbol];
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-promise.h | 126 * PromiseHook with type kInit is called when a new promise is 141 enum class PromiseHookType { kInit, kResolve, kBefore, kAfter }; member in v8::PromiseHookType
|
/third_party/node/deps/v8/include/ |
H A D | v8-promise.h | 126 * PromiseHook with type kInit is called when a new promise is 141 enum class PromiseHookType { kInit, kResolve, kBefore, kAfter }; member in v8::PromiseHookType
|
/third_party/node/deps/v8/src/d8/ |
H A D | async-hooks-wrapper.cc | 187 if (type == PromiseHookType::kInit) { in ShellPromiseHook() 257 case PromiseHookType::kInit: in PromiseHookDispatch()
|
/third_party/node/deps/v8/src/objects/ |
H A D | contexts.cc | 563 case PromiseHookType::kInit: in RunPromiseHook() 582 int argc = type == PromiseHookType::kInit ? 2 : 1; in RunPromiseHook()
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-promise.cc | 120 isolate->RunPromiseHook(PromiseHookType::kInit, promise, parent); in RUNTIME_FUNCTION()
|
/third_party/node/src/ |
H A D | async_wrap.cc | 415 SET_HOOKS_CONSTANT(kInit); in Initialize() 638 if (async_hooks->fields()[AsyncHooks::kInit] == 0) { in EmitAsyncInit()
|
H A D | env.h | 235 kInit, enumerator
|
/third_party/node/lib/internal/http2/ |
H A D | core.js | 234 const kInit = Symbol('init'); 754 this[kInit](ret.id(), ret); 2004 [kInit](id, handle) { 2663 this[kInit](id, handle); 2972 this[kInit](id, handle);
|
/third_party/node/deps/v8/src/heap/ |
H A D | factory.cc | 3897 isolate()->RunAllPromiseHooks(PromiseHookType::kInit, promise, in NewJSPromise()
|
/third_party/node/deps/v8/src/execution/ |
H A D | isolate.cc | 5014 RunAllPromiseHooks(PromiseHookType::kInit, promise, parent); in ThrowInternal()
|
Completed in 28 milliseconds