HomeSort by relevance Sort by last modified time
    Searched refs:SharedMemory (Results 1 - 25 of 261) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/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)
desktop_frame_win.h 28 SharedMemory* shared_memory,
37 SharedMemory* shared_memory,
41 scoped_ptr<SharedMemory> owned_shared_memory_;
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 DISALLOW_COPY_AND_ASSIGN(SharedMemory);
desktop_capturer.h 22 class SharedMemory;
33 virtual SharedMemory* CreateSharedMemory(size_t size) = 0;
desktop_frame.h 39 // SharedMemory used for the buffer or NULL if memory is allocated on the
42 SharedMemory* shared_memory() const { return shared_memory_; }
74 SharedMemory* shared_memory);
83 SharedMemory* const shared_memory_;
113 SharedMemory* shared_memory);
  /external/chromium_org/base/memory/
shared_memory_nacl.cc 19 SharedMemory::SharedMemory()
28 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only)
37 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only,
48 SharedMemory::~SharedMemory() {
53 bool SharedMemory::IsHandleValid(const SharedMemoryHandle& handle) {
58 SharedMemoryHandle SharedMemory::NULLHandle()
    [all...]
shared_memory_win.cc 30 SharedMemory::SharedMemory()
39 SharedMemory::SharedMemory(const std::wstring& name)
49 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only)
58 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only,
73 SharedMemory::~SharedMemory() {
    [all...]
shared_memory_posix.cc 42 SharedMemory::SharedMemory()
52 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only)
68 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only,
82 SharedMemory::~SharedMemory() {
87 bool SharedMemory::IsHandleValid(const SharedMemoryHandle& handle) {
92 SharedMemoryHandle SharedMemory::NULLHandle()
    [all...]
shared_memory_android.cc 14 // For Android, we use ashmem to implement SharedMemory. ashmem_create_region
19 bool SharedMemory::Create(const SharedMemoryCreateOptions& options) {
54 bool SharedMemory::Delete(const std::string& name) {
60 bool SharedMemory::Open(const std::string& name, bool read_only) {
shared_memory.h 77 class BASE_EXPORT SharedMemory {
79 SharedMemory();
85 explicit SharedMemory(const std::wstring& name);
88 // Create a new SharedMemory object from an existing, open
92 // only affects how the SharedMemory will be mmapped. Use
95 SharedMemory(SharedMemoryHandle handle, bool read_only);
97 // Create a new SharedMemory object from an existing, open
100 SharedMemory(SharedMemoryHandle handle, bool read_only,
104 ~SharedMemory();
301 DISALLOW_COPY_AND_ASSIGN(SharedMemory);
    [all...]
  /external/chromium_org/cc/blink/
web_external_bitmap_impl.h 14 class SharedMemory;
19 typedef scoped_ptr<base::SharedMemory>(*SharedMemoryAllocationFunction)(size_t);
35 base::SharedMemory* shared_memory() { return shared_memory_.get(); }
38 scoped_ptr<base::SharedMemory> shared_memory_;
  /external/chromium_org/sandbox/win/src/
interception_agent.h 20 struct SharedMemory;
58 bool Init(SharedMemory* shared_memory);
75 SharedMemory* interceptions_;
  /external/chromium_org/ui/gfx/
gpu_memory_buffer.cc 11 handle(base::SharedMemory::NULLHandle())
  /external/chromium_org/ui/gl/
gl_image_shared_memory.cc 25 if (!base::SharedMemory::IsHandleValid(handle.handle))
28 base::SharedMemory shared_memory(handle.handle, true);
38 scoped_ptr<base::SharedMemory> duped_shared_memory(
39 new base::SharedMemory(duped_shared_memory_handle, true));
gl_image_shared_memory.h 27 scoped_ptr<base::SharedMemory> shared_memory_;
  /external/chromium_org/cc/test/
test_shared_bitmap_manager.h 28 base::SharedMemory* memory) OVERRIDE;
32 std::map<SharedBitmapId, base::SharedMemory*> bitmap_map_;
  /external/chromium_org/ppapi/proxy/
gamepad_resource.h 21 class SharedMemory;
48 scoped_ptr<base::SharedMemory> shared_memory_;
plugin_array_buffer_var.cc 22 using base::SharedMemory;
31 plugin_handle_(base::SharedMemory::NULLHandle()),
45 // The SharedMemory destuctor can't close the handle for us.
46 if (SharedMemory::IsHandleValid(plugin_handle_))
47 SharedMemory::CloseHandle(plugin_handle_);
49 // Delete SharedMemory, if we have one.
57 if (SharedMemory::IsHandleValid(plugin_handle_)) {
58 shmem_.reset(new SharedMemory(plugin_handle_, false));
96 SharedMemory s(tmp_handle, false);
105 *plugin_out_handle = base::SharedMemory::NULLHandle()
    [all...]