HomeSort by relevance Sort by last modified time
    Searched defs:SharedMemory (Results 1 - 11 of 11) sorted by null

  /external/webrtc/webrtc/modules/desktop_capture/
shared_memory.cc 16 const SharedMemory::Handle SharedMemory::kInvalidHandle = NULL;
18 const SharedMemory::Handle SharedMemory::kInvalidHandle = -1;
21 SharedMemory::SharedMemory(void* data, size_t size, Handle handle, int id)
shared_memory.h 25 // SharedMemory is a base class for shared memory. It stores all required
31 class SharedMemory {
51 virtual ~SharedMemory() {}
54 SharedMemory(void* data, size_t size, Handle handle, int id);
62 RTC_DISALLOW_COPY_AND_ASSIGN(SharedMemory);
  /external/libchrome/base/memory/
shared_memory_mac.cc 77 SharedMemory::SharedMemory()
80 SharedMemory::SharedMemory(const SharedMemoryHandle& handle, bool read_only)
87 SharedMemory::~SharedMemory() {
93 bool SharedMemory::IsHandleValid(const SharedMemoryHandle& handle) {
98 SharedMemoryHandle SharedMemory::NULLHandle() {
103 void SharedMemory::CloseHandle(const SharedMemoryHandle& handle) {
108 size_t SharedMemory::GetHandleLimit()
    [all...]
shared_memory_posix.cc 44 "466437 SharedMemory::Create::Unlink"));
74 "466437 SharedMemory::Create::OpenTemporaryFile"));
90 "466437 SharedMemory::Create::OpenReadonly"));
112 SharedMemory::SharedMemory()
121 SharedMemory::SharedMemory(const SharedMemoryHandle& handle, bool read_only)
130 SharedMemory::~SharedMemory() {
136 bool SharedMemory::IsHandleValid(const SharedMemoryHandle& handle)
    [all...]
shared_memory.h 66 class BASE_EXPORT SharedMemory {
68 SharedMemory();
74 explicit SharedMemory(const std::wstring& name);
77 // Create a new SharedMemory object from an existing, open
81 // only affects how the SharedMemory will be mmapped. Use
84 SharedMemory(const SharedMemoryHandle& handle, bool read_only);
87 ~SharedMemory();
283 DISALLOW_COPY_AND_ASSIGN(SharedMemory);
  /external/libchrome/sandbox/win/src/
interception_internal.h 51 struct SharedMemory {
  /cts/tests/tests/os/src/android/os/cts/
SharedMemoryTest.java 37 import android.os.SharedMemory;
113 try (SharedMemory sharedMemory = SharedMemory.create(null, 1)) {
114 ByteBuffer buffer = sharedMemory.mapReadWrite();
115 mRemote.setup(sharedMemory, PROT_READ | PROT_WRITE);
121 synchronized (sharedMemory) {}
126 synchronized (sharedMemory) {}
128 SharedMemory.unmap(buffer);
134 try (SharedMemory sharedMemory = SharedMemory.create(null, 1))
    [all...]
  /frameworks/base/core/java/android/os/
SharedMemory.java 36 * SharedMemory enables the creation, mapping, and protection control over anonymous shared memory.
38 public final class SharedMemory implements Parcelable, Closeable {
45 private SharedMemory(FileDescriptor fd) {
50 "Unable to create SharedMemory from a null FileDescriptor");
54 "Unable to create SharedMemory from closed FileDescriptor");
68 * Creates an anonymous SharedMemory instance with the provided debug name and size. The name
70 * for when inspecting memory maps for the processes that have mapped this SharedMemory
73 * @param name The debug name to use for this SharedMemory instance. This can be null, however
77 * @return A SharedMemory instance of the requested size
80 public static @NonNull SharedMemory create(@Nullable String name, int size
    [all...]
  /prebuilts/tools/common/m2/repository/net/java/dev/jna/jna/3.4.0/
jna-3.4.0.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 919 milliseconds