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

  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
mount_node_mock.h 31 MOCK_METHOD6(MMap, Error(void*, size_t, int, int, size_t, void**));
kernel_proxy_test.cc 489 virtual Error MMap(void* addr,
564 TEST_F(KernelProxyMMapTest, MMap) {
584 // We no longer track mmap'd regions, so munmap is a no-op.
586 // We don't track regions, so the mmap count hasn't changed.
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node.h 81 virtual Error MMap(void* addr,
mount_node.cc 120 Error MountNode::MMap(void* addr,
128 // Never allow mmap'ing PROT_EXEC. The passthrough node supports this, but we
134 // This default mmap support is just enough to make dlopen work.
135 // This implementation just reads from the mount into the mmap'd memory area.
mount_node_socket.h 57 virtual Error MMap(void* addr,
mount_passthrough.cc 93 Error MMap(void* addr,
mount_node_socket.cc 60 Error MountNodeSocket::MMap(void* addr,
kernel_proxy.cc 792 void* KernelProxy::mmap(void* addr, function in class:nacl_io::KernelProxy
810 error = handle->node()->MMap(addr, length, prot, flags, offset, &new_addr);
821 // tracks mmap'd regions. For simplicity, we no longer do this; because we
822 // "snapshot" the contents of the file in mmap(), and don't support
840 // mmap_lock, which is only shared with mmap() above. There is still a
841 // possibility of deadlock if mmap() or munmap() calls free(), so this is not
847 // true, because malloc only makes anonymous mmap() requests, and should only
    [all...]

Completed in 3381 milliseconds