Home
last modified time | relevance | path

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

/external/libmojo/mojo/edk/system/
Dshared_buffer_dispatcher_unittest.cc39 SharedBufferDispatcher::ValidateCreateOptions( in RevalidateCreateOptions()
59 EXPECT_EQ(MOJO_RESULT_OK, SharedBufferDispatcher::ValidateCreateOptions( in TEST_F()
78 SharedBufferDispatcher::ValidateCreateOptions( in TEST_F()
96 SharedBufferDispatcher::ValidateCreateOptions( in TEST_F()
108 SharedBufferDispatcher::ValidateCreateOptions( in TEST_F()
114 scoped_refptr<SharedBufferDispatcher> dispatcher; in TEST_F()
115 EXPECT_EQ(MOJO_RESULT_OK, SharedBufferDispatcher::Create( in TEST_F()
116 SharedBufferDispatcher::kDefaultCreateOptions, in TEST_F()
151 scoped_refptr<SharedBufferDispatcher> dispatcher; in TEST_F()
153 SharedBufferDispatcher::CreateFromPlatformSharedBuffer( in TEST_F()
[all …]
Dshared_buffer_dispatcher.cc44 SharedBufferDispatcher::kDefaultCreateOptions = {
49 MojoResult SharedBufferDispatcher::ValidateCreateOptions( in ValidateCreateOptions()
77 MojoResult SharedBufferDispatcher::Create( in Create()
81 scoped_refptr<SharedBufferDispatcher>* result) { in Create()
103 MojoResult SharedBufferDispatcher::CreateFromPlatformSharedBuffer( in CreateFromPlatformSharedBuffer()
105 scoped_refptr<SharedBufferDispatcher>* result) { in CreateFromPlatformSharedBuffer()
114 scoped_refptr<SharedBufferDispatcher> SharedBufferDispatcher::Deserialize( in Deserialize()
163 SharedBufferDispatcher::PassPlatformSharedBuffer() { in PassPlatformSharedBuffer()
173 Dispatcher::Type SharedBufferDispatcher::GetType() const { in GetType()
177 MojoResult SharedBufferDispatcher::Close() { in Close()
[all …]
Dshared_buffer_dispatcher.h26 class MOJO_SYSTEM_IMPL_EXPORT SharedBufferDispatcher final : public Dispatcher {
50 scoped_refptr<SharedBufferDispatcher>* result);
55 scoped_refptr<SharedBufferDispatcher>* result);
58 static scoped_refptr<SharedBufferDispatcher> Deserialize(
92 static scoped_refptr<SharedBufferDispatcher> CreateInternal( in CreateInternal()
95 new SharedBufferDispatcher(std::move(shared_buffer))); in CreateInternal()
98 explicit SharedBufferDispatcher(
100 ~SharedBufferDispatcher() override;
122 DISALLOW_COPY_AND_ASSIGN(SharedBufferDispatcher);
Dcore.cc258 scoped_refptr<SharedBufferDispatcher> dispatcher; in CreateSharedBufferWrapper()
259 MojoResult result = SharedBufferDispatcher::CreateFromPlatformSharedBuffer( in CreateSharedBufferWrapper()
294 SharedBufferDispatcher* shm_dispatcher = in PassSharedMemoryHandle()
295 static_cast<SharedBufferDispatcher*>(dispatcher.get()); in PassSharedMemoryHandle()
901 MojoResult result = SharedBufferDispatcher::ValidateCreateOptions( in CreateSharedBuffer()
906 scoped_refptr<SharedBufferDispatcher> dispatcher; in CreateSharedBuffer()
907 result = SharedBufferDispatcher::Create( in CreateSharedBuffer()
1025 scoped_refptr<SharedBufferDispatcher> dispatcher; in WrapPlatformSharedBufferHandle()
1026 result = SharedBufferDispatcher::CreateFromPlatformSharedBuffer( in WrapPlatformSharedBufferHandle()
1060 SharedBufferDispatcher* shm_dispatcher = in UnwrapPlatformSharedBufferHandle()
[all …]
Ddispatcher.cc166 return SharedBufferDispatcher::Deserialize( in Deserialize()