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

  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Attachment.cpp 50 m_oolMemory.address = address;
51 m_oolMemory.size = size;
52 m_oolMemory.copyOptions = copyOptions;
53 m_oolMemory.deallocate = deallocate;
Attachment.h 65 void* address() const { ASSERT(m_type == MachOOLMemoryType); return m_oolMemory.address; }
66 mach_msg_size_t size() const { ASSERT(m_type == MachOOLMemoryType); return m_oolMemory.size; }
67 mach_msg_copy_options_t copyOptions() const { ASSERT(m_type == MachOOLMemoryType); return m_oolMemory.copyOptions; }
68 bool deallocate() const { ASSERT(m_type == MachOOLMemoryType); return m_oolMemory.deallocate; }
95 } m_oolMemory;

Completed in 1701 milliseconds