Home
last modified time | relevance | path

Searched refs:owner_ (Results 1 - 25 of 28) sorted by relevance

12

/third_party/node/deps/v8/src/handles/
H A Dpersistent-handles.cc37 DCHECK_NULL(owner_); in Attach()
38 owner_ = local_heap; in Attach()
42 DCHECK_NOT_NULL(owner_); in Detach()
43 owner_ = nullptr; in Detach()
47 if (owner_) DCHECK(!owner_->IsParked()); in CheckOwnerIsNotParked()
H A Dpersistent-handles.h61 LocalHeap* owner_ = nullptr; member in v8::internal::PersistentHandles
/third_party/node/deps/v8/include/v8-include/cppgc/internal/
H A Dpersistent-node.h35 owner_ = owner; in InitializeAsUsedNode()
46 owner_ = owner; in UpdateOwner()
56 trace_(root_visitor, owner_); in Trace()
63 return owner_; in owner()
68 // If trace_ != nullptr, owner_ points to the corresponding Persistent handle.
71 void* owner_ = nullptr; member
/third_party/node/deps/v8/include/cppgc/internal/
H A Dpersistent-node.h37 owner_ = owner; in InitializeAsUsedNode()
48 owner_ = owner; in UpdateOwner()
58 trace_(visitor, owner_); in Trace()
65 return owner_; in owner()
70 // If trace_ != nullptr, owner_ points to the corresponding Persistent handle.
73 void* owner_ = nullptr; member
/third_party/protobuf/src/google/protobuf/compiler/
H A Dimporter.cc181 : owner_(owner) {} in ValidationErrorCollector()
190 if (owner_->error_collector_ == NULL) return; in AddError()
194 owner_->source_locations_.FindImport(descriptor, element_name, &line, in AddError()
197 owner_->source_locations_.Find(descriptor, location, &line, &column); in AddError()
199 owner_->error_collector_->AddError(filename, line, column, message); in AddError()
206 if (owner_->error_collector_ == NULL) return; in AddWarning()
210 owner_->source_locations_.FindImport(descriptor, element_name, &line, in AddWarning()
213 owner_->source_locations_.Find(descriptor, location, &line, &column); in AddWarning()
215 owner_->error_collector_->AddWarning(filename, line, column, message); in AddWarning()
H A Dimporter.h140 SourceTreeDescriptorDatabase* owner_; member in google::protobuf::compiler::SourceTreeDescriptorDatabase::ValidationErrorCollector
/third_party/skia/third_party/externals/tint/src/sem/
H A Dvariable.h210 CallTarget const* Owner() const { return owner_; } in Owner()
213 void SetOwner(CallTarget const* owner) { owner_ = owner; } in SetOwner()
225 CallTarget const* owner_ = nullptr; member in tint::sem::Parameter
/third_party/node/deps/v8/src/heap/
H A Dbasic-memory-chunk.cc63 owner_(space), in BasicMemoryChunk()
107 STATIC_ASSERT(offsetof(BasicMemoryChunk, owner_) ==
H A Dbasic-memory-chunk.h173 BaseSpace* owner() const { return owner_; } in owner()
175 void set_owner(BaseSpace* space) { owner_ = space; } in set_owner()
363 std::atomic<BaseSpace*> owner_; member in v8::internal::BasicMemoryChunk
H A Dread-only-spaces.cc347 owner_ = nullptr; in MakeHeaderRelocatable()
/third_party/node/deps/v8/src/profiler/
H A Dsampling-heap-profiler.h103 Sample(size_t size_, AllocationNode* owner_, Local<Value> local_, in Sample()
106 owner(owner_), in Sample()
/third_party/skia/third_party/externals/libwebp/src/mux/
H A Dmuxinternal.c54 if (chunk->owner_) { in ChunkRelease()
129 chunk->owner_ = 1; // Chunk is owner of data. in ChunkAssignData()
150 chunk->owner_ = 0; in ChunkSetHead()
H A Dmuxi.h38 int owner_; // True if *data_ memory is owned internally. member
/third_party/protobuf/src/google/protobuf/
H A Darena_impl.h227 void* owner() const { return owner_; } in owner()
237 void* owner_; // &ThreadCache of this thread; member in google::protobuf::internal::ArenaImpl::SerialArena
H A Darena.cc324 serial->owner_ = owner; in New()
/third_party/node/deps/v8/tools/gcmole/
H A Dgcmole.cc1180 owner_(owner) { in Block()
1181 parent_ = owner_->EnterBlock(this); in Block()
1185 owner_->LeaveBlock(parent_); in ~Block()
1213 Environment a_out = owner_->VisitStmt(a, in()); in Sequential()
1214 Environment b_out = owner_->VisitStmt(b, a_out); in Sequential()
1215 Environment c_out = owner_->VisitStmt(c, b_out); in Sequential()
1220 Environment a_out = owner_->VisitStmt(a, in()); in Sequential()
1221 Environment b_out = owner_->VisitStmt(b, a_out); in Sequential()
1240 FunctionAnalyzer* owner_; member in __anon15306::FunctionAnalyzer::Block
/third_party/node/src/
H A Dnode_messaging.cc570 : owner_(owner) { in MessagePortData()
574 CHECK_NULL(owner_); in ~MessagePortData()
588 if (owner_ != nullptr) { in AddToIncomingQueue()
589 Debug(owner_, "Adding message to incoming queue"); in AddToIncomingQueue()
590 owner_->TriggerAsync(); in AddToIncomingQueue()
704 // This lock is here to avoid race conditions with the `owner_` read in New()
708 port->data_->owner_ = port; in New()
846 data_->owner_ = nullptr; in Detach()
H A Dnode_messaging.h212 MessagePort* owner_ = nullptr; member in node::worker::MessagePortData
/third_party/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h888 owner_(owner),
1106 Expectation GetHandle() override { return owner_->GetHandleOf(this); }
1254 FunctionMocker<F>* const owner_;
/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1643 owner_ = pthread_self(); in Lock()
1649 // Since the lock is being released the owner_ field should no longer be in Unlock()
1660 GTEST_CHECK_(has_owner_ && pthread_equal(owner_, pthread_self())) in AssertHeld()
1671 // has_owner_ indicates whether the owner_ field below contains a valid thread
1673 // accesses to the owner_ field should be protected by a check of this field.
1674 // An alternative might be to memset() owner_ to all zeros, but there's no
1678 pthread_t owner_; // The thread holding the mutex. member in testing::internal::MutexBase
1688 // particular, the owner_ field (a pthread_t) is not explicitly initialized.
/third_party/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-port.h1634 owner_ = pthread_self(); in Lock()
1640 // Since the lock is being released the owner_ field should no longer be in Unlock()
1651 GTEST_CHECK_(has_owner_ && pthread_equal(owner_, pthread_self())) in AssertHeld()
1662 // has_owner_ indicates whether the owner_ field below contains a valid thread
1664 // accesses to the owner_ field should be protected by a check of this field.
1665 // An alternative might be to memset() owner_ to all zeros, but there's no
1669 pthread_t owner_; // The thread holding the mutex. member in testing::internal::MutexBase
1679 // particular, the owner_ field (a pthread_t) is not explicitly initialized.
/third_party/node/deps/googletest/include/gtest/internal/
H A Dgtest-port.h1669 owner_ = pthread_self(); in Lock()
1675 // Since the lock is being released the owner_ field should no longer be in Unlock()
1686 GTEST_CHECK_(has_owner_ && pthread_equal(owner_, pthread_self())) in AssertHeld()
1697 // has_owner_ indicates whether the owner_ field below contains a valid thread
1699 // accesses to the owner_ field should be protected by a check of this field.
1700 // An alternative might be to memset() owner_ to all zeros, but there's no
1704 pthread_t owner_; // The thread holding the mutex. member in testing::internal::MutexBase
1714 // particular, the owner_ field (a pthread_t) is not explicitly initialized.
/third_party/node/deps/v8/src/maglev/
H A Dmaglev-ir.h1261 : Base(bitfield), owner_(owner), merge_offset_(merge_offset) {} in Phi()
1263 interpreter::Register owner() const { return owner_; } in owner()
1276 const interpreter::Register owner_; member in v8::internal::maglev::Phi
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/
H A DvktMeshShaderInOutTestsEXT.cpp123 IfaceVar (Owner owner_, DataType dataType_, BitWidth bitWidth_, DataDim dataDim_, Interpolation interpolation_, uint32_t index_) in IfaceVar()
124 : owner (owner_) in IfaceVar()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/mesh_shader/
H A DvktMeshShaderInOutTestsEXT.cpp123 IfaceVar (Owner owner_, DataType dataType_, BitWidth bitWidth_, DataDim dataDim_, Interpolation interpolation_, uint32_t index_) in IfaceVar()
124 : owner (owner_) in IfaceVar()

Completed in 35 milliseconds

12