Home | History | Annotate | Download | only in mac

Lines Matching refs:Protection

121 static inline vm_prot_t machProtection(SharedMemory::Protection protection)
123 switch (protection) {
134 PassRefPtr<SharedMemory> SharedMemory::create(const Handle& handle, Protection protection)
140 vm_prot_t vmProtection = machProtection(protection);
167 bool SharedMemory::createHandle(Handle& handle, Protection protection)
177 if (protection == ReadWrite && m_port) {
184 kern_return_t kr = mach_make_memory_entry_64(mach_task_self(), &size, address, machProtection(protection), &port, MACH_PORT_NULL);