Home
last modified time | relevance | path

Searched refs:native_execution_async_resources_ (Results 1 – 2 of 2) sorted by relevance

/third_party/node/src/
Denv-inl.h117 if (i >= native_execution_async_resources_.size()) return {}; in native_execution_async_resource()
118 return PersistentToLocal::Strong(native_execution_async_resources_[i]); in native_execution_async_resource()
173 for (uint32_t i = offset; i < native_execution_async_resources_.size(); i++) in push_async_context()
174 CHECK(native_execution_async_resources_[i].IsEmpty()); in push_async_context()
182 native_execution_async_resources_.resize(offset + 1); in push_async_context()
183 native_execution_async_resources_[offset].Reset(env()->isolate(), resource); in push_async_context()
217 if (LIKELY(offset < native_execution_async_resources_.size() && in pop_async_context()
218 !native_execution_async_resources_[offset].IsEmpty())) { in pop_async_context()
221 i < native_execution_async_resources_.size(); in pop_async_context()
223 CHECK(native_execution_async_resources_[i].IsEmpty()); in pop_async_context()
[all …]
Denv.h723 std::vector<v8::Global<v8::Object>> native_execution_async_resources_; variable