Home
last modified time | relevance | path

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

/third_party/node/src/
Denv.cc112 for (uint32_t i = offset; i < native_execution_async_resources_.size(); i++) in push_async_context()
113 CHECK(native_execution_async_resources_[i].IsEmpty()); in push_async_context()
119 native_execution_async_resources_.resize(offset + 1); in push_async_context()
121 native_execution_async_resources_[offset] = resource; in push_async_context()
143 if (LIKELY(offset < native_execution_async_resources_.size() && in pop_async_context()
144 !native_execution_async_resources_[offset].IsEmpty())) { in pop_async_context()
146 for (uint32_t i = offset + 1; i < native_execution_async_resources_.size(); in pop_async_context()
148 CHECK(native_execution_async_resources_[i].IsEmpty()); in pop_async_context()
151 native_execution_async_resources_.resize(offset); in pop_async_context()
152 if (native_execution_async_resources_.size() < in pop_async_context()
[all …]
Denv-inl.h106 if (i >= native_execution_async_resources_.size()) return {}; in native_execution_async_resource()
107 return native_execution_async_resources_[i]; in native_execution_async_resource()
Denv.h342 std::vector<v8::Local<v8::Object>> native_execution_async_resources_; variable