Home
last modified time | relevance | path

Searched refs:IsAlive (Results 1 – 23 of 23) sorted by relevance

/third_party/skia/third_party/externals/dawn/src/tests/unittests/native/
DDestroyObjectTests.cpp111 EXPECT_TRUE(bindGroupMock.IsAlive()); in TEST_F()
113 EXPECT_FALSE(bindGroupMock.IsAlive()); in TEST_F()
128 EXPECT_TRUE(bindGroup->IsAlive()); in TEST_F()
136 EXPECT_TRUE(bindGroupLayoutMock.IsAlive()); in TEST_F()
138 EXPECT_FALSE(bindGroupLayoutMock.IsAlive()); in TEST_F()
153 EXPECT_TRUE(bindGroupLayout->IsAlive()); in TEST_F()
163 EXPECT_TRUE(bufferMock.IsAlive()); in TEST_F()
165 EXPECT_FALSE(bufferMock.IsAlive()); in TEST_F()
175 EXPECT_TRUE(bufferMock.IsAlive()); in TEST_F()
177 EXPECT_FALSE(bufferMock.IsAlive()); in TEST_F()
[all …]
/third_party/node/test/addons/null-buffer-neuter/
Dbinding.cc14 void IsAlive(const v8::FunctionCallbackInfo<v8::Value>& args) { in IsAlive() function
38 NODE_SET_METHOD(exports, "isAlive", IsAlive); in init()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DObjectBase.cpp54 ASSERT(!IsAlive()); in ~ApiObjectBase()
69 bool ApiObjectBase::IsAlive() const { in IsAlive() function in dawn_native::ApiObjectBase
DObjectBase.h61 bool IsAlive() const;
DCommandBuffer.cpp57 DAWN_INVALID_IF(!IsAlive(), "%s cannot be submitted more than once.", this); in ValidateCanUseInSubmitNow()
/third_party/node/src/
Dhandle_wrap.h64 static inline bool IsAlive(const HandleWrap* wrap) { in IsAlive() function
71 return IsAlive(wrap) && uv_has_ref(wrap->GetHandle()); in HasRef()
Dhandle_wrap.cc44 if (IsAlive(wrap)) in Ref()
53 if (IsAlive(wrap)) in Unref()
Dstream_wrap.cc183 bool LibuvStreamWrap::IsAlive() { in IsAlive() function in node::LibuvStreamWrap
184 return HandleWrap::IsAlive(this); in IsAlive()
317 if (!wrap->IsAlive()) in SetBlocking()
Djs_stream.h20 bool IsAlive() override;
Dstream_wrap.h44 bool IsAlive() override;
Djs_stream.cc39 bool JSStream::IsAlive() { in IsAlive() function in node::JSStream
Dstream_base.h319 virtual bool IsAlive() = 0;
Dstream_base.cc587 if (!wrap->IsAlive()) return args.GetReturnValue().Set(UV_EINVAL); in GetFD()
621 if (!wrap->IsAlive()) return args.GetReturnValue().Set(UV_EINVAL); in JSMethod()
Dnode_file.h321 bool IsAlive() override { return !closed_; } in IsAlive() function
Dheap_utils.cc325 bool IsAlive() override { return snapshot_ != nullptr; } in IsAlive() function in node::heap::__anon19bbe95d0111::HeapSnapshotStream
Dnode_http2.h423 bool IsAlive() override { in IsAlive() function
Dnode_file.cc528 if (!IsAlive() || IsClosing()) in ReadStart()
/third_party/node/src/quic/
Dlogstream.h50 bool IsAlive() override;
Dlogstream.cc126 bool LogStream::IsAlive() { in IsAlive() function in node::quic::LogStream
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DShaderModuleVk.cpp114 ASSERT(IsAlive()); in GetTransformedModuleHandle()
/third_party/node/src/crypto/
Dcrypto_tls.h72 bool IsAlive() override;
Dcrypto_tls.cc517 while (len > 0 && wrap->IsAlive() && !wrap->IsClosing()) { in Receive()
921 bool TLSWrap::IsAlive() { in IsAlive() function in node::crypto::TLSWrap
924 underlying_stream()->IsAlive(); in IsAlive()
/third_party/node/deps/v8/tools/gcmole/
Dgcmole.cc504 bool IsAlive(const std::string& name) const { in IsAlive() function in __anon4ae52ded0111::Environment
1008 if (env.IsAlive(var_name)) return ExprEffect::None(); in Use()