Home
last modified time | relevance | path

Searched refs:m_oolMemory (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebKit2/Platform/CoreIPC/
DAttachment.h65 void* address() const { ASSERT(m_type == MachOOLMemoryType); return m_oolMemory.address; } in address()
66 mach_msg_size_t size() const { ASSERT(m_type == MachOOLMemoryType); return m_oolMemory.size; } in size()
67 …ions_t copyOptions() const { ASSERT(m_type == MachOOLMemoryType); return m_oolMemory.copyOptions; } in copyOptions()
68 bool deallocate() const { ASSERT(m_type == MachOOLMemoryType); return m_oolMemory.deallocate; } in deallocate()
95 } m_oolMemory; member
DAttachment.cpp50 m_oolMemory.address = address; in Attachment()
51 m_oolMemory.size = size; in Attachment()
52 m_oolMemory.copyOptions = copyOptions; in Attachment()
53 m_oolMemory.deallocate = deallocate; in Attachment()