Home
last modified time | relevance | path

Searched refs:HandleTable (Results 1 – 8 of 8) sorted by relevance

/external/libchrome/mojo/core/
Dhandle_table.cc43 HandleTable::HandleTable() {} in HandleTable() function in mojo::core::HandleTable
45 HandleTable::~HandleTable() {} in ~HandleTable()
47 base::Lock& HandleTable::GetLock() { in GetLock()
51 MojoHandle HandleTable::AddDispatcher(scoped_refptr<Dispatcher> dispatcher) { in AddDispatcher()
64 bool HandleTable::AddDispatchersFromTransit( in AddDispatchersFromTransit()
90 scoped_refptr<Dispatcher> HandleTable::GetDispatcher(MojoHandle handle) const { in GetDispatcher()
97 MojoResult HandleTable::GetAndRemoveDispatcher( in GetAndRemoveDispatcher()
111 MojoResult HandleTable::BeginTransit( in BeginTransit()
134 void HandleTable::CompleteTransitAndClose( in CompleteTransitAndClose()
144 void HandleTable::CancelTransit( in CancelTransit()
[all …]
Dhandle_table.h24 class MOJO_SYSTEM_IMPL_EXPORT HandleTable {
26 HandleTable();
27 ~HandleTable();
83 DISALLOW_COPY_AND_ASSIGN(HandleTable);
Dhandle_table_unittest.cc55 HandleTable ht; in TEST()
Dcore.h371 std::unique_ptr<HandleTable> handles_;
Dcore.cc129 handles_.reset(new HandleTable); in Core()
/external/libchrome/libchrome_tools/patch/
Dhandle_table.patch64 @@ -158,38 +158,38 @@ void HandleTable::GetActiveHandlesForTest(std::vector<MojoHandle>* handles) {
68 -bool HandleTable::OnMemoryDump(const base::trace_event::MemoryDumpArgs& args,
100 +// bool HandleTable::OnMemoryDump(const base::trace_event::MemoryDumpArgs& args,
133 HandleTable::Entry::Entry() {}
152 -class MOJO_SYSTEM_IMPL_EXPORT HandleTable
154 +class MOJO_SYSTEM_IMPL_EXPORT HandleTable {
156 HandleTable();
157 - ~HandleTable() override;
158 + ~HandleTable();
160 // HandleTable is thread-hostile. All access should be gated by GetLock().
[all …]
Dmojom_disable_trace_and_mem_dump.patch17 handles_.reset(new HandleTable);
/external/tensorflow/tensorflow/core/lib/io/
Dcache.cc82 class HandleTable { class
84 HandleTable() : length_(0), elems_(0), list_(nullptr) { Resize(); } in HandleTable() function in tensorflow::table::__anon4220aee90111::HandleTable
85 ~HandleTable() { delete[] list_; } in ~HandleTable()
207 HandleTable table_ TF_GUARDED_BY(mutex_);