Home
last modified time | relevance | path

Searched refs:PlatformHandleDispatcher (Results 1 – 5 of 5) sorted by relevance

/external/libchrome/mojo/core/
Dplatform_handle_dispatcher.cc13 scoped_refptr<PlatformHandleDispatcher> PlatformHandleDispatcher::Create( in Create()
15 return new PlatformHandleDispatcher(std::move(platform_handle)); in Create()
18 PlatformHandle PlatformHandleDispatcher::TakePlatformHandle() { in TakePlatformHandle()
22 Dispatcher::Type PlatformHandleDispatcher::GetType() const { in GetType()
26 MojoResult PlatformHandleDispatcher::Close() { in Close()
35 void PlatformHandleDispatcher::StartSerialize(uint32_t* num_bytes, in StartSerialize()
43 bool PlatformHandleDispatcher::EndSerialize(void* destination, in EndSerialize()
53 bool PlatformHandleDispatcher::BeginTransit() { in BeginTransit()
61 void PlatformHandleDispatcher::CompleteTransitAndClose() { in CompleteTransitAndClose()
67 void PlatformHandleDispatcher::CancelTransit() { in CancelTransit()
[all …]
Dplatform_handle_dispatcher.h18 class MOJO_SYSTEM_IMPL_EXPORT PlatformHandleDispatcher : public Dispatcher {
20 static scoped_refptr<PlatformHandleDispatcher> Create(
38 static scoped_refptr<PlatformHandleDispatcher> Deserialize(
47 PlatformHandleDispatcher(PlatformHandle platform_handle);
48 ~PlatformHandleDispatcher() override;
55 DISALLOW_COPY_AND_ASSIGN(PlatformHandleDispatcher);
Dplatform_handle_dispatcher_unittest.cc40 scoped_refptr<PlatformHandleDispatcher> dispatcher = in TEST()
41 PlatformHandleDispatcher::Create(std::move(h)); in TEST()
76 scoped_refptr<PlatformHandleDispatcher> dispatcher = in TEST()
77 PlatformHandleDispatcher::Create( in TEST()
102 dispatcher = static_cast<PlatformHandleDispatcher*>( in TEST()
Ddispatcher.cc184 return PlatformHandleDispatcher::Deserialize(bytes, num_bytes, ports, in Deserialize()
Dcore.cc999 AddDispatcher(PlatformHandleDispatcher::Create(std::move(handle))); in WrapPlatformHandle()
1029 PlatformHandleDispatcher* phd = in UnwrapPlatformHandle()
1030 static_cast<PlatformHandleDispatcher*>(dispatcher.get()); in UnwrapPlatformHandle()