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

  /external/webkit/Source/WebKit2/Platform/
SharedMemory.h 47 enum Protection {
82 // Create a shared memory object from the given handle and the requested protection. Will return 0 on failure.
83 static PassRefPtr<SharedMemory> create(const Handle&, Protection);
86 static PassRefPtr<SharedMemory> adopt(HANDLE, size_t, Protection);
91 bool createHandle(Handle&, Protection);
  /external/webkit/Source/WebKit2/Platform/gtk/
SharedMemoryGtk.cpp 61 PassRefPtr<SharedMemory> SharedMemory::create(const Handle& handle, Protection protection)
72 bool SharedMemory::createHandle(Handle& handle, Protection protection)
  /external/webkit/Source/WebCore/html/parser/
XSSFilter.cpp 174 DEFINE_STATIC_LOCAL(String, XSSProtectionHeader, ("X-XSS-Protection"));
  /external/webkit/Source/WebKit2/Platform/win/
SharedMemoryWin.cpp 133 static DWORD accessRights(SharedMemory::Protection protection)
135 switch (protection) {
146 PassRefPtr<SharedMemory> SharedMemory::create(const Handle& handle, Protection protection)
148 RefPtr<SharedMemory> memory = adopt(handle.m_handle, handle.m_size, protection);
158 PassRefPtr<SharedMemory> SharedMemory::adopt(HANDLE handle, size_t size, Protection protection)
163 DWORD desiredAccess = accessRights(protection);
187 bool SharedMemory::createHandle(Handle& handle, Protection protection
    [all...]
  /external/webkit/Source/WebKit2/Platform/mac/
SharedMemoryMac.cpp 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)
    [all...]
  /external/webkit/Source/WebKit2/Platform/unix/
SharedMemoryUnix.cpp 155 static inline int accessModeMMap(SharedMemory::Protection protection)
157 switch (protection) {
168 PassRefPtr<SharedMemory> SharedMemory::create(const Handle& handle, Protection protection)
172 void* data = mmap(0, handle.m_size, accessModeMMap(protection), MAP_SHARED, handle.m_fileDescriptor, 0);
190 static inline int accessModeFile(SharedMemory::Protection protection)
192 switch (protection) {
203 bool SharedMemory::createHandle(Handle& handle, Protection protection
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.h     [all...]

Completed in 187 milliseconds