HomeSort by relevance Sort by last modified time
    Searched defs:PlatformSharedBufferMapping (Results 1 - 2 of 2) sorted by null

  /external/libmojo/mojo/edk/embedder/
platform_shared_buffer.h 23 class PlatformSharedBufferMapping;
30 // lifetime of the mapping (owned by |PlatformSharedBufferMapping|) is
73 std::unique_ptr<PlatformSharedBufferMapping> Map(size_t offset,
81 std::unique_ptr<PlatformSharedBufferMapping> MapNoCheck(size_t offset,
141 class MOJO_SYSTEM_IMPL_EXPORT PlatformSharedBufferMapping {
143 ~PlatformSharedBufferMapping();
151 PlatformSharedBufferMapping(base::SharedMemoryHandle handle,
172 DISALLOW_COPY_AND_ASSIGN(PlatformSharedBufferMapping);
platform_shared_buffer.cc 117 std::unique_ptr<PlatformSharedBufferMapping> PlatformSharedBuffer::Map(
138 std::unique_ptr<PlatformSharedBufferMapping> PlatformSharedBuffer::MapNoCheck(
151 std::unique_ptr<PlatformSharedBufferMapping> mapping(
152 new PlatformSharedBufferMapping(handle, read_only_, offset, length));
287 PlatformSharedBufferMapping::~PlatformSharedBufferMapping() {
291 void* PlatformSharedBufferMapping::GetBase() const {
295 size_t PlatformSharedBufferMapping::GetLength() const {
299 bool PlatformSharedBufferMapping::Map() {
320 void PlatformSharedBufferMapping::Unmap()
    [all...]

Completed in 78 milliseconds