OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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));
280
PlatformSharedBufferMapping
::~
PlatformSharedBufferMapping
() {
284
void*
PlatformSharedBufferMapping
::GetBase() const {
288
size_t
PlatformSharedBufferMapping
::GetLength() const {
292
bool
PlatformSharedBufferMapping
::Map() {
313
void
PlatformSharedBufferMapping
::Unmap()
[
all
...]
Completed in 851 milliseconds